blob: 0ac285038ee35f3ed5f80a83fcf0255d39d78ba8 [file] [log] [blame]
Giorgio Arena205eed82019-08-14 10:13:50 +01001/*
Matthew Bentham314d3e22023-06-23 10:53:52 +00002 * Copyright (c) 2019-2021, 2023 Arm Limited.
Giorgio Arena205eed82019-08-14 10:13:50 +01003 *
4 * SPDX-License-Identifier: MIT
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to
8 * deal in the Software without restriction, including without limitation the
9 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10 * sell copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in all
14 * copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 */
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010024#include "src/core/CL/kernels/CLPadLayerKernel.h"
Giorgio Arena205eed82019-08-14 10:13:50 +010025
26#include "arm_compute/core/CL/CLHelpers.h"
Michele Di Giorgiof6f78762020-07-06 11:27:21 +010027#include "arm_compute/core/CL/ICLTensor.h"
Matthew Bentham314d3e22023-06-23 10:53:52 +000028#include "arm_compute/core/utils/helpers/AdjustVecSize.h"
Michele Di Giorgio4c268b92019-09-20 14:01:48 +010029#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010030
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010031#include "src/core/helpers/AutoConfiguration.h"
32#include "src/core/helpers/WindowHelpers.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000033#include "support/StringSupport.h"
Giorgio Arena205eed82019-08-14 10:13:50 +010034
35namespace arm_compute
36{
37namespace
38{
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010039Status validate_arguments(const ITensorInfo *input,
40 const ITensorInfo *output,
41 const PaddingList &padding,
42 PixelValue constant_value,
43 PaddingMode mode)
Giorgio Arena205eed82019-08-14 10:13:50 +010044{
Manuel Bottini8481d832019-12-10 15:28:40 +000045 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
Giorgio Arena5c4a8e92019-08-28 17:55:07 +010046 ARM_COMPUTE_UNUSED(constant_value);
Manuel Bottini8481d832019-12-10 15:28:40 +000047 ARM_COMPUTE_RETURN_ERROR_ON(input->data_type() == DataType::UNKNOWN);
Giorgio Arena93240222020-12-23 11:55:29 +000048 ARM_COMPUTE_RETURN_ERROR_ON((padding.size() < 1) || (padding.size() > input->num_dimensions()));
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010049 if (mode == PaddingMode::REFLECT || mode == PaddingMode::SYMMETRIC)
Giorgio Arena5c4a8e92019-08-28 17:55:07 +010050 {
51 ARM_COMPUTE_RETURN_ERROR_ON(padding.size() > 3);
52
53 const auto is_reflect = static_cast<unsigned int>(mode == PaddingMode::REFLECT);
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010054 for (size_t i = 0; i < padding.size(); ++i)
Giorgio Arena5c4a8e92019-08-28 17:55:07 +010055 {
56 ARM_COMPUTE_RETURN_ERROR_ON(padding.at(i).first > (input->dimension(i) - is_reflect));
57 ARM_COMPUTE_RETURN_ERROR_ON(padding.at(i).second > (input->dimension(i) - is_reflect));
58 }
59 }
60
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010061 if (output->total_size() > 0)
Giorgio Arena5c4a8e92019-08-28 17:55:07 +010062 {
63 TensorShape padded_shape = misc::shape_calculator::compute_padded_shape(input->tensor_shape(), padding);
64
65 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(output, input);
66 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DIMENSIONS(output->tensor_shape(), padded_shape);
67 }
Giorgio Arena205eed82019-08-14 10:13:50 +010068
69 return Status{};
70}
Giorgio Arena205eed82019-08-14 10:13:50 +010071} // namespace
72
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010073CLPadLayerKernel::CLPadLayerKernel() : _input(nullptr), _output(nullptr), _4d_enabled(false)
Giorgio Arena205eed82019-08-14 10:13:50 +010074{
Giorgio Arena4a95bba2021-06-28 11:00:27 +010075 _type = CLKernelType::ELEMENTWISE;
Giorgio Arena205eed82019-08-14 10:13:50 +010076}
77
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010078void CLPadLayerKernel::configure(
79 const ICLTensor *input, ICLTensor *output, const PaddingList &padding, PixelValue constant_value, PaddingMode mode)
Giorgio Arena205eed82019-08-14 10:13:50 +010080{
Manuel Bottini4c6bd512020-04-08 10:15:51 +010081 configure(CLKernelLibrary::get().get_compile_context(), input, output, padding, constant_value, mode);
82}
83
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010084void CLPadLayerKernel::configure(const CLCompileContext &compile_context,
85 const ICLTensor *input,
86 ICLTensor *output,
87 const PaddingList &padding,
88 PixelValue constant_value,
89 PaddingMode mode)
Manuel Bottini4c6bd512020-04-08 10:15:51 +010090{
Giorgio Arena205eed82019-08-14 10:13:50 +010091 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010092 auto_init_if_empty(*output->info(),
93 input->info()->clone()->set_tensor_shape(
94 misc::shape_calculator::compute_padded_shape(input->info()->tensor_shape(), padding)));
Giorgio Arena205eed82019-08-14 10:13:50 +010095 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), output->info(), padding, constant_value, mode));
96
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010097 auto padding_info = get_padding_info({input, output});
Giorgio Arena93240222020-12-23 11:55:29 +000098
Giorgio Arena5c4a8e92019-08-28 17:55:07 +010099 _input = input;
100 _output = output;
101 _4d_enabled = (mode == PaddingMode::CONSTANT) && (padding.size() > 3);
102
Giorgio Arena205eed82019-08-14 10:13:50 +0100103 // Set build options
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100104 const DataType &data_type = input->info()->data_type();
105 const unsigned int input_width = input->info()->dimension(0);
106 const unsigned int input_height = input->info()->dimension(1);
107 const unsigned int input_depth = input->info()->dimension(2);
108 const unsigned int pad_x_before = padding.at(0).first;
109 const unsigned int pad_y_before = padding.size() > 1 ? padding.at(1).first : 0;
110 const unsigned int pad_z_before = padding.size() > 2 ? padding.at(2).first : 0;
111 const unsigned int vec_size = adjust_vec_size(
112 std::min(16U, 32U / static_cast<unsigned int>(element_size_from_data_type(input->info()->data_type()))),
113 input_width);
114 const unsigned int pad_right_start = input_width + pad_x_before;
115 const unsigned int pad_x_before_remainder = pad_x_before % vec_size;
116 const unsigned int vec_size_leftover_write =
117 vec_size - (ceil_to_multiple(output->info()->dimension(0), vec_size) - output->info()->dimension(0));
Giorgio Arena205eed82019-08-14 10:13:50 +0100118
119 CLBuildOptions build_opts;
Giorgio Arena5c4a8e92019-08-28 17:55:07 +0100120 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(data_type));
Giorgio Arena5c4a8e92019-08-28 17:55:07 +0100121 build_opts.add_option("-DVEC_SIZE=" + support::cpp11::to_string(vec_size));
122 build_opts.add_option("-DPAD_X_BEFORE=" + support::cpp11::to_string(pad_x_before));
123 build_opts.add_option("-DSRC_WIDTH=" + support::cpp11::to_string(input_width));
Giorgio Arena93240222020-12-23 11:55:29 +0000124 build_opts.add_option("-DPAD_X_BEFORE_REMAINDER=" + support::cpp11::to_string(pad_x_before_remainder));
125 build_opts.add_option("-DVEC_SIZE_LEFTOVER_WRITE=" + support::cpp11::to_string(vec_size_leftover_write));
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100126 if (padding.size() > 1)
Giorgio Arena205eed82019-08-14 10:13:50 +0100127 {
Giorgio Arena5c4a8e92019-08-28 17:55:07 +0100128 build_opts.add_option("-DPAD_Y_BEFORE=" + support::cpp11::to_string(pad_y_before));
129 build_opts.add_option("-DSRC_HEIGHT=" + support::cpp11::to_string(input_height));
Giorgio Arena205eed82019-08-14 10:13:50 +0100130
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100131 if (padding.size() > 2)
Giorgio Arena205eed82019-08-14 10:13:50 +0100132 {
Giorgio Arena5c4a8e92019-08-28 17:55:07 +0100133 build_opts.add_option("-DPAD_Z_BEFORE=" + support::cpp11::to_string(pad_z_before));
134 build_opts.add_option("-DSRC_DEPTH=" + support::cpp11::to_string(input_depth));
Giorgio Arena205eed82019-08-14 10:13:50 +0100135 }
136 }
137
Giorgio Arena93240222020-12-23 11:55:29 +0000138 std::string kernel_name = "pad_layer_";
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100139 switch (mode)
Giorgio Arena5c4a8e92019-08-28 17:55:07 +0100140 {
141 case PaddingMode::CONSTANT:
142 {
143 kernel_name += "constant";
Giorgio Arena205eed82019-08-14 10:13:50 +0100144
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100145 const unsigned int vec_size_leftover_read =
146 vec_size - (ceil_to_multiple(pad_right_start, vec_size) - pad_right_start);
Giorgio Arena5c4a8e92019-08-28 17:55:07 +0100147
Giorgio Arena93240222020-12-23 11:55:29 +0000148 build_opts.add_option("-DCONST_VAL=" + string_from_pixel_value(constant_value, data_type));
149 build_opts.add_option("-DVEC_SIZE_LEFTOVER_READ=" + support::cpp11::to_string(vec_size_leftover_read));
150
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100151 if (pad_x_before >= vec_size)
Giorgio Arena93240222020-12-23 11:55:29 +0000152 {
153 build_opts.add_option("-DTHREADS_TO_SKIP_BEFORE=" + support::cpp11::to_string(pad_x_before / vec_size));
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100154 build_opts.add_option("-DTHREADS_TO_SKIP_AFTER=" +
155 support::cpp11::to_string(pad_right_start / vec_size));
Giorgio Arena93240222020-12-23 11:55:29 +0000156 }
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100157 if (_4d_enabled)
Giorgio Arena5c4a8e92019-08-28 17:55:07 +0100158 {
159 build_opts.add_option("-DPAD_W_BEFORE=" + support::cpp11::to_string(padding.at(3).first));
160 build_opts.add_option("-DSRC_BATCH=" + support::cpp11::to_string(input->info()->dimension(3)));
161 }
162
163 break;
164 }
165 case PaddingMode::SYMMETRIC:
166 case PaddingMode::REFLECT:
167 {
168 kernel_name += "symmetric_reflect";
169
170 const auto is_reflect = static_cast<unsigned int>(mode == PaddingMode::REFLECT);
171
Giorgio Arena93240222020-12-23 11:55:29 +0000172 const unsigned int pad_x_after_remainder = pad_right_start % vec_size;
173 const unsigned int after_pad_fact_x = (2 * input_width + pad_x_before) - is_reflect;
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100174 const unsigned int output_last_x = ceil_to_multiple(pad_right_start + padding.at(0).second, vec_size);
Giorgio Arena5c4a8e92019-08-28 17:55:07 +0100175
176 build_opts.add_option("-DIS_REFLECT=" + support::cpp11::to_string(is_reflect));
Giorgio Arena5c4a8e92019-08-28 17:55:07 +0100177 build_opts.add_option("-DPAD_X_AFTER_REMAINDER=" + support::cpp11::to_string(pad_x_after_remainder));
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100178 build_opts.add_option("-DPAD_X_BEFORE_REMAINDER_REFL=" +
179 support::cpp11::to_string((pad_x_before_remainder + is_reflect) % vec_size));
180 build_opts.add_option("-DPAD_X_AFTER_REMAINDER_REFL=" +
181 support::cpp11::to_string((pad_x_after_remainder - is_reflect) % vec_size));
Giorgio Arena5c4a8e92019-08-28 17:55:07 +0100182 build_opts.add_option("-DAFTER_PAD_FACT_X=" + support::cpp11::to_string(after_pad_fact_x));
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100183 build_opts.add_option_if(after_pad_fact_x < output_last_x,
184 "-DAFTER_PAD_REM=" + support::cpp11::to_string(after_pad_fact_x % vec_size));
Giorgio Arena5c4a8e92019-08-28 17:55:07 +0100185
186 break;
187 }
188 default:
189 ARM_COMPUTE_ERROR("Padding mode not supported.");
190 }
191
192 // Create kernel
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100193 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Giorgio Arena93240222020-12-23 11:55:29 +0000194
195 // Configure window
196 Window win = calculate_max_window(*output->info(), Steps(vec_size));
197 ICLKernel::configure_internal(win);
198
199 ARM_COMPUTE_ERROR_ON(has_padding_changed(padding_info));
Giorgio Arena205eed82019-08-14 10:13:50 +0100200}
201
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100202Status CLPadLayerKernel::validate(const ITensorInfo *input,
203 const ITensorInfo *output,
204 const PaddingList &padding,
205 PixelValue constant_value,
206 PaddingMode mode)
Giorgio Arena205eed82019-08-14 10:13:50 +0100207{
208 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output, padding, constant_value, mode));
Giorgio Arena205eed82019-08-14 10:13:50 +0100209 return Status{};
210}
211
212void CLPadLayerKernel::run(const Window &window, cl::CommandQueue &queue)
213{
214 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
215 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
216
Giorgio Arena93240222020-12-23 11:55:29 +0000217 Window slice = window.first_slice_window_3D();
218 unsigned int batch = 0;
Giorgio Arena205eed82019-08-14 10:13:50 +0100219 do
220 {
221 unsigned int idx = 0;
Giorgio Arena93240222020-12-23 11:55:29 +0000222 add_3D_tensor_argument(idx, _input, slice);
223 add_3D_tensor_argument(idx, _output, slice);
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100224 if (_4d_enabled)
Giorgio Arena5c4a8e92019-08-28 17:55:07 +0100225 {
226 add_argument<unsigned int>(idx, batch++);
227 }
Giorgio Arena205eed82019-08-14 10:13:50 +0100228
Giorgio Arena93240222020-12-23 11:55:29 +0000229 enqueue(queue, *this, slice, lws_hint());
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100230 } while (window.slide_window_slice_3D(slice));
Giorgio Arena205eed82019-08-14 10:13:50 +0100231}
232} // namespace arm_compute