blob: 79843cd2996ccd8c911c1b4c95dffe59d0073fdf [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * 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 */
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010024#include "src/core/CL/kernels/CLPoolingLayerKernel.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010025
Anthony Barbier6ff3b192017-09-04 18:44:23 +010026#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"
30#include "arm_compute/core/Helpers.h"
31#include "arm_compute/core/TensorInfo.h"
32#include "arm_compute/core/Utils.h"
Michalis Spyroue74b2012018-04-18 09:49:16 +010033#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010034#include "src/core/AccessWindowStatic.h"
35#include "src/core/CL/CLValidate.h"
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010036#include "src/core/CL/ICLKernel.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010037#include "src/core/helpers/AutoConfiguration.h"
38#include "src/core/helpers/WindowHelpers.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000039#include "support/StringSupport.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010040
41#include <set>
42#include <string>
43#include <tuple>
44
Michele Di Giorgiocbbed282019-12-20 13:26:08 +000045namespace arm_compute
46{
Michalis Spyroue74b2012018-04-18 09:49:16 +010047using namespace arm_compute::misc::shape_calculator;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010048
Giorgio Arena9f26b3e2017-11-28 14:35:00 +000049namespace
Anthony Barbier6ff3b192017-09-04 18:44:23 +010050{
Giorgio Arena9f26b3e2017-11-28 14:35:00 +000051// Internal window config info
52using CLPoolingConfig = std::pair<unsigned int, BorderSize>; //num_elems_processed_per_iteration, border_size
53
Gian Marco Iodice7333e1f2020-10-08 10:25:49 +010054void auto_init(const ITensorInfo *input, ITensorInfo *output, ITensorInfo *indices, PoolingLayerInfo pool_info)
Giorgio Arena9f26b3e2017-11-28 14:35:00 +000055{
Michalis Spyroue74b2012018-04-18 09:49:16 +010056 TensorShape out_shape = compute_pool_shape(*input, pool_info);
57 auto_init_if_empty(*output, input->clone()->set_tensor_shape(out_shape));
Gian Marco Iodice7333e1f2020-10-08 10:25:49 +010058 if(indices)
59 {
60 auto_init_if_empty(*indices, input->clone()->set_tensor_shape(out_shape).set_data_type(DataType::U32));
61 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +010062}
63
morgolockcc1f6c92020-03-24 09:26:48 +000064Status validate_arguments(const ITensorInfo *input, const ITensorInfo *output, const PoolingLayerInfo &pool_info, const ITensorInfo *indices)
Georgios Pinitas3faea252017-10-30 14:13:50 +000065{
66 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
Vidhya Sudhan Loganathanf1f49062018-05-25 13:21:26 +010067 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input);
Michele Di Giorgiocbbed282019-12-20 13:26:08 +000068 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 +000069 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 +000070 "Unsupported combination of parameters!");
Gian Marco Iodice7333e1f2020-10-08 10:25:49 +010071
Sheri Zhang801bbcb2020-08-03 20:11:56 +010072 // Check indices
73 if(indices)
74 {
Sheri Zhang801bbcb2020-08-03 20:11:56 +010075 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::F16, DataType::F32);
76 ARM_COMPUTE_RETURN_ERROR_ON_MSG(pool_info.pool_type != PoolingType::MAX, "Pooling indices only supported for MAX pooling method");
77 ARM_COMPUTE_RETURN_ERROR_ON_MSG((pool_info.pool_size != Size2D(2, 2)), "Pooling indices only supported for pool size 2x2");
Gian Marco Iodice7333e1f2020-10-08 10:25:49 +010078
79 if(indices->total_size() != 0)
80 {
81 TensorInfo idx_info(TensorInfo(compute_pool_shape(*input, pool_info), 1, DataType::U32));
82 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(indices, &idx_info);
83 }
Sheri Zhang801bbcb2020-08-03 20:11:56 +010084 }
Georgios Pinitas3faea252017-10-30 14:13:50 +000085
Georgios Pinitas3faea252017-10-30 14:13:50 +000086 // Checks performed when output is configured
87 if(output->total_size() != 0)
88 {
89 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
Michalis Spyroue74b2012018-04-18 09:49:16 +010090 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_LAYOUT(input, output);
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010091 TensorInfo out_info(TensorInfo(compute_pool_shape(*input, pool_info), 1, output->data_type()));
Michalis Spyroue74b2012018-04-18 09:49:16 +010092 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(output, &out_info);
Georgios Pinitas3faea252017-10-30 14:13:50 +000093 }
94
Georgios Pinitas631c41a2017-12-06 11:53:03 +000095 return Status{};
Georgios Pinitas3faea252017-10-30 14:13:50 +000096}
97
Sheri Zhang801bbcb2020-08-03 20:11:56 +010098std::tuple<Status, Window, CLPoolingConfig> validate_and_configure_window(ITensorInfo *input, ITensorInfo *output, const PoolingLayerInfo &pool_info, ITensorInfo *indices = nullptr)
Giorgio Arena9f26b3e2017-11-28 14:35:00 +000099{
Michalis Spyroue74b2012018-04-18 09:49:16 +0100100 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
101
102 // Get data layout
Sang-Hoon Park11fedda2020-01-15 14:44:04 +0000103 const DataLayout data_layout = pool_info.data_layout == DataLayout::UNKNOWN ? input->data_layout() : pool_info.data_layout;
Michalis Spyroue74b2012018-04-18 09:49:16 +0100104 const int idx_width = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
105 const int idx_height = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT);
106
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000107 int pool_stride_x = 0;
108 int pool_stride_y = 0;
109 unsigned int pooled_w = 0;
110 unsigned int pooled_h = 0;
Sang-Hoon Park0cb3da62020-01-15 12:39:56 +0000111 int pool_size_x = pool_info.is_global_pooling ? input->dimension(idx_width) : pool_info.pool_size.width;
112 int pool_size_y = pool_info.is_global_pooling ? input->dimension(idx_height) : pool_info.pool_size.height;
113 const PadStrideInfo pad_stride_info = pool_info.pad_stride_info;
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000114 std::tie(pool_stride_x, pool_stride_y) = pad_stride_info.stride();
Michalis Spyroue74b2012018-04-18 09:49:16 +0100115 const int pool_pad_right = pad_stride_info.pad_right();
116 const int pool_pad_top = pad_stride_info.pad_top();
117 const int pool_pad_left = pad_stride_info.pad_left();
118 const int pool_pad_bottom = pad_stride_info.pad_bottom();
Gian Marco Iodice7333e1f2020-10-08 10:25:49 +0100119 BorderSize border_size = BorderSize();
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000120
Gian Marco Iodice7333e1f2020-10-08 10:25:49 +0100121 auto_init(input, output, indices, pool_info);
Michalis Spyroue74b2012018-04-18 09:49:16 +0100122 pooled_w = output->tensor_shape()[idx_width];
123 pooled_h = output->tensor_shape()[idx_height];
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000124
Michalis Spyroue74b2012018-04-18 09:49:16 +0100125 const DataType data_type = input->data_type();
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000126
Michalis Spyroue74b2012018-04-18 09:49:16 +0100127 const int input_width = input->dimension(idx_width);
128 const int input_height = input->dimension(idx_height);
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000129
Michalis Spyroue74b2012018-04-18 09:49:16 +0100130 unsigned int num_elems_processed_per_iteration = 0;
131 bool window_changed = false;
132 Window win{};
133 switch(data_layout)
134 {
135 case DataLayout::NCHW:
136 {
Gian Marco Iodice7333e1f2020-10-08 10:25:49 +0100137 // Initialize border size
138 border_size = BorderSize(pool_pad_top, pool_pad_right, pool_pad_bottom, pool_pad_left);
Michalis Spyroue74b2012018-04-18 09:49:16 +0100139 // Change the number of elements processed per iteration
140 // for pooling 3x3 with stride less equal than 3
141 const bool can_optimize = (pool_size_x == 3) && (pool_size_y == 3) && (pool_stride_x <= 3) && !is_data_type_quantized(data_type);
142 num_elems_processed_per_iteration = can_optimize ? 4 : 1;
143 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 +0000144
Michalis Spyroue74b2012018-04-18 09:49:16 +0100145 // Number of iterations in X dimension
146 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 +0000147
Michalis Spyroue74b2012018-04-18 09:49:16 +0100148 // Upper limit for the number of right/bottom border elements that are accessed
149 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;
150 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 +0000151
Michalis Spyroue74b2012018-04-18 09:49:16 +0100152 border_size.right = std::max(upper_bound_w, pool_pad_right);
153 border_size.bottom = std::max(upper_bound_h, pool_pad_bottom);
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000154
Michalis Spyroue74b2012018-04-18 09:49:16 +0100155 win = calculate_max_window(*output, Steps(num_elems_processed_per_iteration));
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000156
Michalis Spyroue74b2012018-04-18 09:49:16 +0100157 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 +0100158 pool_stride_x, pool_stride_y);
Michalis Spyroue74b2012018-04-18 09:49:16 +0100159 AccessWindowHorizontal output_access(output, 0, num_elems_processed_per_iteration);
Sheri Zhang801bbcb2020-08-03 20:11:56 +0100160
161 // Update indices window
162 if(indices)
163 {
164 AccessWindowHorizontal indices_access(indices, 0, num_elems_processed_per_iteration);
165 window_changed = update_window_and_padding(win, input_access, output_access, indices_access);
166 indices_access.set_valid_region(win, ValidRegion(Coordinates(), indices->tensor_shape()));
167 }
168 else
169 {
170 window_changed = update_window_and_padding(win, input_access, output_access);
171 }
172
Michalis Spyroue74b2012018-04-18 09:49:16 +0100173 output_access.set_valid_region(win, ValidRegion(Coordinates(), output->tensor_shape()));
174 break;
175 }
176 case DataLayout::NHWC:
177 {
Gian Marco Iodice7333e1f2020-10-08 10:25:49 +0100178 // Initialize border size
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +0100179 border_size = BorderSize();
Gian Marco Iodice7333e1f2020-10-08 10:25:49 +0100180 num_elems_processed_per_iteration = adjust_vec_size(4, output->dimension(0));
Michalis Spyroue74b2012018-04-18 09:49:16 +0100181 win = calculate_max_window(*output, Steps(num_elems_processed_per_iteration));
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000182
Gian Marco Iodice7333e1f2020-10-08 10:25:49 +0100183 if(indices != nullptr)
Sheri Zhang801bbcb2020-08-03 20:11:56 +0100184 {
Gian Marco Iodice7333e1f2020-10-08 10:25:49 +0100185 indices->set_valid_region(ValidRegion(Coordinates(), indices->tensor_shape()));
Sheri Zhang801bbcb2020-08-03 20:11:56 +0100186 }
187
Gian Marco Iodice7333e1f2020-10-08 10:25:49 +0100188 output->set_valid_region(ValidRegion(Coordinates(), output->tensor_shape()));
Michalis Spyroue74b2012018-04-18 09:49:16 +0100189 break;
190 }
191 default:
192 ARM_COMPUTE_ERROR("Not implemented");
193 }
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000194
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000195 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000196 return std::make_tuple(err, win, CLPoolingConfig(num_elems_processed_per_iteration, border_size));
197}
198} // namespace
199
200CLPoolingLayerKernel::CLPoolingLayerKernel()
morgolockcc1f6c92020-03-24 09:26:48 +0000201 : _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 +0000202{
203}
204
205BorderSize CLPoolingLayerKernel::border_size() const
206{
207 return _border_size;
208}
209
morgolockcc1f6c92020-03-24 09:26:48 +0000210void CLPoolingLayerKernel::configure(const ICLTensor *input, ICLTensor *output, const PoolingLayerInfo &pool_info, ICLTensor *indices)
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000211{
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100212 configure(CLKernelLibrary::get().get_compile_context(), input, output, pool_info, indices);
213}
214
Manuel Bottini679fc962020-04-21 16:08:53 +0100215void CLPoolingLayerKernel::configure(const CLCompileContext &compile_context, const ICLTensor *input, ICLTensor *output, const PoolingLayerInfo &pool_info, ICLTensor *indices)
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100216{
Michalis Spyroue74b2012018-04-18 09:49:16 +0100217 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
218
SiCong Li04a07062020-11-17 14:09:01 +0000219 auto padding_info = get_padding_info({ input, output, indices });
220
Georgios Pinitas14d9d982019-12-13 12:33:09 +0000221 // Set instance variables
morgolockcc1f6c92020-03-24 09:26:48 +0000222 _input = input;
223 _output = output;
224 _pool_info = pool_info;
225 _data_layout = pool_info.data_layout == DataLayout::UNKNOWN ? input->info()->data_layout() : pool_info.data_layout;
226 _indices = indices;
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000227 int pool_stride_x = 0;
228 int pool_stride_y = 0;
Sang-Hoon Park0cb3da62020-01-15 12:39:56 +0000229 const PoolingType pool_type = pool_info.pool_type;
Georgios Pinitas14d9d982019-12-13 12:33:09 +0000230 const int idx_width = get_data_layout_dimension_index(_data_layout, DataLayoutDimension::WIDTH);
231 const int idx_height = get_data_layout_dimension_index(_data_layout, DataLayoutDimension::HEIGHT);
232 const int idx_channel = get_data_layout_dimension_index(_data_layout, DataLayoutDimension::CHANNEL);
Gian Marco Iodice7333e1f2020-10-08 10:25:49 +0100233 const int idx_batch_size = get_data_layout_dimension_index(_data_layout, DataLayoutDimension::BATCHES);
Sang-Hoon Park0cb3da62020-01-15 12:39:56 +0000234 const int pool_size_x = pool_info.is_global_pooling ? input->info()->dimension(idx_width) : pool_info.pool_size.width;
235 const int pool_size_y = pool_info.is_global_pooling ? input->info()->dimension(idx_height) : pool_info.pool_size.height;
236 const PadStrideInfo pad_stride_info = pool_info.pad_stride_info;
237 const bool exclude_padding = pool_info.exclude_padding;
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000238 std::tie(pool_stride_x, pool_stride_y) = pad_stride_info.stride();
Georgios Pinitas15997872018-02-19 13:58:22 +0000239 const int pool_pad_top = pad_stride_info.pad_top();
240 const int pool_pad_left = pad_stride_info.pad_left();
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000241
Pablo Telloa52e4cf2019-04-01 14:55:18 +0100242 // Set build options
243 CLBuildOptions build_opts;
Sheri Zhang801bbcb2020-08-03 20:11:56 +0100244 const DataType data_type = input->info()->data_type();
Pablo Telloa52e4cf2019-04-01 14:55:18 +0100245
Sheri Zhang801bbcb2020-08-03 20:11:56 +0100246 // Configure kernel window
247 auto win_config = validate_and_configure_window(input->info(), output->info(), pool_info, (indices ? indices->info() : nullptr));
248
249 ARM_COMPUTE_ERROR_THROW_ON(std::get<0>(win_config));
250 ICLKernel::configure_internal(std::get<1>(win_config));
251
Gian Marco Iodice7333e1f2020-10-08 10:25:49 +0100252 CLPoolingConfig pooling_config = std::get<2>(win_config);
253 _num_elems_processed_per_iteration = pooling_config.first;
254 _border_size = pooling_config.second;
255
256 build_opts.add_option("-DVEC_SIZE=" + support::cpp11::to_string(_num_elems_processed_per_iteration));
Sheri Zhang801bbcb2020-08-03 20:11:56 +0100257
258 // Tensor paddings are used to calculate the indicies for MAX pooling
259 if(pool_info.pool_size == Size2D(2, 2) && pool_type == PoolingType::MAX && _indices && is_data_type_float(data_type))
260 {
261 build_opts.add_option("-DPAD_TENSOR_LEFT=" + support::cpp11::to_string(input->info()->padding().left));
262 build_opts.add_option("-DPAD_TENSOR_RIGHT=" + support::cpp11::to_string(input->info()->padding().right));
263 build_opts.add_option("-DPAD_TENSOR_TOP=" + support::cpp11::to_string(input->info()->padding().top));
264 build_opts.add_option("-DPAD_TENSOR_BOTTOM=" + support::cpp11::to_string(input->info()->padding().bottom));
265 build_opts.add_option("-DTENSOR_CHANNEL=" + support::cpp11::to_string(input->info()->dimension(idx_channel)));
266 build_opts.add_option("-DTENSOR_WIDTH=" + support::cpp11::to_string(input->info()->dimension(idx_width)));
267 build_opts.add_option("-DTENSOR_HEIGHT=" + support::cpp11::to_string(input->info()->dimension(idx_height)));
268 }
269
270 if(is_data_type_quantized_asymmetric(data_type) && input->info()->quantization_info() != output->info()->quantization_info())
Pablo Telloa52e4cf2019-04-01 14:55:18 +0100271 {
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100272 const UniformQuantizationInfo iq_info = input->info()->quantization_info().uniform();
273 const UniformQuantizationInfo oq_info = output->info()->quantization_info().uniform();
274
275 build_opts.add_option("-DOFFSET_IN1=" + float_to_string_with_full_precision(iq_info.offset));
276 build_opts.add_option("-DOFFSET_OUT=" + float_to_string_with_full_precision(oq_info.offset));
277 build_opts.add_option("-DSCALE_IN1=" + float_to_string_with_full_precision(iq_info.scale));
278 build_opts.add_option("-DSCALE_OUT=" + float_to_string_with_full_precision(oq_info.scale));
Pablo Telloa52e4cf2019-04-01 14:55:18 +0100279 }
280
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000281 // Check output dimensions
Gian Marco Iodice7333e1f2020-10-08 10:25:49 +0100282 auto_init(input->info(), output->info(), indices ? indices->info() : nullptr, pool_info);
283
morgolockcc1f6c92020-03-24 09:26:48 +0000284 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), output->info(), pool_info, (indices) ? indices->info() : nullptr));
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000285
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000286 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(data_type));
287 build_opts.add_option("-DPOOL_" + string_from_pooling_type(pool_type));
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000288 build_opts.add_option("-DSTRIDE_X=" + support::cpp11::to_string(pool_stride_x));
Michalis Spyroue74b2012018-04-18 09:49:16 +0100289 build_opts.add_option("-DSTRIDE_Y=" + support::cpp11::to_string(pool_stride_y));
290 build_opts.add_option("-DPAD_X=" + support::cpp11::to_string(pool_pad_left));
291 build_opts.add_option("-DPAD_Y=" + support::cpp11::to_string(pool_pad_top));
292 build_opts.add_option("-DPOOL_SIZE_X=" + support::cpp11::to_string(pool_size_x));
293 build_opts.add_option("-DPOOL_SIZE_Y=" + support::cpp11::to_string(pool_size_y));
Pablo Telloa52e4cf2019-04-01 14:55:18 +0100294
Michele Di Giorgiocbbed282019-12-20 13:26:08 +0000295 // Set the initial value for the pooling operation accordingly with the data type
296 if(pool_type == PoolingType::MAX)
297 {
298 if(is_data_type_quantized(data_type))
299 {
300 PixelValue type_min{};
301 std::tie(type_min, std::ignore) = get_min_max(data_type);
302 build_opts.add_option("-DINITIAL_VALUE=" + support::cpp11::to_string(type_min.get<int32_t>()));
303 }
304 else
305 {
306 build_opts.add_option("-DINITIAL_VALUE=" + float_to_string_with_full_precision(std::numeric_limits<float>::lowest()));
307 }
308 }
309 else
310 {
311 // Pool AVG and Pool L2 initial value
312 build_opts.add_option("-DINITIAL_VALUE=0");
313 }
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000314
Gian Marco Iodice7333e1f2020-10-08 10:25:49 +0100315 build_opts.add_option("-DMAX_WIDTH=" + support::cpp11::to_string(input->info()->dimension(idx_width) + (exclude_padding ? 0 : pool_pad_left)));
316 build_opts.add_option("-DMAX_HEIGHT=" + support::cpp11::to_string(input->info()->dimension(idx_height) + (exclude_padding ? 0 : pool_pad_top)));
Sang-Hoon Park2aa7fd02019-09-18 13:39:00 +0100317
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000318 // Create kernel
Georgios Pinitas14d9d982019-12-13 12:33:09 +0000319 switch(_data_layout)
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000320 {
Michalis Spyroue74b2012018-04-18 09:49:16 +0100321 case DataLayout::NCHW:
322 {
Gian Marco Iodice7333e1f2020-10-08 10:25:49 +0100323 const auto use_fp_mixed_precision = (data_type == DataType::F16) && pool_info.fp_mixed_precision;
324 const auto use_wider_accumulator = use_fp_mixed_precision && (pool_type != PoolingType::MAX);
325 const auto acc_data_type = get_cl_type_from_data_type(use_wider_accumulator ? DataType::F32 : data_type);
326 build_opts.add_option("-DACC_DATA_TYPE=" + acc_data_type);
327 build_opts.add_option_if(use_wider_accumulator, "-DFP_MIXED_PRECISION");
328
Michalis Spyroue74b2012018-04-18 09:49:16 +0100329 if(pool_type != PoolingType::MAX)
330 {
331 build_opts.add_option_if(exclude_padding, "-DEXCLUDE_PADDING");
332 }
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000333
Michalis Spyroue74b2012018-04-18 09:49:16 +0100334 if((pool_size_x == 3) && (pool_size_y == 3) && !is_data_type_quantized_asymmetric(data_type))
335 {
336 // Check if we have pool3x3 with stride_x less equal than 3. In these cases, run an optimized OpenCL kernel where
337 // each thread computes 4 output elements
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +0100338 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 +0000339
Michalis Spyroue74b2012018-04-18 09:49:16 +0100340 std::string kernel_name = ((is_pool3x3_stride_le3) ? "pooling_layer_optimized_" : "pooling_layer_")
341 + support::cpp11::to_string(pool_size_x);
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100342 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Michalis Spyroue74b2012018-04-18 09:49:16 +0100343 }
Sheri Zhang801bbcb2020-08-03 20:11:56 +0100344 else if(pool_info.pool_size == Size2D(2, 2) && pool_type == PoolingType::MAX && _indices && is_data_type_float(data_type))
345 {
346 // For max pooling with pool2x2, store indicies which will be used in max unpooling
347 if(data_type == DataType::F32)
348 {
349 std::string kernel_name = "pooling_layer_2_nchw_indices_fp32";
350 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
351 }
352 else if(data_type == DataType::F16)
353 {
354 std::string kernel_name = "pooling_layer_2_nchw_indices_fp16";
355 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
356 }
357 }
Michalis Spyroue74b2012018-04-18 09:49:16 +0100358 else // Run general case
359 {
360 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 +0100361 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Michalis Spyroue74b2012018-04-18 09:49:16 +0100362 }
363 break;
364 }
365 case DataLayout::NHWC:
366 {
Gian Marco Iodice7333e1f2020-10-08 10:25:49 +0100367 // Floating point mixed precision is support on F16 only
368 const auto use_fp_mixed_precision = (data_type == DataType::F16) && pool_info.fp_mixed_precision && pool_type != PoolingType::MAX;
Sheri Zhang801bbcb2020-08-03 20:11:56 +0100369
Gian Marco Iodice7333e1f2020-10-08 10:25:49 +0100370 // Wider accumulation is required to avoid accuracy loss
371 // Case 1: Floating point mixed precision (fp16 input data and fp32 accumulation)
372 // Cast 2: Quantized (int8/uint8 input data and int32 accumulation )
373 DataType acc_data_type = data_type;
374
375 if(use_fp_mixed_precision)
Sheri Zhang801bbcb2020-08-03 20:11:56 +0100376 {
Gian Marco Iodice7333e1f2020-10-08 10:25:49 +0100377 acc_data_type = DataType::F32;
378 }
379 else if(is_data_type_quantized(data_type) && pool_type != PoolingType::MAX)
380 {
381 acc_data_type = DataType::S32;
382 }
383
384 build_opts.add_option("-DACC_DATA_TYPE=" + get_cl_type_from_data_type(acc_data_type));
385 build_opts.add_option_if(use_fp_mixed_precision, "-DFP_MIXED_PRECISION");
386 build_opts.add_option_if(exclude_padding, "-DEXCLUDE_PADDING");
387 build_opts.add_option("-DSRC_WIDTH=" + support::cpp11::to_string(input->info()->dimension(idx_width)));
388 build_opts.add_option("-DSRC_HEIGHT=" + support::cpp11::to_string(input->info()->dimension(idx_height)));
389 build_opts.add_option("-DDST_HEIGHT=" + support::cpp11::to_string(output->info()->dimension(idx_height)));
390 build_opts.add_option("-DDST_CHANNELS=" + support::cpp11::to_string(output->info()->dimension(idx_channel)));
391 build_opts.add_option("-DDST_BATCH_SIZE=" + support::cpp11::to_string(output->info()->dimension(idx_batch_size)));
392 build_opts.add_option("-DVEC_SIZE_LEFTOVER=" + support::cpp11::to_string(input->info()->dimension(0) % _num_elems_processed_per_iteration));
393 if(pool_info.pool_size == Size2D(2, 2) && is_data_type_float(data_type))
394 {
395 build_opts.add_option_if(_indices != nullptr && pool_type == PoolingType::MAX, "-DEXTRACT_MAX_INDEX");
396
397 std::string kernel_name = "pooling_layer_2x2_nhwc";
398 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Sheri Zhang801bbcb2020-08-03 20:11:56 +0100399 }
400 else
401 {
402 std::string kernel_name = is_data_type_quantized_asymmetric(data_type) ? "pooling_layer_MxN_quantized_nhwc" : "pooling_layer_MxN_nhwc";
403 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
404 }
Michalis Spyroue74b2012018-04-18 09:49:16 +0100405 break;
406 }
407 default:
408 ARM_COMPUTE_ERROR("Not implemented");
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000409 }
410
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000411 // Set config_id for enabling LWS tuning
412 _config_id = "pooling_layer_";
413 _config_id += lower_string(string_from_data_type(data_type));
414 _config_id += "_";
Georgios Pinitas14d9d982019-12-13 12:33:09 +0000415 _config_id += lower_string(string_from_data_layout(_data_layout));
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000416 _config_id += "_";
Michalis Spyroue74b2012018-04-18 09:49:16 +0100417 _config_id += support::cpp11::to_string(output->info()->dimension(idx_width));
418 _config_id += "_";
419 _config_id += support::cpp11::to_string(output->info()->dimension(idx_height));
420 _config_id += "_";
421 _config_id += support::cpp11::to_string(output->info()->dimension(idx_channel));
Giorgio Arena00b93f52018-06-28 17:18:50 +0100422 _config_id += "_";
423 _config_id += lower_string(string_from_data_layout(input->info()->data_layout()));
SiCong Li04a07062020-11-17 14:09:01 +0000424
425 ARM_COMPUTE_ERROR_ON(input->info()->data_layout() == DataLayout::NHWC && has_padding_changed(padding_info));
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000426}
427
morgolockcc1f6c92020-03-24 09:26:48 +0000428Status CLPoolingLayerKernel::validate(const ITensorInfo *input, const ITensorInfo *output, const PoolingLayerInfo &pool_info, const ITensorInfo *indices)
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000429{
morgolockcc1f6c92020-03-24 09:26:48 +0000430 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output, pool_info, indices));
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000431 ARM_COMPUTE_RETURN_ON_ERROR(std::get<0>(validate_and_configure_window(input->clone().get(), output->clone().get(), pool_info)));
432
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000433 return Status{};
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000434}
435
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100436void CLPoolingLayerKernel::run(const Window &window, cl::CommandQueue &queue)
437{
438 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
439 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IKernel::window(), window);
440
Georgios Pinitas15997872018-02-19 13:58:22 +0000441 unsigned int pool_stride_x = 0;
442 unsigned int pool_stride_y = 0;
Sang-Hoon Park0cb3da62020-01-15 12:39:56 +0000443 std::tie(pool_stride_x, pool_stride_y) = _pool_info.pad_stride_info.stride();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100444
Georgios Pinitas89d71732018-10-29 20:07:15 +0000445 // Collapse window
446 Window window_collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
447
Georgios Pinitas14d9d982019-12-13 12:33:09 +0000448 switch(_data_layout)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100449 {
Michalis Spyroue74b2012018-04-18 09:49:16 +0100450 case DataLayout::NCHW:
451 {
Georgios Pinitas89d71732018-10-29 20:07:15 +0000452 Window slice = window_collapsed.first_slice_window_3D();
Michalis Spyroue74b2012018-04-18 09:49:16 +0100453 do
454 {
455 // Upsample input by pool size
456 Window in_slice(slice);
Sang-Hoon Park0cb3da62020-01-15 12:39:56 +0000457 in_slice.set(Window::DimX, Window::Dimension(in_slice.x().start() - _pool_info.pad_stride_info.pad_left(),
458 (in_slice.x().end() - _pool_info.pad_stride_info.pad_left()) * pool_stride_x,
Michalis Spyroue74b2012018-04-18 09:49:16 +0100459 pool_stride_x * _num_elems_processed_per_iteration));
Sang-Hoon Park0cb3da62020-01-15 12:39:56 +0000460 in_slice.set(Window::DimY, Window::Dimension(in_slice.y().start() - _pool_info.pad_stride_info.pad_top(),
461 (in_slice.y().end() - _pool_info.pad_stride_info.pad_top()) * pool_stride_y,
Michalis Spyroue74b2012018-04-18 09:49:16 +0100462 pool_stride_y));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100463
Michalis Spyroue74b2012018-04-18 09:49:16 +0100464 // Set inputs
465 unsigned int idx = 0;
466 add_3D_tensor_argument(idx, _input, in_slice);
467 add_3D_tensor_argument(idx, _output, slice);
Gian Marco Iodice7333e1f2020-10-08 10:25:49 +0100468 if(_indices && is_data_type_float(_input->info()->data_type()) && (_pool_info.pool_size == Size2D(2, 2)))
Sheri Zhang801bbcb2020-08-03 20:11:56 +0100469 {
470 add_3D_tensor_argument(idx, _indices, slice);
471 }
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100472 enqueue(queue, *this, slice, lws_hint());
Michalis Spyroue74b2012018-04-18 09:49:16 +0100473 }
474 while(window_collapsed.slide_window_slice_3D(slice));
475 break;
476 }
477 case DataLayout::NHWC:
478 {
Gian Marco Iodice7333e1f2020-10-08 10:25:49 +0100479 const size_t batch_size = _output->info()->tensor_shape().total_size_upper(3);
Michalis Spyroue74b2012018-04-18 09:49:16 +0100480
Georgios Pinitas89d71732018-10-29 20:07:15 +0000481 Window slice = window_collapsed.first_slice_window_4D();
482 Window in_slice = window_collapsed.first_slice_window_4D();
Michalis Spyroue74b2012018-04-18 09:49:16 +0100483 in_slice.set(Window::DimX, Window::Dimension(0, _input->info()->dimension(0), _num_elems_processed_per_iteration));
484 in_slice.set(Window::DimY, Window::Dimension(0, _input->info()->dimension(1), pool_stride_x));
485 in_slice.set(Window::DimZ, Window::Dimension(0, _input->info()->dimension(2), pool_stride_y));
Gian Marco Iodice7333e1f2020-10-08 10:25:49 +0100486 in_slice.set(3, Window::Dimension(0, batch_size, 1));
Michalis Spyroue74b2012018-04-18 09:49:16 +0100487 do
488 {
489 // Set inputs
490 unsigned int idx = 0;
Georgios Pinitas89d71732018-10-29 20:07:15 +0000491 add_4D_tensor_argument(idx, _input, in_slice);
492 add_4D_tensor_argument(idx, _output, slice);
Sheri Zhang801bbcb2020-08-03 20:11:56 +0100493 if(_indices && is_data_type_float(_input->info()->data_type()) && (_pool_info.pool_type == PoolingType::MAX) && (_pool_info.pool_size == Size2D(2, 2)))
494 {
495 add_4D_tensor_argument(idx, _indices, slice);
496 }
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100497 enqueue(queue, *this, slice, lws_hint());
Michalis Spyroue74b2012018-04-18 09:49:16 +0100498 }
Georgios Pinitas89d71732018-10-29 20:07:15 +0000499 while(window.slide_window_slice_4D(slice) && window.slide_window_slice_4D(in_slice));
Michalis Spyroue74b2012018-04-18 09:49:16 +0100500 break;
501 }
502 default:
503 ARM_COMPUTE_ERROR("Not implemented");
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100504 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100505}
Michele Di Giorgiocbbed282019-12-20 13:26:08 +0000506} // namespace arm_compute