blob: 2d75e5f9694a314639f03b5582eef49212a5c4d5 [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"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010038
39#include <set>
40#include <string>
41#include <tuple>
42
Michele Di Giorgiocbbed282019-12-20 13:26:08 +000043namespace arm_compute
44{
Michalis Spyroue74b2012018-04-18 09:49:16 +010045using namespace arm_compute::misc::shape_calculator;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010046
Giorgio Arena9f26b3e2017-11-28 14:35:00 +000047namespace
Anthony Barbier6ff3b192017-09-04 18:44:23 +010048{
Giorgio Arena9f26b3e2017-11-28 14:35:00 +000049// Internal window config info
50using CLPoolingConfig = std::pair<unsigned int, BorderSize>; //num_elems_processed_per_iteration, border_size
51
Michalis Spyroue74b2012018-04-18 09:49:16 +010052void auto_init(const ITensorInfo *input, ITensorInfo *output, PoolingLayerInfo pool_info)
Giorgio Arena9f26b3e2017-11-28 14:35:00 +000053{
Michalis Spyroue74b2012018-04-18 09:49:16 +010054 TensorShape out_shape = compute_pool_shape(*input, pool_info);
55 auto_init_if_empty(*output, input->clone()->set_tensor_shape(out_shape));
Anthony Barbier6ff3b192017-09-04 18:44:23 +010056}
57
Georgios Pinitas631c41a2017-12-06 11:53:03 +000058Status validate_arguments(const ITensorInfo *input, const ITensorInfo *output, const PoolingLayerInfo &pool_info)
Georgios Pinitas3faea252017-10-30 14:13:50 +000059{
60 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
Vidhya Sudhan Loganathanf1f49062018-05-25 13:21:26 +010061 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input);
Michele Di Giorgiocbbed282019-12-20 13:26:08 +000062 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::QASYMM8, DataType::QASYMM8_SIGNED, DataType::F16, DataType::F32);
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +000063 ARM_COMPUTE_RETURN_ERROR_ON_MSG((is_data_type_quantized_asymmetric(input->data_type()) && pool_info.pool_type() == PoolingType::L2),
64 "Unsupported combination of parameters!");
Georgios Pinitas3faea252017-10-30 14:13:50 +000065
Georgios Pinitas3faea252017-10-30 14:13:50 +000066 // Checks performed when output is configured
67 if(output->total_size() != 0)
68 {
69 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
Michalis Spyroue74b2012018-04-18 09:49:16 +010070 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_LAYOUT(input, output);
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010071 TensorInfo out_info(TensorInfo(compute_pool_shape(*input, pool_info), 1, output->data_type()));
Michalis Spyroue74b2012018-04-18 09:49:16 +010072 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(output, &out_info);
Georgios Pinitas3faea252017-10-30 14:13:50 +000073 }
74
Georgios Pinitas631c41a2017-12-06 11:53:03 +000075 return Status{};
Georgios Pinitas3faea252017-10-30 14:13:50 +000076}
77
Georgios Pinitas631c41a2017-12-06 11:53:03 +000078std::tuple<Status, Window, CLPoolingConfig> validate_and_configure_window(ITensorInfo *input, ITensorInfo *output, const PoolingLayerInfo &pool_info)
Giorgio Arena9f26b3e2017-11-28 14:35:00 +000079{
Michalis Spyroue74b2012018-04-18 09:49:16 +010080 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
81
82 // Get data layout
83 const DataLayout data_layout = input->data_layout();
84 const int idx_width = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
85 const int idx_height = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT);
86
Giorgio Arena9f26b3e2017-11-28 14:35:00 +000087 int pool_stride_x = 0;
88 int pool_stride_y = 0;
89 unsigned int pooled_w = 0;
90 unsigned int pooled_h = 0;
Michalis Spyroue74b2012018-04-18 09:49:16 +010091 int pool_size_x = pool_info.is_global_pooling() ? input->dimension(idx_width) : pool_info.pool_size().width;
92 int pool_size_y = pool_info.is_global_pooling() ? input->dimension(idx_height) : pool_info.pool_size().height;
Giorgio Arena9f26b3e2017-11-28 14:35:00 +000093 const PadStrideInfo pad_stride_info = pool_info.pad_stride_info();
Giorgio Arena9f26b3e2017-11-28 14:35:00 +000094 std::tie(pool_stride_x, pool_stride_y) = pad_stride_info.stride();
Michalis Spyroue74b2012018-04-18 09:49:16 +010095 const int pool_pad_right = pad_stride_info.pad_right();
96 const int pool_pad_top = pad_stride_info.pad_top();
97 const int pool_pad_left = pad_stride_info.pad_left();
98 const int pool_pad_bottom = pad_stride_info.pad_bottom();
99 BorderSize border_size = BorderSize(pool_pad_top, pool_pad_right, pool_pad_bottom, pool_pad_left);
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000100
Michalis Spyroue74b2012018-04-18 09:49:16 +0100101 auto_init(input, output, pool_info);
102 pooled_w = output->tensor_shape()[idx_width];
103 pooled_h = output->tensor_shape()[idx_height];
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000104
Michalis Spyroue74b2012018-04-18 09:49:16 +0100105 const DataType data_type = input->data_type();
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000106
Michalis Spyroue74b2012018-04-18 09:49:16 +0100107 const int input_width = input->dimension(idx_width);
108 const int input_height = input->dimension(idx_height);
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000109
Michalis Spyroue74b2012018-04-18 09:49:16 +0100110 unsigned int num_elems_processed_per_iteration = 0;
111 bool window_changed = false;
112 Window win{};
113 switch(data_layout)
114 {
115 case DataLayout::NCHW:
116 {
117 // Change the number of elements processed per iteration
118 // for pooling 3x3 with stride less equal than 3
119 const bool can_optimize = (pool_size_x == 3) && (pool_size_y == 3) && (pool_stride_x <= 3) && !is_data_type_quantized(data_type);
120 num_elems_processed_per_iteration = can_optimize ? 4 : 1;
121 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 +0000122
Michalis Spyroue74b2012018-04-18 09:49:16 +0100123 // Number of iterations in X dimension
124 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 +0000125
Michalis Spyroue74b2012018-04-18 09:49:16 +0100126 // Upper limit for the number of right/bottom border elements that are accessed
127 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;
128 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 +0000129
Michalis Spyroue74b2012018-04-18 09:49:16 +0100130 border_size.right = std::max(upper_bound_w, pool_pad_right);
131 border_size.bottom = std::max(upper_bound_h, pool_pad_bottom);
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000132
Michalis Spyroue74b2012018-04-18 09:49:16 +0100133 win = calculate_max_window(*output, Steps(num_elems_processed_per_iteration));
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000134
Michalis Spyroue74b2012018-04-18 09:49:16 +0100135 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 +0100136 pool_stride_x, pool_stride_y);
Michalis Spyroue74b2012018-04-18 09:49:16 +0100137 AccessWindowHorizontal output_access(output, 0, num_elems_processed_per_iteration);
138 window_changed = update_window_and_padding(win, input_access, output_access);
139 output_access.set_valid_region(win, ValidRegion(Coordinates(), output->tensor_shape()));
140 break;
141 }
142 case DataLayout::NHWC:
143 {
144 num_elems_processed_per_iteration = 8;
145 win = calculate_max_window(*output, Steps(num_elems_processed_per_iteration));
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000146
Georgios Pinitase2220552018-07-20 13:23:44 +0100147 AccessWindowStatic input_access(input,
148 0, -1,
149 ceil_to_multiple(input->dimension(0), num_elems_processed_per_iteration), input->dimension(1));
Michalis Spyroue74b2012018-04-18 09:49:16 +0100150 AccessWindowHorizontal output_access(output, 0, num_elems_processed_per_iteration);
151 window_changed = update_window_and_padding(win, input_access, output_access);
152 output_access.set_valid_region(win, ValidRegion(Coordinates(), output->tensor_shape()));
153 break;
154 }
155 default:
156 ARM_COMPUTE_ERROR("Not implemented");
157 }
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000158
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000159 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000160 return std::make_tuple(err, win, CLPoolingConfig(num_elems_processed_per_iteration, border_size));
161}
162} // namespace
163
164CLPoolingLayerKernel::CLPoolingLayerKernel()
Georgios Pinitas14d9d982019-12-13 12:33:09 +0000165 : _input(nullptr), _output(nullptr), _pool_info(), _data_layout(DataLayout::UNKNOWN), _border_size(0), _num_elems_processed_per_iteration(1)
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000166{
167}
168
169BorderSize CLPoolingLayerKernel::border_size() const
170{
171 return _border_size;
172}
173
174void CLPoolingLayerKernel::configure(const ICLTensor *input, ICLTensor *output, const PoolingLayerInfo &pool_info)
175{
Michalis Spyroue74b2012018-04-18 09:49:16 +0100176 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
177
Georgios Pinitas14d9d982019-12-13 12:33:09 +0000178 // Set instance variables
179 _input = input;
180 _output = output;
181 _pool_info = pool_info;
182 _data_layout = input->info()->data_layout();
183
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000184 int pool_stride_x = 0;
185 int pool_stride_y = 0;
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000186 const PoolingType pool_type = pool_info.pool_type();
Georgios Pinitas14d9d982019-12-13 12:33:09 +0000187 const int idx_width = get_data_layout_dimension_index(_data_layout, DataLayoutDimension::WIDTH);
188 const int idx_height = get_data_layout_dimension_index(_data_layout, DataLayoutDimension::HEIGHT);
189 const int idx_channel = get_data_layout_dimension_index(_data_layout, DataLayoutDimension::CHANNEL);
Michalis Spyroue74b2012018-04-18 09:49:16 +0100190 const int pool_size_x = pool_info.is_global_pooling() ? input->info()->dimension(idx_width) : pool_info.pool_size().width;
191 const int pool_size_y = pool_info.is_global_pooling() ? input->info()->dimension(idx_height) : pool_info.pool_size().height;
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000192 const PadStrideInfo pad_stride_info = pool_info.pad_stride_info();
193 const bool exclude_padding = pool_info.exclude_padding();
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000194 std::tie(pool_stride_x, pool_stride_y) = pad_stride_info.stride();
Georgios Pinitas15997872018-02-19 13:58:22 +0000195 const int pool_pad_top = pad_stride_info.pad_top();
196 const int pool_pad_left = pad_stride_info.pad_left();
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000197
Pablo Telloa52e4cf2019-04-01 14:55:18 +0100198 // Set build options
199 CLBuildOptions build_opts;
200
201 if(is_data_type_quantized_asymmetric(input->info()->data_type()) && input->info()->quantization_info() != output->info()->quantization_info())
202 {
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100203 const UniformQuantizationInfo iq_info = input->info()->quantization_info().uniform();
204 const UniformQuantizationInfo oq_info = output->info()->quantization_info().uniform();
205
206 build_opts.add_option("-DOFFSET_IN1=" + float_to_string_with_full_precision(iq_info.offset));
207 build_opts.add_option("-DOFFSET_OUT=" + float_to_string_with_full_precision(oq_info.offset));
208 build_opts.add_option("-DSCALE_IN1=" + float_to_string_with_full_precision(iq_info.scale));
209 build_opts.add_option("-DSCALE_OUT=" + float_to_string_with_full_precision(oq_info.scale));
Pablo Telloa52e4cf2019-04-01 14:55:18 +0100210 }
211
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000212 // Check output dimensions
Michalis Spyroue74b2012018-04-18 09:49:16 +0100213 auto_init(input->info(), output->info(), pool_info);
Giorgio Arenaf6a43c52017-12-01 12:16:25 +0000214 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), output->info(), pool_info));
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000215
Georgios Pinitas17812ba2018-06-04 19:27:13 +0100216 const DataType data_type = input->info()->data_type();
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000217
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000218 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(data_type));
219 build_opts.add_option("-DPOOL_" + string_from_pooling_type(pool_type));
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000220 build_opts.add_option("-DSTRIDE_X=" + support::cpp11::to_string(pool_stride_x));
Michalis Spyroue74b2012018-04-18 09:49:16 +0100221 build_opts.add_option("-DSTRIDE_Y=" + support::cpp11::to_string(pool_stride_y));
222 build_opts.add_option("-DPAD_X=" + support::cpp11::to_string(pool_pad_left));
223 build_opts.add_option("-DPAD_Y=" + support::cpp11::to_string(pool_pad_top));
224 build_opts.add_option("-DPOOL_SIZE_X=" + support::cpp11::to_string(pool_size_x));
225 build_opts.add_option("-DPOOL_SIZE_Y=" + support::cpp11::to_string(pool_size_y));
Pablo Telloa52e4cf2019-04-01 14:55:18 +0100226
Michele Di Giorgiocbbed282019-12-20 13:26:08 +0000227 // Set the initial value for the pooling operation accordingly with the data type
228 if(pool_type == PoolingType::MAX)
229 {
230 if(is_data_type_quantized(data_type))
231 {
232 PixelValue type_min{};
233 std::tie(type_min, std::ignore) = get_min_max(data_type);
234 build_opts.add_option("-DINITIAL_VALUE=" + support::cpp11::to_string(type_min.get<int32_t>()));
235 }
236 else
237 {
238 build_opts.add_option("-DINITIAL_VALUE=" + float_to_string_with_full_precision(std::numeric_limits<float>::lowest()));
239 }
240 }
241 else
242 {
243 // Pool AVG and Pool L2 initial value
244 build_opts.add_option("-DINITIAL_VALUE=0");
245 }
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000246
Sang-Hoon Park2aa7fd02019-09-18 13:39:00 +0100247 const auto use_fp_mixed_precision = (data_type == DataType::F16) && pool_info.fp_mixed_precision();
248 const auto use_wider_accumulator = use_fp_mixed_precision && (pool_type != PoolingType::MAX);
249 const auto acc_data_type = get_cl_type_from_data_type(use_wider_accumulator ? DataType::F32 : data_type);
250 build_opts.add_option("-DACC_DATA_TYPE=" + acc_data_type);
251 build_opts.add_option_if(use_wider_accumulator, "-DFP_MIXED_PRECISION");
252
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000253 // Create kernel
Georgios Pinitas14d9d982019-12-13 12:33:09 +0000254 switch(_data_layout)
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000255 {
Michalis Spyroue74b2012018-04-18 09:49:16 +0100256 case DataLayout::NCHW:
257 {
258 build_opts.add_option("-DMAX_WIDTH=" + support::cpp11::to_string(input->info()->dimension(idx_width) + (exclude_padding ? 0 : pool_pad_left)));
259 build_opts.add_option("-DMAX_HEIGHT=" + support::cpp11::to_string(input->info()->dimension(idx_height) + (exclude_padding ? 0 : pool_pad_top)));
260 if(pool_type != PoolingType::MAX)
261 {
262 build_opts.add_option_if(exclude_padding, "-DEXCLUDE_PADDING");
263 }
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000264
Michalis Spyroue74b2012018-04-18 09:49:16 +0100265 if((pool_size_x == 3) && (pool_size_y == 3) && !is_data_type_quantized_asymmetric(data_type))
266 {
267 // Check if we have pool3x3 with stride_x less equal than 3. In these cases, run an optimized OpenCL kernel where
268 // each thread computes 4 output elements
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +0100269 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 +0000270
Michalis Spyroue74b2012018-04-18 09:49:16 +0100271 std::string kernel_name = ((is_pool3x3_stride_le3) ? "pooling_layer_optimized_" : "pooling_layer_")
272 + support::cpp11::to_string(pool_size_x);
273 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel(kernel_name, build_opts.options()));
274 }
275 else // Run general case
276 {
277 std::string kernel_name = is_data_type_quantized_asymmetric(data_type) ? "pooling_layer_MxN_quantized_nchw" : "pooling_layer_MxN_nchw";
278 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel(kernel_name, build_opts.options()));
279 }
280 break;
281 }
282 case DataLayout::NHWC:
283 {
284 build_opts.add_option_if(exclude_padding, "-DEXCLUDE_PADDING");
285 build_opts.add_option("-DMAX_WIDTH=" + support::cpp11::to_string(input->info()->dimension(idx_width)));
286 build_opts.add_option("-DMAX_HEIGHT=" + support::cpp11::to_string(input->info()->dimension(idx_height)));
Georgios Pinitas89d71732018-10-29 20:07:15 +0000287 build_opts.add_option_if(output->info()->tensor_shape().total_size_upper(3) > 1,
288 "-DDST_DEPTH=" + support::cpp11::to_string(output->info()->dimension(idx_height)));
Michalis Spyroue74b2012018-04-18 09:49:16 +0100289 std::string kernel_name = is_data_type_quantized_asymmetric(data_type) ? "pooling_layer_MxN_quantized_nhwc" : "pooling_layer_MxN_nhwc";
290 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel(kernel_name, build_opts.options()));
291 break;
292 }
293 default:
294 ARM_COMPUTE_ERROR("Not implemented");
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000295 }
296
297 // Configure kernel window
298 auto win_config = validate_and_configure_window(input->info(), output->info(), pool_info);
299
300 ARM_COMPUTE_ERROR_THROW_ON(std::get<0>(win_config));
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100301 ICLKernel::configure_internal(std::get<1>(win_config));
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000302
Georgios Pinitas14d9d982019-12-13 12:33:09 +0000303 if(_data_layout == DataLayout::NCHW)
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000304 {
Michalis Spyroue74b2012018-04-18 09:49:16 +0100305 CLPoolingConfig pooling_config = std::get<2>(win_config);
306 _num_elems_processed_per_iteration = pooling_config.first;
307 _border_size = pooling_config.second;
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000308 }
Michalis Spyroue74b2012018-04-18 09:49:16 +0100309 else
310 {
311 _border_size = BorderSize(1, 0, 0, 0);
312 _num_elems_processed_per_iteration = 8;
313 }
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000314
315 // Set config_id for enabling LWS tuning
316 _config_id = "pooling_layer_";
317 _config_id += lower_string(string_from_data_type(data_type));
318 _config_id += "_";
Georgios Pinitas14d9d982019-12-13 12:33:09 +0000319 _config_id += lower_string(string_from_data_layout(_data_layout));
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000320 _config_id += "_";
Michalis Spyroue74b2012018-04-18 09:49:16 +0100321 _config_id += support::cpp11::to_string(output->info()->dimension(idx_width));
322 _config_id += "_";
323 _config_id += support::cpp11::to_string(output->info()->dimension(idx_height));
324 _config_id += "_";
325 _config_id += support::cpp11::to_string(output->info()->dimension(idx_channel));
Giorgio Arena00b93f52018-06-28 17:18:50 +0100326 _config_id += "_";
327 _config_id += lower_string(string_from_data_layout(input->info()->data_layout()));
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000328}
329
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000330Status CLPoolingLayerKernel::validate(const ITensorInfo *input, const ITensorInfo *output, const PoolingLayerInfo &pool_info)
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000331{
332 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output, pool_info));
333 ARM_COMPUTE_RETURN_ON_ERROR(std::get<0>(validate_and_configure_window(input->clone().get(), output->clone().get(), pool_info)));
334
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000335 return Status{};
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000336}
337
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100338void CLPoolingLayerKernel::run(const Window &window, cl::CommandQueue &queue)
339{
340 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
341 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IKernel::window(), window);
342
Georgios Pinitas15997872018-02-19 13:58:22 +0000343 unsigned int pool_stride_x = 0;
344 unsigned int pool_stride_y = 0;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100345 std::tie(pool_stride_x, pool_stride_y) = _pool_info.pad_stride_info().stride();
346
Georgios Pinitas89d71732018-10-29 20:07:15 +0000347 // Collapse window
348 Window window_collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
349
Georgios Pinitas14d9d982019-12-13 12:33:09 +0000350 switch(_data_layout)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100351 {
Michalis Spyroue74b2012018-04-18 09:49:16 +0100352 case DataLayout::NCHW:
353 {
Georgios Pinitas89d71732018-10-29 20:07:15 +0000354 Window slice = window_collapsed.first_slice_window_3D();
Michalis Spyroue74b2012018-04-18 09:49:16 +0100355 do
356 {
357 // Upsample input by pool size
358 Window in_slice(slice);
359 in_slice.set(Window::DimX, Window::Dimension(in_slice.x().start() - _pool_info.pad_stride_info().pad_left(),
360 (in_slice.x().end() - _pool_info.pad_stride_info().pad_left()) * pool_stride_x,
361 pool_stride_x * _num_elems_processed_per_iteration));
362 in_slice.set(Window::DimY, Window::Dimension(in_slice.y().start() - _pool_info.pad_stride_info().pad_top(),
363 (in_slice.y().end() - _pool_info.pad_stride_info().pad_top()) * pool_stride_y,
364 pool_stride_y));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100365
Michalis Spyroue74b2012018-04-18 09:49:16 +0100366 // Set inputs
367 unsigned int idx = 0;
368 add_3D_tensor_argument(idx, _input, in_slice);
369 add_3D_tensor_argument(idx, _output, slice);
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100370 enqueue(queue, *this, slice, lws_hint());
Michalis Spyroue74b2012018-04-18 09:49:16 +0100371 }
372 while(window_collapsed.slide_window_slice_3D(slice));
373 break;
374 }
375 case DataLayout::NHWC:
376 {
Georgios Pinitas89d71732018-10-29 20:07:15 +0000377 const size_t total_batches = _output->info()->tensor_shape().total_size_upper(3);
Michalis Spyroue74b2012018-04-18 09:49:16 +0100378
Georgios Pinitas89d71732018-10-29 20:07:15 +0000379 Window slice = window_collapsed.first_slice_window_4D();
380 Window in_slice = window_collapsed.first_slice_window_4D();
Michalis Spyroue74b2012018-04-18 09:49:16 +0100381 in_slice.set(Window::DimX, Window::Dimension(0, _input->info()->dimension(0), _num_elems_processed_per_iteration));
382 in_slice.set(Window::DimY, Window::Dimension(0, _input->info()->dimension(1), pool_stride_x));
383 in_slice.set(Window::DimZ, Window::Dimension(0, _input->info()->dimension(2), pool_stride_y));
Georgios Pinitas89d71732018-10-29 20:07:15 +0000384 in_slice.set(3, Window::Dimension(0, total_batches, 1));
Michalis Spyroue74b2012018-04-18 09:49:16 +0100385 do
386 {
387 // Set inputs
388 unsigned int idx = 0;
Georgios Pinitas89d71732018-10-29 20:07:15 +0000389 add_4D_tensor_argument(idx, _input, in_slice);
390 add_4D_tensor_argument(idx, _output, slice);
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100391 enqueue(queue, *this, slice, lws_hint());
Michalis Spyroue74b2012018-04-18 09:49:16 +0100392 }
Georgios Pinitas89d71732018-10-29 20:07:15 +0000393 while(window.slide_window_slice_4D(slice) && window.slide_window_slice_4D(in_slice));
Michalis Spyroue74b2012018-04-18 09:49:16 +0100394 break;
395 }
396 default:
397 ARM_COMPUTE_ERROR("Not implemented");
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100398 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100399}
Michele Di Giorgiocbbed282019-12-20 13:26:08 +0000400} // namespace arm_compute