blob: 43b8f85c39f8941dfe0afb115c46956641383385 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Michele Di Giorgiocbbed282019-12-20 13:26:08 +00002 * Copyright (c) 2017-2020 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 */
24#include "arm_compute/core/CL/kernels/CLPoolingLayerKernel.h"
25
26#include "arm_compute/core/AccessWindowStatic.h"
27#include "arm_compute/core/CL/CLHelpers.h"
28#include "arm_compute/core/CL/CLKernelLibrary.h"
Vidhya Sudhan Loganathanf1f49062018-05-25 13:21:26 +010029#include "arm_compute/core/CL/CLValidate.h"
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +000030#include "arm_compute/core/CL/ICLKernel.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010031#include "arm_compute/core/CL/ICLTensor.h"
32#include "arm_compute/core/CL/OpenCL.h"
33#include "arm_compute/core/Helpers.h"
34#include "arm_compute/core/TensorInfo.h"
35#include "arm_compute/core/Utils.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010036#include "arm_compute/core/Window.h"
Michalis Spyroue74b2012018-04-18 09:49:16 +010037#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000038#include "support/StringSupport.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010039
40#include <set>
41#include <string>
42#include <tuple>
43
Michele Di Giorgiocbbed282019-12-20 13:26:08 +000044namespace arm_compute
45{
Michalis Spyroue74b2012018-04-18 09:49:16 +010046using namespace arm_compute::misc::shape_calculator;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010047
Giorgio Arena9f26b3e2017-11-28 14:35:00 +000048namespace
Anthony Barbier6ff3b192017-09-04 18:44:23 +010049{
Giorgio Arena9f26b3e2017-11-28 14:35:00 +000050// Internal window config info
51using CLPoolingConfig = std::pair<unsigned int, BorderSize>; //num_elems_processed_per_iteration, border_size
52
Michalis Spyroue74b2012018-04-18 09:49:16 +010053void auto_init(const ITensorInfo *input, ITensorInfo *output, PoolingLayerInfo pool_info)
Giorgio Arena9f26b3e2017-11-28 14:35:00 +000054{
Michalis Spyroue74b2012018-04-18 09:49:16 +010055 TensorShape out_shape = compute_pool_shape(*input, pool_info);
56 auto_init_if_empty(*output, input->clone()->set_tensor_shape(out_shape));
Anthony Barbier6ff3b192017-09-04 18:44:23 +010057}
58
morgolockcc1f6c92020-03-24 09:26:48 +000059Status validate_arguments(const ITensorInfo *input, const ITensorInfo *output, const PoolingLayerInfo &pool_info, const ITensorInfo *indices)
Georgios Pinitas3faea252017-10-30 14:13:50 +000060{
61 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
Vidhya Sudhan Loganathanf1f49062018-05-25 13:21:26 +010062 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input);
morgolockcc1f6c92020-03-24 09:26:48 +000063 ARM_COMPUTE_RETURN_ERROR_ON_MSG(indices, "Indices not supported in the CL backend.");
Michele Di Giorgiocbbed282019-12-20 13:26:08 +000064 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::QASYMM8, DataType::QASYMM8_SIGNED, DataType::F16, DataType::F32);
Sang-Hoon Park0cb3da62020-01-15 12:39:56 +000065 ARM_COMPUTE_RETURN_ERROR_ON_MSG((is_data_type_quantized_asymmetric(input->data_type()) && pool_info.pool_type == PoolingType::L2),
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +000066 "Unsupported combination of parameters!");
Michele Di Giorgio2c877192020-02-18 19:06:27 +000067 ARM_COMPUTE_RETURN_ERROR_ON_MSG(is_data_type_quantized(input->data_type()) && !pool_info.exclude_padding && (pool_info.pool_type == PoolingType::AVG) && pool_info.pad_stride_info.has_padding()
68 && (input->data_layout() == DataLayout::NHWC),
69 "exclude_padding equal false is not supported for AVG Pooling with padding on quantized types");
Georgios Pinitas3faea252017-10-30 14:13:50 +000070
Georgios Pinitas3faea252017-10-30 14:13:50 +000071 // Checks performed when output is configured
72 if(output->total_size() != 0)
73 {
74 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
Michalis Spyroue74b2012018-04-18 09:49:16 +010075 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_LAYOUT(input, output);
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010076 TensorInfo out_info(TensorInfo(compute_pool_shape(*input, pool_info), 1, output->data_type()));
Michalis Spyroue74b2012018-04-18 09:49:16 +010077 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(output, &out_info);
Georgios Pinitas3faea252017-10-30 14:13:50 +000078 }
79
Georgios Pinitas631c41a2017-12-06 11:53:03 +000080 return Status{};
Georgios Pinitas3faea252017-10-30 14:13:50 +000081}
82
Georgios Pinitas631c41a2017-12-06 11:53:03 +000083std::tuple<Status, Window, CLPoolingConfig> validate_and_configure_window(ITensorInfo *input, ITensorInfo *output, const PoolingLayerInfo &pool_info)
Giorgio Arena9f26b3e2017-11-28 14:35:00 +000084{
Michalis Spyroue74b2012018-04-18 09:49:16 +010085 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
86
87 // Get data layout
Sang-Hoon Park11fedda2020-01-15 14:44:04 +000088 const DataLayout data_layout = pool_info.data_layout == DataLayout::UNKNOWN ? input->data_layout() : pool_info.data_layout;
Michalis Spyroue74b2012018-04-18 09:49:16 +010089 const int idx_width = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
90 const int idx_height = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT);
91
Giorgio Arena9f26b3e2017-11-28 14:35:00 +000092 int pool_stride_x = 0;
93 int pool_stride_y = 0;
94 unsigned int pooled_w = 0;
95 unsigned int pooled_h = 0;
Sang-Hoon Park0cb3da62020-01-15 12:39:56 +000096 int pool_size_x = pool_info.is_global_pooling ? input->dimension(idx_width) : pool_info.pool_size.width;
97 int pool_size_y = pool_info.is_global_pooling ? input->dimension(idx_height) : pool_info.pool_size.height;
98 const PadStrideInfo pad_stride_info = pool_info.pad_stride_info;
Giorgio Arena9f26b3e2017-11-28 14:35:00 +000099 std::tie(pool_stride_x, pool_stride_y) = pad_stride_info.stride();
Michalis Spyroue74b2012018-04-18 09:49:16 +0100100 const int pool_pad_right = pad_stride_info.pad_right();
101 const int pool_pad_top = pad_stride_info.pad_top();
102 const int pool_pad_left = pad_stride_info.pad_left();
103 const int pool_pad_bottom = pad_stride_info.pad_bottom();
104 BorderSize border_size = BorderSize(pool_pad_top, pool_pad_right, pool_pad_bottom, pool_pad_left);
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000105
Michalis Spyroue74b2012018-04-18 09:49:16 +0100106 auto_init(input, output, pool_info);
107 pooled_w = output->tensor_shape()[idx_width];
108 pooled_h = output->tensor_shape()[idx_height];
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000109
Michalis Spyroue74b2012018-04-18 09:49:16 +0100110 const DataType data_type = input->data_type();
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000111
Michalis Spyroue74b2012018-04-18 09:49:16 +0100112 const int input_width = input->dimension(idx_width);
113 const int input_height = input->dimension(idx_height);
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000114
Michalis Spyroue74b2012018-04-18 09:49:16 +0100115 unsigned int num_elems_processed_per_iteration = 0;
116 bool window_changed = false;
117 Window win{};
118 switch(data_layout)
119 {
120 case DataLayout::NCHW:
121 {
122 // Change the number of elements processed per iteration
123 // for pooling 3x3 with stride less equal than 3
124 const bool can_optimize = (pool_size_x == 3) && (pool_size_y == 3) && (pool_stride_x <= 3) && !is_data_type_quantized(data_type);
125 num_elems_processed_per_iteration = can_optimize ? 4 : 1;
126 const unsigned int num_elems_read_per_iteration = (num_elems_processed_per_iteration - 1) * pool_stride_x + pool_size_x;
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000127
Michalis Spyroue74b2012018-04-18 09:49:16 +0100128 // Number of iterations in X dimension
129 const int num_iterations_x = (pooled_w + num_elems_processed_per_iteration - 1) / num_elems_processed_per_iteration;
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000130
Michalis Spyroue74b2012018-04-18 09:49:16 +0100131 // Upper limit for the number of right/bottom border elements that are accessed
132 const int upper_bound_w = ((num_iterations_x - 1) * num_elems_processed_per_iteration * pool_stride_x - pool_pad_left + num_elems_read_per_iteration) - input_width;
133 const int upper_bound_h = ((pooled_h - 1) * pool_stride_y - pool_pad_top + pool_size_y) - input_height;
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000134
Michalis Spyroue74b2012018-04-18 09:49:16 +0100135 border_size.right = std::max(upper_bound_w, pool_pad_right);
136 border_size.bottom = std::max(upper_bound_h, pool_pad_bottom);
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000137
Michalis Spyroue74b2012018-04-18 09:49:16 +0100138 win = calculate_max_window(*output, Steps(num_elems_processed_per_iteration));
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000139
Michalis Spyroue74b2012018-04-18 09:49:16 +0100140 AccessWindowRectangle input_access(input, -pool_pad_left, -pool_pad_top, num_elems_read_per_iteration, pool_size_y,
Giorgio Arena3c520c52018-05-01 11:47:24 +0100141 pool_stride_x, pool_stride_y);
Michalis Spyroue74b2012018-04-18 09:49:16 +0100142 AccessWindowHorizontal output_access(output, 0, num_elems_processed_per_iteration);
143 window_changed = update_window_and_padding(win, input_access, output_access);
144 output_access.set_valid_region(win, ValidRegion(Coordinates(), output->tensor_shape()));
145 break;
146 }
147 case DataLayout::NHWC:
148 {
149 num_elems_processed_per_iteration = 8;
150 win = calculate_max_window(*output, Steps(num_elems_processed_per_iteration));
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000151
Georgios Pinitase2220552018-07-20 13:23:44 +0100152 AccessWindowStatic input_access(input,
153 0, -1,
154 ceil_to_multiple(input->dimension(0), num_elems_processed_per_iteration), input->dimension(1));
Michalis Spyroue74b2012018-04-18 09:49:16 +0100155 AccessWindowHorizontal output_access(output, 0, num_elems_processed_per_iteration);
156 window_changed = update_window_and_padding(win, input_access, output_access);
157 output_access.set_valid_region(win, ValidRegion(Coordinates(), output->tensor_shape()));
158 break;
159 }
160 default:
161 ARM_COMPUTE_ERROR("Not implemented");
162 }
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000163
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000164 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000165 return std::make_tuple(err, win, CLPoolingConfig(num_elems_processed_per_iteration, border_size));
166}
167} // namespace
168
169CLPoolingLayerKernel::CLPoolingLayerKernel()
morgolockcc1f6c92020-03-24 09:26:48 +0000170 : _input(nullptr), _output(nullptr), _indices(nullptr), _pool_info(), _data_layout(DataLayout::UNKNOWN), _border_size(0), _num_elems_processed_per_iteration(1)
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000171{
172}
173
174BorderSize CLPoolingLayerKernel::border_size() const
175{
176 return _border_size;
177}
178
morgolockcc1f6c92020-03-24 09:26:48 +0000179void CLPoolingLayerKernel::configure(const ICLTensor *input, ICLTensor *output, const PoolingLayerInfo &pool_info, ICLTensor *indices)
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000180{
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100181 configure(CLKernelLibrary::get().get_compile_context(), input, output, pool_info, indices);
182}
183
184void CLPoolingLayerKernel::configure(CLCompileContext &compile_context, const ICLTensor *input, ICLTensor *output, const PoolingLayerInfo &pool_info, ICLTensor *indices)
185{
Michalis Spyroue74b2012018-04-18 09:49:16 +0100186 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
187
Georgios Pinitas14d9d982019-12-13 12:33:09 +0000188 // Set instance variables
morgolockcc1f6c92020-03-24 09:26:48 +0000189 _input = input;
190 _output = output;
191 _pool_info = pool_info;
192 _data_layout = pool_info.data_layout == DataLayout::UNKNOWN ? input->info()->data_layout() : pool_info.data_layout;
193 _indices = indices;
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000194 int pool_stride_x = 0;
195 int pool_stride_y = 0;
Sang-Hoon Park0cb3da62020-01-15 12:39:56 +0000196 const PoolingType pool_type = pool_info.pool_type;
Georgios Pinitas14d9d982019-12-13 12:33:09 +0000197 const int idx_width = get_data_layout_dimension_index(_data_layout, DataLayoutDimension::WIDTH);
198 const int idx_height = get_data_layout_dimension_index(_data_layout, DataLayoutDimension::HEIGHT);
199 const int idx_channel = get_data_layout_dimension_index(_data_layout, DataLayoutDimension::CHANNEL);
Sang-Hoon Park0cb3da62020-01-15 12:39:56 +0000200 const int pool_size_x = pool_info.is_global_pooling ? input->info()->dimension(idx_width) : pool_info.pool_size.width;
201 const int pool_size_y = pool_info.is_global_pooling ? input->info()->dimension(idx_height) : pool_info.pool_size.height;
202 const PadStrideInfo pad_stride_info = pool_info.pad_stride_info;
203 const bool exclude_padding = pool_info.exclude_padding;
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000204 std::tie(pool_stride_x, pool_stride_y) = pad_stride_info.stride();
Georgios Pinitas15997872018-02-19 13:58:22 +0000205 const int pool_pad_top = pad_stride_info.pad_top();
206 const int pool_pad_left = pad_stride_info.pad_left();
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000207
Pablo Telloa52e4cf2019-04-01 14:55:18 +0100208 // Set build options
209 CLBuildOptions build_opts;
210
211 if(is_data_type_quantized_asymmetric(input->info()->data_type()) && input->info()->quantization_info() != output->info()->quantization_info())
212 {
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100213 const UniformQuantizationInfo iq_info = input->info()->quantization_info().uniform();
214 const UniformQuantizationInfo oq_info = output->info()->quantization_info().uniform();
215
216 build_opts.add_option("-DOFFSET_IN1=" + float_to_string_with_full_precision(iq_info.offset));
217 build_opts.add_option("-DOFFSET_OUT=" + float_to_string_with_full_precision(oq_info.offset));
218 build_opts.add_option("-DSCALE_IN1=" + float_to_string_with_full_precision(iq_info.scale));
219 build_opts.add_option("-DSCALE_OUT=" + float_to_string_with_full_precision(oq_info.scale));
Pablo Telloa52e4cf2019-04-01 14:55:18 +0100220 }
221
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000222 // Check output dimensions
Michalis Spyroue74b2012018-04-18 09:49:16 +0100223 auto_init(input->info(), output->info(), pool_info);
morgolockcc1f6c92020-03-24 09:26:48 +0000224 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), output->info(), pool_info, (indices) ? indices->info() : nullptr));
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000225
Georgios Pinitas17812ba2018-06-04 19:27:13 +0100226 const DataType data_type = input->info()->data_type();
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000227
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000228 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(data_type));
229 build_opts.add_option("-DPOOL_" + string_from_pooling_type(pool_type));
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000230 build_opts.add_option("-DSTRIDE_X=" + support::cpp11::to_string(pool_stride_x));
Michalis Spyroue74b2012018-04-18 09:49:16 +0100231 build_opts.add_option("-DSTRIDE_Y=" + support::cpp11::to_string(pool_stride_y));
232 build_opts.add_option("-DPAD_X=" + support::cpp11::to_string(pool_pad_left));
233 build_opts.add_option("-DPAD_Y=" + support::cpp11::to_string(pool_pad_top));
234 build_opts.add_option("-DPOOL_SIZE_X=" + support::cpp11::to_string(pool_size_x));
235 build_opts.add_option("-DPOOL_SIZE_Y=" + support::cpp11::to_string(pool_size_y));
Pablo Telloa52e4cf2019-04-01 14:55:18 +0100236
Michele Di Giorgiocbbed282019-12-20 13:26:08 +0000237 // Set the initial value for the pooling operation accordingly with the data type
238 if(pool_type == PoolingType::MAX)
239 {
240 if(is_data_type_quantized(data_type))
241 {
242 PixelValue type_min{};
243 std::tie(type_min, std::ignore) = get_min_max(data_type);
244 build_opts.add_option("-DINITIAL_VALUE=" + support::cpp11::to_string(type_min.get<int32_t>()));
245 }
246 else
247 {
248 build_opts.add_option("-DINITIAL_VALUE=" + float_to_string_with_full_precision(std::numeric_limits<float>::lowest()));
249 }
250 }
251 else
252 {
253 // Pool AVG and Pool L2 initial value
254 build_opts.add_option("-DINITIAL_VALUE=0");
255 }
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000256
Sang-Hoon Park0cb3da62020-01-15 12:39:56 +0000257 const auto use_fp_mixed_precision = (data_type == DataType::F16) && pool_info.fp_mixed_precision;
Sang-Hoon Park2aa7fd02019-09-18 13:39:00 +0100258 const auto use_wider_accumulator = use_fp_mixed_precision && (pool_type != PoolingType::MAX);
259 const auto acc_data_type = get_cl_type_from_data_type(use_wider_accumulator ? DataType::F32 : data_type);
260 build_opts.add_option("-DACC_DATA_TYPE=" + acc_data_type);
261 build_opts.add_option_if(use_wider_accumulator, "-DFP_MIXED_PRECISION");
262
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000263 // Create kernel
Georgios Pinitas14d9d982019-12-13 12:33:09 +0000264 switch(_data_layout)
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000265 {
Michalis Spyroue74b2012018-04-18 09:49:16 +0100266 case DataLayout::NCHW:
267 {
268 build_opts.add_option("-DMAX_WIDTH=" + support::cpp11::to_string(input->info()->dimension(idx_width) + (exclude_padding ? 0 : pool_pad_left)));
269 build_opts.add_option("-DMAX_HEIGHT=" + support::cpp11::to_string(input->info()->dimension(idx_height) + (exclude_padding ? 0 : pool_pad_top)));
270 if(pool_type != PoolingType::MAX)
271 {
272 build_opts.add_option_if(exclude_padding, "-DEXCLUDE_PADDING");
273 }
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000274
Michalis Spyroue74b2012018-04-18 09:49:16 +0100275 if((pool_size_x == 3) && (pool_size_y == 3) && !is_data_type_quantized_asymmetric(data_type))
276 {
277 // Check if we have pool3x3 with stride_x less equal than 3. In these cases, run an optimized OpenCL kernel where
278 // each thread computes 4 output elements
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +0100279 const bool is_pool3x3_stride_le3 = (pool_size_x == 3) && (pool_size_y == 3) && (pool_stride_x <= 3);
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000280
Michalis Spyroue74b2012018-04-18 09:49:16 +0100281 std::string kernel_name = ((is_pool3x3_stride_le3) ? "pooling_layer_optimized_" : "pooling_layer_")
282 + support::cpp11::to_string(pool_size_x);
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100283 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Michalis Spyroue74b2012018-04-18 09:49:16 +0100284 }
285 else // Run general case
286 {
287 std::string kernel_name = is_data_type_quantized_asymmetric(data_type) ? "pooling_layer_MxN_quantized_nchw" : "pooling_layer_MxN_nchw";
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100288 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Michalis Spyroue74b2012018-04-18 09:49:16 +0100289 }
290 break;
291 }
292 case DataLayout::NHWC:
293 {
294 build_opts.add_option_if(exclude_padding, "-DEXCLUDE_PADDING");
295 build_opts.add_option("-DMAX_WIDTH=" + support::cpp11::to_string(input->info()->dimension(idx_width)));
296 build_opts.add_option("-DMAX_HEIGHT=" + support::cpp11::to_string(input->info()->dimension(idx_height)));
Georgios Pinitas89d71732018-10-29 20:07:15 +0000297 build_opts.add_option_if(output->info()->tensor_shape().total_size_upper(3) > 1,
298 "-DDST_DEPTH=" + support::cpp11::to_string(output->info()->dimension(idx_height)));
Michalis Spyroue74b2012018-04-18 09:49:16 +0100299 std::string kernel_name = is_data_type_quantized_asymmetric(data_type) ? "pooling_layer_MxN_quantized_nhwc" : "pooling_layer_MxN_nhwc";
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100300 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Michalis Spyroue74b2012018-04-18 09:49:16 +0100301 break;
302 }
303 default:
304 ARM_COMPUTE_ERROR("Not implemented");
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000305 }
306
307 // Configure kernel window
308 auto win_config = validate_and_configure_window(input->info(), output->info(), pool_info);
309
310 ARM_COMPUTE_ERROR_THROW_ON(std::get<0>(win_config));
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100311 ICLKernel::configure_internal(std::get<1>(win_config));
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000312
Georgios Pinitas14d9d982019-12-13 12:33:09 +0000313 if(_data_layout == DataLayout::NCHW)
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000314 {
Michalis Spyroue74b2012018-04-18 09:49:16 +0100315 CLPoolingConfig pooling_config = std::get<2>(win_config);
316 _num_elems_processed_per_iteration = pooling_config.first;
317 _border_size = pooling_config.second;
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000318 }
Michalis Spyroue74b2012018-04-18 09:49:16 +0100319 else
320 {
321 _border_size = BorderSize(1, 0, 0, 0);
322 _num_elems_processed_per_iteration = 8;
323 }
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000324
325 // Set config_id for enabling LWS tuning
326 _config_id = "pooling_layer_";
327 _config_id += lower_string(string_from_data_type(data_type));
328 _config_id += "_";
Georgios Pinitas14d9d982019-12-13 12:33:09 +0000329 _config_id += lower_string(string_from_data_layout(_data_layout));
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000330 _config_id += "_";
Michalis Spyroue74b2012018-04-18 09:49:16 +0100331 _config_id += support::cpp11::to_string(output->info()->dimension(idx_width));
332 _config_id += "_";
333 _config_id += support::cpp11::to_string(output->info()->dimension(idx_height));
334 _config_id += "_";
335 _config_id += support::cpp11::to_string(output->info()->dimension(idx_channel));
Giorgio Arena00b93f52018-06-28 17:18:50 +0100336 _config_id += "_";
337 _config_id += lower_string(string_from_data_layout(input->info()->data_layout()));
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000338}
339
morgolockcc1f6c92020-03-24 09:26:48 +0000340Status CLPoolingLayerKernel::validate(const ITensorInfo *input, const ITensorInfo *output, const PoolingLayerInfo &pool_info, const ITensorInfo *indices)
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000341{
morgolockcc1f6c92020-03-24 09:26:48 +0000342 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output, pool_info, indices));
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000343 ARM_COMPUTE_RETURN_ON_ERROR(std::get<0>(validate_and_configure_window(input->clone().get(), output->clone().get(), pool_info)));
344
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000345 return Status{};
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000346}
347
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100348void CLPoolingLayerKernel::run(const Window &window, cl::CommandQueue &queue)
349{
350 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
351 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IKernel::window(), window);
352
Georgios Pinitas15997872018-02-19 13:58:22 +0000353 unsigned int pool_stride_x = 0;
354 unsigned int pool_stride_y = 0;
Sang-Hoon Park0cb3da62020-01-15 12:39:56 +0000355 std::tie(pool_stride_x, pool_stride_y) = _pool_info.pad_stride_info.stride();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100356
Georgios Pinitas89d71732018-10-29 20:07:15 +0000357 // Collapse window
358 Window window_collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
359
Georgios Pinitas14d9d982019-12-13 12:33:09 +0000360 switch(_data_layout)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100361 {
Michalis Spyroue74b2012018-04-18 09:49:16 +0100362 case DataLayout::NCHW:
363 {
Georgios Pinitas89d71732018-10-29 20:07:15 +0000364 Window slice = window_collapsed.first_slice_window_3D();
Michalis Spyroue74b2012018-04-18 09:49:16 +0100365 do
366 {
367 // Upsample input by pool size
368 Window in_slice(slice);
Sang-Hoon Park0cb3da62020-01-15 12:39:56 +0000369 in_slice.set(Window::DimX, Window::Dimension(in_slice.x().start() - _pool_info.pad_stride_info.pad_left(),
370 (in_slice.x().end() - _pool_info.pad_stride_info.pad_left()) * pool_stride_x,
Michalis Spyroue74b2012018-04-18 09:49:16 +0100371 pool_stride_x * _num_elems_processed_per_iteration));
Sang-Hoon Park0cb3da62020-01-15 12:39:56 +0000372 in_slice.set(Window::DimY, Window::Dimension(in_slice.y().start() - _pool_info.pad_stride_info.pad_top(),
373 (in_slice.y().end() - _pool_info.pad_stride_info.pad_top()) * pool_stride_y,
Michalis Spyroue74b2012018-04-18 09:49:16 +0100374 pool_stride_y));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100375
Michalis Spyroue74b2012018-04-18 09:49:16 +0100376 // Set inputs
377 unsigned int idx = 0;
378 add_3D_tensor_argument(idx, _input, in_slice);
379 add_3D_tensor_argument(idx, _output, slice);
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100380 enqueue(queue, *this, slice, lws_hint());
Michalis Spyroue74b2012018-04-18 09:49:16 +0100381 }
382 while(window_collapsed.slide_window_slice_3D(slice));
383 break;
384 }
385 case DataLayout::NHWC:
386 {
Georgios Pinitas89d71732018-10-29 20:07:15 +0000387 const size_t total_batches = _output->info()->tensor_shape().total_size_upper(3);
Michalis Spyroue74b2012018-04-18 09:49:16 +0100388
Georgios Pinitas89d71732018-10-29 20:07:15 +0000389 Window slice = window_collapsed.first_slice_window_4D();
390 Window in_slice = window_collapsed.first_slice_window_4D();
Michalis Spyroue74b2012018-04-18 09:49:16 +0100391 in_slice.set(Window::DimX, Window::Dimension(0, _input->info()->dimension(0), _num_elems_processed_per_iteration));
392 in_slice.set(Window::DimY, Window::Dimension(0, _input->info()->dimension(1), pool_stride_x));
393 in_slice.set(Window::DimZ, Window::Dimension(0, _input->info()->dimension(2), pool_stride_y));
Georgios Pinitas89d71732018-10-29 20:07:15 +0000394 in_slice.set(3, Window::Dimension(0, total_batches, 1));
Michalis Spyroue74b2012018-04-18 09:49:16 +0100395 do
396 {
397 // Set inputs
398 unsigned int idx = 0;
Georgios Pinitas89d71732018-10-29 20:07:15 +0000399 add_4D_tensor_argument(idx, _input, in_slice);
400 add_4D_tensor_argument(idx, _output, slice);
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100401 enqueue(queue, *this, slice, lws_hint());
Michalis Spyroue74b2012018-04-18 09:49:16 +0100402 }
Georgios Pinitas89d71732018-10-29 20:07:15 +0000403 while(window.slide_window_slice_4D(slice) && window.slide_window_slice_4D(in_slice));
Michalis Spyroue74b2012018-04-18 09:49:16 +0100404 break;
405 }
406 default:
407 ARM_COMPUTE_ERROR("Not implemented");
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100408 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100409}
Michele Di Giorgiocbbed282019-12-20 13:26:08 +0000410} // namespace arm_compute