blob: e89084719929214573a4751b38316288e400234c [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Matthew Bentham314d3e22023-06-23 10:53:52 +00002 * Copyright (c) 2017-2021, 2023 Arm Limited.
Anthony Barbier6ff3b192017-09-04 18:44:23 +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 */
Georgios Pinitas7891a732021-08-20 21:39:25 +010024#include "src/gpu/cl/kernels/ClIm2ColKernel.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010025
26#include "arm_compute/core/CL/CLHelpers.h"
27#include "arm_compute/core/CL/CLKernelLibrary.h"
28#include "arm_compute/core/CL/ICLTensor.h"
29#include "arm_compute/core/CL/OpenCL.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010030#include "arm_compute/core/Helpers.h"
Pablo Tello4a626a72018-04-04 10:01:14 +010031#include "arm_compute/core/TensorInfo.h"
Pablo Tello4a626a72018-04-04 10:01:14 +010032#include "arm_compute/core/Validate.h"
33#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Matthew Bentham314d3e22023-06-23 10:53:52 +000034#include "arm_compute/core/utils/StringUtils.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010035#include "src/core/AccessWindowStatic.h"
36#include "src/core/CL/CLValidate.h"
37#include "src/core/helpers/AutoConfiguration.h"
38#include "src/core/helpers/WindowHelpers.h"
Manuel Bottinid844c082021-07-14 12:58:54 +010039#include "support/Cast.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000040#include "support/StringSupport.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010041
42#include <cmath>
43#include <tuple>
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +010044#include <utility>
Anthony Barbier6ff3b192017-09-04 18:44:23 +010045
Manuel Bottini8481d832019-12-10 15:28:40 +000046namespace arm_compute
47{
48using namespace misc::shape_calculator;
Manuel Bottinid844c082021-07-14 12:58:54 +010049namespace opencl
50{
51namespace kernels
52{
Georgios Pinitas358ca202017-12-07 16:47:52 +000053namespace
54{
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +010055struct Im2ColConfiguration
56{
57 std::string kernel_name{};
58 std::set<std::string> build_options{};
59 unsigned int num_elems_processed_per_iteration{};
60 bool is_padding_required_nchw{};
61};
62
Manuel Bottinid844c082021-07-14 12:58:54 +010063Status validate_arguments(const ITensorInfo *src, const ITensorInfo *dst, const Size2D &kernel_dims, const PadStrideInfo &conv_info, bool has_bias, const Size2D &dilation,
Giorgio Arena0f170392018-07-18 16:13:12 +010064 unsigned int num_groups)
Georgios Pinitas358ca202017-12-07 16:47:52 +000065{
Manuel Bottinid844c082021-07-14 12:58:54 +010066 const unsigned int channel_idx = get_data_layout_dimension_index(src->data_layout(), DataLayoutDimension::CHANNEL);
Giorgio Arena0f170392018-07-18 16:13:12 +010067
Manuel Bottinid844c082021-07-14 12:58:54 +010068 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(src);
69 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(src, 1, DataType::QASYMM8, DataType::QASYMM8_SIGNED, DataType::F16, DataType::F32);
70 ARM_COMPUTE_RETURN_ERROR_ON(is_data_type_quantized(src->data_type()) && has_bias);
71 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(dst);
Alex Gilday7da29b62018-03-23 14:16:00 +000072 ARM_COMPUTE_RETURN_ERROR_ON((dilation.x() < 1) || (dilation.y() < 1));
Manuel Bottinid844c082021-07-14 12:58:54 +010073 ARM_COMPUTE_RETURN_ERROR_ON(src->data_layout() == DataLayout::UNKNOWN);
Giorgio Arena0f170392018-07-18 16:13:12 +010074 ARM_COMPUTE_RETURN_ERROR_ON(num_groups == 0);
Manuel Bottinid844c082021-07-14 12:58:54 +010075 ARM_COMPUTE_RETURN_ERROR_ON(src->data_layout() == DataLayout::NHWC && num_groups > 1);
76 ARM_COMPUTE_RETURN_ERROR_ON((src->dimension(channel_idx) % num_groups) != 0);
Georgios Pinitas358ca202017-12-07 16:47:52 +000077
SiCong Lif650ea52020-08-05 15:04:00 +010078 // Since there's no implicit padding added, check the total input spatial dimensions (with conv paddings) are big enough for the kernel dimensions
Manuel Bottinid844c082021-07-14 12:58:54 +010079 const unsigned int width_idx = get_data_layout_dimension_index(src->data_layout(), DataLayoutDimension::WIDTH);
80 const unsigned int height_idx = get_data_layout_dimension_index(src->data_layout(), DataLayoutDimension::HEIGHT);
81 const unsigned total_width = src->dimension(width_idx) + conv_info.pad_left() + conv_info.pad_right();
82 const unsigned total_height = src->dimension(height_idx) + conv_info.pad_top() + conv_info.pad_bottom();
SiCong Lif650ea52020-08-05 15:04:00 +010083 ARM_COMPUTE_RETURN_ERROR_ON((total_width < kernel_dims.width) || (total_height < kernel_dims.height));
84
Manuel Bottinid844c082021-07-14 12:58:54 +010085 if(dst->total_size() > 0)
Georgios Pinitas358ca202017-12-07 16:47:52 +000086 {
Manuel Bottinid844c082021-07-14 12:58:54 +010087 const TensorInfo tensor_info_output = dst->clone()->set_tensor_shape(compute_im2col_conv_shape(src, kernel_dims, conv_info, has_bias, dilation, num_groups == 1, num_groups));
88 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(dst, &tensor_info_output);
89 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(src, dst);
90 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_QUANTIZATION_INFO(src, dst);
Georgios Pinitas358ca202017-12-07 16:47:52 +000091 }
92
93 return Status{};
94}
Pablo Tello4a626a72018-04-04 10:01:14 +010095
Manuel Bottinid844c082021-07-14 12:58:54 +010096std::pair<Status, Window> validate_and_configure_window(ITensorInfo *src, ITensorInfo *dst, const Size2D &kernel_dims, const PadStrideInfo &conv_info, bool has_bias, const Size2D &dilation,
Giorgio Arena0f170392018-07-18 16:13:12 +010097 unsigned int num_elems_processed_per_iteration, bool is_padding_required_nchw, unsigned int num_groups)
Pablo Tello4a626a72018-04-04 10:01:14 +010098{
Manuel Bottinid844c082021-07-14 12:58:54 +010099 ARM_COMPUTE_ERROR_ON_NULLPTR(src, dst);
Pablo Tello4a626a72018-04-04 10:01:14 +0100100
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100101 // Output tensor auto initialization if not yet initialized
Manuel Bottinid844c082021-07-14 12:58:54 +0100102 TensorShape expected_output_shape = compute_im2col_conv_shape(src, kernel_dims, conv_info, has_bias, dilation, num_groups == 1, num_groups);
Pablo Tello4a626a72018-04-04 10:01:14 +0100103
Manuel Bottinid844c082021-07-14 12:58:54 +0100104 auto_init_if_empty(*dst, src->clone()->set_tensor_shape(expected_output_shape));
Pablo Tello4a626a72018-04-04 10:01:14 +0100105
Manuel Bottinid844c082021-07-14 12:58:54 +0100106 const DataLayout data_layout = src->data_layout();
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100107 const unsigned int width_idx = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
108 const unsigned int height_idx = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT);
Manuel Bottinid844c082021-07-14 12:58:54 +0100109 const unsigned int input_width = src->dimension(width_idx);
110 const unsigned int input_height = src->dimension(height_idx);
Georgios Pinitas358ca202017-12-07 16:47:52 +0000111
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100112 // Configure the execute window based on the selected optimal OpenCL kernel
113 bool window_changed = false;
114 Window win;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100115
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100116 if(data_layout == DataLayout::NHWC)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100117 {
Manuel Bottinid844c082021-07-14 12:58:54 +0100118 win = calculate_max_window(*src, Steps(num_elems_processed_per_iteration));
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100119 }
120 else
121 {
122 if(is_padding_required_nchw)
Pablo Tello4a626a72018-04-04 10:01:14 +0100123 {
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100124 const BorderSize border(conv_info.pad_top(), conv_info.pad_right(), conv_info.pad_bottom(), conv_info.pad_left());
Manuel Bottinid844c082021-07-14 12:58:54 +0100125 win = calculate_max_window(*src,
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100126 Steps(num_elems_processed_per_iteration * conv_info.stride().first, conv_info.stride().second));
Manuel Bottinid844c082021-07-14 12:58:54 +0100127 AccessWindowStatic input_access(src,
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100128 -border.left,
129 -border.top,
130 ceil_to_multiple(input_width + border.right, kernel_dims.width * num_elems_processed_per_iteration),
131 input_height + border.bottom);
132 window_changed = window_changed || update_window_and_padding(win, input_access);
Pablo Tello4a626a72018-04-04 10:01:14 +0100133 }
134 else
135 {
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100136 // For the generic case, CLIm2ColKernel doesn't need padding (we do not read out-of-bounds elements) so
137 // update_window_and_padding() can be skipped
Manuel Bottinid844c082021-07-14 12:58:54 +0100138 win = calculate_max_window(*src, Steps());
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100139 }
140 }
Michalis Spyrou702dc0c2021-03-19 15:06:07 +0000141
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100142 // set the Z dimension's step same size as the whole dimension so that one can't split across the Z dimension
143 win.set_dimension_step(Window::DimZ, win[Window::DimZ].end() - win[Window::DimZ].start());
144
145 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
146 return std::make_pair(err, win);
147}
148
Manuel Bottinid844c082021-07-14 12:58:54 +0100149Im2ColConfiguration configure_opencl_kernel(const ITensorInfo *src, const Size2D &kernel_dims, const PadStrideInfo &conv_info, bool has_bias, const Size2D &dilation, unsigned int num_groups)
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100150{
Manuel Bottinid844c082021-07-14 12:58:54 +0100151 const DataLayout data_layout = src->data_layout();
152 const DataType data_type = src->data_type();
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100153 const unsigned int width_idx = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
154 const unsigned int height_idx = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT);
155 const unsigned int channel_idx = get_data_layout_dimension_index(data_layout, DataLayoutDimension::CHANNEL);
Manuel Bottinid844c082021-07-14 12:58:54 +0100156 const unsigned int input_width = src->dimension(width_idx);
157 const unsigned int input_height = src->dimension(height_idx);
158 const unsigned int input_channel = src->dimension(channel_idx);
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100159
160 const std::pair<unsigned int, unsigned int> convolved_dims = scaled_dimensions(input_width, input_height, kernel_dims.width, kernel_dims.height, conv_info, dilation);
161
162 // Im2Col configuration
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100163 std::string kernel_name = "im2col_generic_";
164 CLBuildOptions build_opts;
165 unsigned int num_elems_processed_per_iteration = 1;
166 bool is_padding_required_nchw = false;
Manuel Bottinid844c082021-07-14 12:58:54 +0100167 const UniformQuantizationInfo qinfo = src->quantization_info().uniform();
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100168
169 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(data_type));
Manuel Bottinid844c082021-07-14 12:58:54 +0100170 build_opts.add_option("-DELEMENT_SIZE=" + support::cpp11::to_string(src->element_size()));
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100171 build_opts.add_option("-DKERNEL_WIDTH=" + support::cpp11::to_string(kernel_dims.width));
172 build_opts.add_option("-DKERNEL_HEIGHT=" + support::cpp11::to_string(kernel_dims.height));
173 build_opts.add_option("-DCONVOLVED_WIDTH=" + support::cpp11::to_string(convolved_dims.first));
174 build_opts.add_option("-DCONVOLVED_HEIGHT=" + support::cpp11::to_string(convolved_dims.second));
175 build_opts.add_option("-DSTRIDE_X=" + support::cpp11::to_string(conv_info.stride().first));
176 build_opts.add_option("-DSTRIDE_Y=" + support::cpp11::to_string(conv_info.stride().second));
177 build_opts.add_option("-DPAD_LEFT=" + support::cpp11::to_string(conv_info.pad_left()));
178 build_opts.add_option("-DPAD_TOP=" + support::cpp11::to_string(conv_info.pad_top()));
179 build_opts.add_option("-DPAD_RIGHT=" + support::cpp11::to_string(conv_info.pad_right()));
180 build_opts.add_option("-DPAD_BOTTOM=" + support::cpp11::to_string(conv_info.pad_bottom()));
181 build_opts.add_option("-DSRC_WIDTH=" + support::cpp11::to_string(input_width));
182 build_opts.add_option("-DSRC_HEIGHT=" + support::cpp11::to_string(input_height));
183 build_opts.add_option("-DSRC_DEPTH=" + support::cpp11::to_string(input_channel));
184 build_opts.add_option("-DDILATION_X=" + support::cpp11::to_string(dilation.x()));
185 build_opts.add_option("-DDILATION_Y=" + support::cpp11::to_string(dilation.y()));
Giorgio Arena0f170392018-07-18 16:13:12 +0100186 build_opts.add_option_if(num_groups > 1, "-DNUM_GROUPS=" + support::cpp11::to_string(num_groups));
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100187 build_opts.add_option_if_else(is_data_type_quantized(data_type), "-DPAD_VALUE=" + support::cpp11::to_string(qinfo.offset), "-DPAD_VALUE=0");
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100188 build_opts.add_option_if(has_bias, "-DHAS_BIAS");
189
190 if(data_layout == DataLayout::NHWC)
191 {
SiCong Lif650ea52020-08-05 15:04:00 +0100192 num_elems_processed_per_iteration = std::min(2U, input_channel);
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100193 is_padding_required_nchw = false;
194
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000195 // Only the 3x3 and 9x9 cases are optimized for NHWC
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100196 if(kernel_dims == Size2D(3U, 3U))
197 {
198 kernel_name = "im2col3x3_";
Giorgio Arenae330fb42021-11-15 17:03:22 +0000199 build_opts.add_option("-DIM2COL_3X3");
Pablo Tello4a626a72018-04-04 10:01:14 +0100200 }
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000201 else if(kernel_dims == Size2D(9U, 9U))
202 {
203 kernel_name = "im2col9x9_";
Giorgio Arenae330fb42021-11-15 17:03:22 +0000204 build_opts.add_option("-DIM2COL_9X9");
205 }
206 else
207 {
208 build_opts.add_option("-DIM2COL_GENERIC");
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000209 }
Gian Marco76faef82018-01-29 12:15:32 +0000210
SiCong Lif650ea52020-08-05 15:04:00 +0100211 // Get boundary vector (the first/last vector with potentially a partial vector size) size
212 // If input_channel is a multiple of num_elems_processed_per_iteration, the boundary vec size is the (full) vector size
213 // otherwise, the boundary vec size is the (partial) remainder vector size
214 const unsigned int vec_size = num_elems_processed_per_iteration;
215 const unsigned int partial_vec_size = input_channel % vec_size;
216 const unsigned int boundary_vec_size = vec_size - ((vec_size - partial_vec_size) % vec_size);
217 build_opts.add_option("-DVECTOR_SIZE=" + support::cpp11::to_string(vec_size));
218 build_opts.add_option("-DBOUNDARY_VECTOR_SIZE=" + support::cpp11::to_string(boundary_vec_size));
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100219 }
220 else
221 {
Alex Gilday7da29b62018-03-23 14:16:00 +0000222 if(dilation == Size2D(1U, 1U))
Gian Marco76faef82018-01-29 12:15:32 +0000223 {
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100224 const bool squared_im2col = kernel_dims.width == kernel_dims.height;
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +0100225 if(squared_im2col)
Anthony Barbierfcd52fb2017-11-28 10:31:43 +0000226 {
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100227 // Check if we can run an optimized im2col for NCHW
Alex Gilday7da29b62018-03-23 14:16:00 +0000228 switch(kernel_dims.width)
229 {
230 case 1:
231 // Optimized im2col1x1 if stride_x = 1 and conv_info.has_padding() = false
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100232 if(conv_info.stride().first == 1 && !conv_info.has_padding())
Alex Gilday7da29b62018-03-23 14:16:00 +0000233 {
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100234 kernel_name = "im2col1x1_stridex1_";
235 num_elems_processed_per_iteration = 4;
236 is_padding_required_nchw = true;
Alex Gilday7da29b62018-03-23 14:16:00 +0000237 }
238 break;
239 case 3:
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100240 kernel_name = "im2col3x3_";
241 num_elems_processed_per_iteration = 1;
242 is_padding_required_nchw = true;
Alex Gilday7da29b62018-03-23 14:16:00 +0000243 break;
244 case 5:
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100245 kernel_name = "im2col5x5_";
246 num_elems_processed_per_iteration = 1;
247 is_padding_required_nchw = true;
Alex Gilday7da29b62018-03-23 14:16:00 +0000248 break;
249 case 11:
250 // Optimized im2col11x11 if pad_x = pad_y = 0
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100251 if(!conv_info.has_padding())
Alex Gilday7da29b62018-03-23 14:16:00 +0000252 {
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100253 kernel_name = "im2col11x11_padx0_pady0_";
254 num_elems_processed_per_iteration = 1;
255 is_padding_required_nchw = true;
Alex Gilday7da29b62018-03-23 14:16:00 +0000256 }
257 break;
258 default:
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100259 kernel_name = "im2col_generic_";
260 num_elems_processed_per_iteration = 1;
261 is_padding_required_nchw = false;
Alex Gilday7da29b62018-03-23 14:16:00 +0000262 break;
263 }
Anthony Barbierfcd52fb2017-11-28 10:31:43 +0000264 }
Alex Gilday7da29b62018-03-23 14:16:00 +0000265 else if(kernel_dims.width > 1 && !conv_info.has_padding())
266 {
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100267 kernel_name = "im2col_generic_padx0_pady0_";
268 num_elems_processed_per_iteration = 1;
269 is_padding_required_nchw = false;
Anthony Barbierfcd52fb2017-11-28 10:31:43 +0000270
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100271 // Optimized im2col is performed using one or more vector operations with the specified vector size
272 // and a remainder. For example, for 5x5 convolutions, im2col is performed using vectors of size 4
273 // and scalars; for 7x7 convolutions, using vectors of size 4 and vectors of size 3.
274 // Using the vector size of 4 is always safe since OpenCL supports vectors of size 2 and 3.
275 // Using the vector size of 8, however, may be faster.
276 // For 2x2 convolutions, use vectors of size 2. (For 3x3 convolutions, im2col_kernel3x3_padx0_pady0
277 // is used instead.)
278 const size_t vector_size = std::min(static_cast<size_t>(4), kernel_dims.width);
279 const size_t width_mod_vector_size = kernel_dims.width % vector_size;
280 build_opts.add_option("-DVECTOR_SIZE=" + support::cpp11::to_string(vector_size));
281 build_opts.add_option("-DWIDTH_MOD_VECTOR_SIZE=" + support::cpp11::to_string(width_mod_vector_size));
Anthony Barbierfcd52fb2017-11-28 10:31:43 +0000282 }
Anthony Barbierfcd52fb2017-11-28 10:31:43 +0000283 }
Gian Marco76faef82018-01-29 12:15:32 +0000284 }
285
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100286 // Append the data layout to the kernel_name
287 kernel_name += lower_string(string_from_data_layout(data_layout));
288
289 Im2ColConfiguration im2col_config;
290 im2col_config.kernel_name = kernel_name;
291 im2col_config.build_options = build_opts.options();
292 im2col_config.num_elems_processed_per_iteration = num_elems_processed_per_iteration;
293 im2col_config.is_padding_required_nchw = is_padding_required_nchw;
294
295 return im2col_config;
296}
297} // namespace
298
Manuel Bottinid844c082021-07-14 12:58:54 +0100299ClIm2ColKernel::ClIm2ColKernel()
300 : _data_layout(DataLayout::UNKNOWN), _convolved_dims(), _num_elems_processed_per_iteration(1), _kernel_dims(), _conv_info(), _num_groups()
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100301{
Giorgio Arena4a95bba2021-06-28 11:00:27 +0100302 _type = CLKernelType::ELEMENTWISE;
Pablo Tello4a626a72018-04-04 10:01:14 +0100303}
304
Manuel Bottinid844c082021-07-14 12:58:54 +0100305void ClIm2ColKernel::configure(const ClCompileContext &compile_context, ITensorInfo *src, ITensorInfo *dst, const Size2D &kernel_dims, const PadStrideInfo &conv_info, bool has_bias,
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100306 const Size2D &dilation,
307 unsigned int num_groups)
308{
Manuel Bottinid844c082021-07-14 12:58:54 +0100309 ARM_COMPUTE_ERROR_ON_NULLPTR(src, dst);
310 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(src, dst, kernel_dims, conv_info, has_bias, dilation, num_groups));
Pablo Tello4a626a72018-04-04 10:01:14 +0100311
Manuel Bottinid844c082021-07-14 12:58:54 +0100312 auto padding_info = get_padding_info({ src, dst });
313 _data_layout = src->data_layout();
Georgios Pinitas7fdcfb12020-01-09 16:45:46 +0000314
315 const unsigned int width_idx = get_data_layout_dimension_index(_data_layout, DataLayoutDimension::WIDTH);
316 const unsigned int height_idx = get_data_layout_dimension_index(_data_layout, DataLayoutDimension::HEIGHT);
Manuel Bottinid844c082021-07-14 12:58:54 +0100317 const unsigned int input_width = src->dimension(width_idx);
318 const unsigned int input_height = src->dimension(height_idx);
Pablo Tello4a626a72018-04-04 10:01:14 +0100319
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100320 // Select and configure the optimal OpenCL kernel to run.
321 // This function returns the OpenCL kernel's name, the arguments to pass at compile time, the number of elements processed per iteration
322 // and the padding requirement flag
Manuel Bottinid844c082021-07-14 12:58:54 +0100323 Im2ColConfiguration im2col_config = configure_opencl_kernel(src, kernel_dims, conv_info, has_bias, dilation, num_groups);
Pablo Tello4a626a72018-04-04 10:01:14 +0100324
325 // Create kernel
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100326 _kernel = create_kernel(compile_context, im2col_config.kernel_name, im2col_config.build_options);
Pablo Tello4a626a72018-04-04 10:01:14 +0100327
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100328 _convolved_dims = scaled_dimensions(input_width, input_height, kernel_dims.width, kernel_dims.height, conv_info, dilation);
329 _num_elems_processed_per_iteration = im2col_config.num_elems_processed_per_iteration;
330 _kernel_dims = kernel_dims; // Only needed by the Tuner
331 _conv_info = conv_info; // Only needed by the Tuner
Giorgio Arena0f170392018-07-18 16:13:12 +0100332 _num_groups = num_groups;
Pablo Tello4a626a72018-04-04 10:01:14 +0100333
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100334 // Configure kernel window
Manuel Bottinid844c082021-07-14 12:58:54 +0100335 auto win_config = validate_and_configure_window(src, dst, kernel_dims, conv_info, has_bias, dilation, im2col_config.num_elems_processed_per_iteration,
Giorgio Arena0f170392018-07-18 16:13:12 +0100336 im2col_config.is_padding_required_nchw, num_groups);
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100337 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
Manuel Bottinid844c082021-07-14 12:58:54 +0100338 IClKernel::configure_internal(win_config.second);
Gian Marcode691f02017-09-08 16:13:11 +0100339
340 // Set config_id for enabling LWS tuning
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100341 _config_id = im2col_config.kernel_name;
Gian Marco76faef82018-01-29 12:15:32 +0000342 _config_id += "_";
Manuel Bottinid844c082021-07-14 12:58:54 +0100343 _config_id += lower_string(string_from_data_type(src->data_type()));
Gian Marcode691f02017-09-08 16:13:11 +0100344 _config_id += "_";
Gian Marco Iodice916d1bc2018-08-13 11:20:41 +0100345 _config_id += support::cpp11::to_string(num_groups);
346 _config_id += "_";
Manuel Bottinid844c082021-07-14 12:58:54 +0100347 _config_id += support::cpp11::to_string(dst->dimension(0));
Gian Marcode691f02017-09-08 16:13:11 +0100348 _config_id += "_";
Manuel Bottinid844c082021-07-14 12:58:54 +0100349 _config_id += support::cpp11::to_string(dst->dimension(1));
Giorgio Arena00b93f52018-06-28 17:18:50 +0100350 _config_id += "_";
Georgios Pinitas7fdcfb12020-01-09 16:45:46 +0000351 _config_id += lower_string(string_from_data_layout(_data_layout));
SiCong Li04a07062020-11-17 14:09:01 +0000352
Manuel Bottinid844c082021-07-14 12:58:54 +0100353 ARM_COMPUTE_ERROR_ON(src->data_layout() == DataLayout::NHWC && has_padding_changed(padding_info));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100354}
355
Manuel Bottinid844c082021-07-14 12:58:54 +0100356Status ClIm2ColKernel::validate(const ITensorInfo *src, const ITensorInfo *dst, const Size2D &kernel_dims, const PadStrideInfo &conv_info, bool has_bias, const Size2D &dilation,
Giorgio Arena0f170392018-07-18 16:13:12 +0100357 unsigned int num_groups)
Georgios Pinitas358ca202017-12-07 16:47:52 +0000358{
Manuel Bottinid844c082021-07-14 12:58:54 +0100359 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(src, dst, kernel_dims, conv_info, has_bias, dilation, num_groups));
360 Im2ColConfiguration im2col_config = configure_opencl_kernel(src, kernel_dims, conv_info, has_bias, dilation, num_groups);
361 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(src->clone().get(), dst->clone().get(), kernel_dims, conv_info, has_bias, dilation, im2col_config.num_elems_processed_per_iteration,
Giorgio Arena0f170392018-07-18 16:13:12 +0100362 im2col_config.is_padding_required_nchw, num_groups)
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100363 .first);
Georgios Pinitas358ca202017-12-07 16:47:52 +0000364 return Status{};
365}
366
Manuel Bottinid844c082021-07-14 12:58:54 +0100367void ClIm2ColKernel::run_op(ITensorPack &tensors, const Window &window, cl::CommandQueue &queue)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100368{
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100369 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
Manuel Bottinid844c082021-07-14 12:58:54 +0100370 ARM_COMPUTE_ERROR_ON_MISMATCHING_WINDOWS(IClKernel::window(), window);
371 ARM_COMPUTE_ERROR_ON(tensors.empty());
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100372
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100373 // Get initial windows
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100374 // Collapse in order to have (SRC_DEPTH * BATCH_SIZE) on the 3rd dimension
steniu01868e5412017-07-17 23:16:00 +0100375 Window window_collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
steniu01868e5412017-07-17 23:16:00 +0100376 window_collapsed.set_dimension_step(Window::DimZ, 1);
377
Manuel Bottinid844c082021-07-14 12:58:54 +0100378 auto src = utils::cast::polymorphic_downcast<const ICLTensor *>(tensors.get_const_tensor(TensorType::ACL_SRC));
379 auto dst = utils::cast::polymorphic_downcast<ICLTensor *>(tensors.get_tensor(TensorType::ACL_DST));
380 ARM_COMPUTE_ERROR_ON_NULLPTR(src, dst);
381
Georgios Pinitas19ea4192018-06-19 13:09:53 +0100382 Window window_output;
Manuel Bottinid844c082021-07-14 12:58:54 +0100383 window_output.use_tensor_dimensions(dst->info()->tensor_shape());
Georgios Pinitas19ea4192018-06-19 13:09:53 +0100384
Pablo Tello4a626a72018-04-04 10:01:14 +0100385 const Window first_slice_3d = window_collapsed.first_slice_window_3D();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100386
Pablo Tello4a626a72018-04-04 10:01:14 +0100387 Window slice = first_slice_3d;
388 Window slice_in = first_slice_3d;
Georgios Pinitas19ea4192018-06-19 13:09:53 +0100389 Window slice_out = window_output.first_slice_window_2D();
Pablo Tello4a626a72018-04-04 10:01:14 +0100390
Georgios Pinitas7fdcfb12020-01-09 16:45:46 +0000391 if(_data_layout == DataLayout::NHWC)
Gian Marco76faef82018-01-29 12:15:32 +0000392 {
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100393 const Window tmp_win = window.collapse_if_possible(ICLKernel::window(), 3);
394 const int num_batches = tmp_win[3].end();
395
Manuel Bottinid844c082021-07-14 12:58:54 +0100396 slice.set(1, Window::Dimension(0, static_cast<int>(dst->info()->tensor_shape()[1]), 1));
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100397 slice.set(2, Window::Dimension(0, static_cast<int>(num_batches), 1));
398 }
399 else
400 {
401 slice.set(0, Window::Dimension(0, static_cast<int>(ceil_to_multiple(_convolved_dims.first, _num_elems_processed_per_iteration)), _num_elems_processed_per_iteration));
402 slice.set(1, Window::Dimension(0, static_cast<int>(_convolved_dims.second), 1));
403 // Note: In case of NCHW the 3rd dimension is already set collapsing the input window
Gian Marco76faef82018-01-29 12:15:32 +0000404 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100405
406 // Setup input slice
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100407 // The dimensions of the input are increased within the OpenCL kernel
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100408 slice_in.set(Window::DimX, Window::Dimension(0, 0, 0));
409 slice_in.set(Window::DimY, Window::Dimension(0, 0, 0));
410 slice_in.set(Window::DimZ, Window::Dimension(0, 0, 0));
411
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100412 // Setup output slice
413 // The dimensions of the output are increased within the OpenCL kernel
414 slice_out.set(Window::DimX, Window::Dimension(0, 0, 0));
415 slice_out.set(Window::DimY, Window::Dimension(0, 0, 0));
416
Giorgio Arena0f170392018-07-18 16:13:12 +0100417 unsigned int idx = num_arguments_per_3D_tensor() + (_num_groups == 1 ? num_arguments_per_2D_tensor() : num_arguments_per_3D_tensor());
Manuel Bottinid844c082021-07-14 12:58:54 +0100418 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(src->info()->strides_in_bytes()[3]));
419 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(dst->info()->strides_in_bytes()[((_num_groups == 1) ? 2 : 3)]));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100420 do
421 {
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100422 unsigned int idx = 0;
Manuel Bottinid844c082021-07-14 12:58:54 +0100423 add_3D_tensor_argument(idx, src, slice_in);
Giorgio Arena0f170392018-07-18 16:13:12 +0100424 if(_num_groups == 1)
425 {
Manuel Bottinid844c082021-07-14 12:58:54 +0100426 add_2D_tensor_argument(idx, dst, slice_out);
Giorgio Arena0f170392018-07-18 16:13:12 +0100427 }
428 else
429 {
Manuel Bottinid844c082021-07-14 12:58:54 +0100430 add_3D_tensor_argument(idx, dst, slice_out);
Giorgio Arena0f170392018-07-18 16:13:12 +0100431 }
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100432 enqueue(queue, *this, slice, lws_hint());
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100433 }
Georgios Pinitas19ea4192018-06-19 13:09:53 +0100434 while(window_collapsed.slide_window_slice_3D(slice) && window_output.slide_window_slice_2D(slice_out) && window_collapsed.slide_window_slice_3D(slice_in));
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100435}
Manuel Bottinid844c082021-07-14 12:58:54 +0100436} // namespace kernels
437} // namespace opencl
Matthew Bentham758b5ba2020-03-05 23:37:48 +0000438} // namespace arm_compute