blob: 905610c31fa35dc025278175b451ceb73dc84a06 [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
Georgios Pinitas14d9d982019-12-13 12:33:09 +0000219 // Set instance variables
morgolockcc1f6c92020-03-24 09:26:48 +0000220 _input = input;
221 _output = output;
222 _pool_info = pool_info;
223 _data_layout = pool_info.data_layout == DataLayout::UNKNOWN ? input->info()->data_layout() : pool_info.data_layout;
224 _indices = indices;
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000225 int pool_stride_x = 0;
226 int pool_stride_y = 0;
Sang-Hoon Park0cb3da62020-01-15 12:39:56 +0000227 const PoolingType pool_type = pool_info.pool_type;
Georgios Pinitas14d9d982019-12-13 12:33:09 +0000228 const int idx_width = get_data_layout_dimension_index(_data_layout, DataLayoutDimension::WIDTH);
229 const int idx_height = get_data_layout_dimension_index(_data_layout, DataLayoutDimension::HEIGHT);
230 const int idx_channel = get_data_layout_dimension_index(_data_layout, DataLayoutDimension::CHANNEL);
Gian Marco Iodice7333e1f2020-10-08 10:25:49 +0100231 const int idx_batch_size = get_data_layout_dimension_index(_data_layout, DataLayoutDimension::BATCHES);
Sang-Hoon Park0cb3da62020-01-15 12:39:56 +0000232 const int pool_size_x = pool_info.is_global_pooling ? input->info()->dimension(idx_width) : pool_info.pool_size.width;
233 const int pool_size_y = pool_info.is_global_pooling ? input->info()->dimension(idx_height) : pool_info.pool_size.height;
234 const PadStrideInfo pad_stride_info = pool_info.pad_stride_info;
235 const bool exclude_padding = pool_info.exclude_padding;
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000236 std::tie(pool_stride_x, pool_stride_y) = pad_stride_info.stride();
Georgios Pinitas15997872018-02-19 13:58:22 +0000237 const int pool_pad_top = pad_stride_info.pad_top();
238 const int pool_pad_left = pad_stride_info.pad_left();
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000239
Pablo Telloa52e4cf2019-04-01 14:55:18 +0100240 // Set build options
241 CLBuildOptions build_opts;
Sheri Zhang801bbcb2020-08-03 20:11:56 +0100242 const DataType data_type = input->info()->data_type();
Pablo Telloa52e4cf2019-04-01 14:55:18 +0100243
Sheri Zhang801bbcb2020-08-03 20:11:56 +0100244 // Configure kernel window
245 auto win_config = validate_and_configure_window(input->info(), output->info(), pool_info, (indices ? indices->info() : nullptr));
246
247 ARM_COMPUTE_ERROR_THROW_ON(std::get<0>(win_config));
248 ICLKernel::configure_internal(std::get<1>(win_config));
249
Gian Marco Iodice7333e1f2020-10-08 10:25:49 +0100250 CLPoolingConfig pooling_config = std::get<2>(win_config);
251 _num_elems_processed_per_iteration = pooling_config.first;
252 _border_size = pooling_config.second;
253
254 build_opts.add_option("-DVEC_SIZE=" + support::cpp11::to_string(_num_elems_processed_per_iteration));
Sheri Zhang801bbcb2020-08-03 20:11:56 +0100255
256 // Tensor paddings are used to calculate the indicies for MAX pooling
257 if(pool_info.pool_size == Size2D(2, 2) && pool_type == PoolingType::MAX && _indices && is_data_type_float(data_type))
258 {
259 build_opts.add_option("-DPAD_TENSOR_LEFT=" + support::cpp11::to_string(input->info()->padding().left));
260 build_opts.add_option("-DPAD_TENSOR_RIGHT=" + support::cpp11::to_string(input->info()->padding().right));
261 build_opts.add_option("-DPAD_TENSOR_TOP=" + support::cpp11::to_string(input->info()->padding().top));
262 build_opts.add_option("-DPAD_TENSOR_BOTTOM=" + support::cpp11::to_string(input->info()->padding().bottom));
263 build_opts.add_option("-DTENSOR_CHANNEL=" + support::cpp11::to_string(input->info()->dimension(idx_channel)));
264 build_opts.add_option("-DTENSOR_WIDTH=" + support::cpp11::to_string(input->info()->dimension(idx_width)));
265 build_opts.add_option("-DTENSOR_HEIGHT=" + support::cpp11::to_string(input->info()->dimension(idx_height)));
266 }
267
268 if(is_data_type_quantized_asymmetric(data_type) && input->info()->quantization_info() != output->info()->quantization_info())
Pablo Telloa52e4cf2019-04-01 14:55:18 +0100269 {
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100270 const UniformQuantizationInfo iq_info = input->info()->quantization_info().uniform();
271 const UniformQuantizationInfo oq_info = output->info()->quantization_info().uniform();
272
273 build_opts.add_option("-DOFFSET_IN1=" + float_to_string_with_full_precision(iq_info.offset));
274 build_opts.add_option("-DOFFSET_OUT=" + float_to_string_with_full_precision(oq_info.offset));
275 build_opts.add_option("-DSCALE_IN1=" + float_to_string_with_full_precision(iq_info.scale));
276 build_opts.add_option("-DSCALE_OUT=" + float_to_string_with_full_precision(oq_info.scale));
Pablo Telloa52e4cf2019-04-01 14:55:18 +0100277 }
278
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000279 // Check output dimensions
Gian Marco Iodice7333e1f2020-10-08 10:25:49 +0100280 auto_init(input->info(), output->info(), indices ? indices->info() : nullptr, pool_info);
281
morgolockcc1f6c92020-03-24 09:26:48 +0000282 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), output->info(), pool_info, (indices) ? indices->info() : nullptr));
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000283
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000284 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(data_type));
285 build_opts.add_option("-DPOOL_" + string_from_pooling_type(pool_type));
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000286 build_opts.add_option("-DSTRIDE_X=" + support::cpp11::to_string(pool_stride_x));
Michalis Spyroue74b2012018-04-18 09:49:16 +0100287 build_opts.add_option("-DSTRIDE_Y=" + support::cpp11::to_string(pool_stride_y));
288 build_opts.add_option("-DPAD_X=" + support::cpp11::to_string(pool_pad_left));
289 build_opts.add_option("-DPAD_Y=" + support::cpp11::to_string(pool_pad_top));
290 build_opts.add_option("-DPOOL_SIZE_X=" + support::cpp11::to_string(pool_size_x));
291 build_opts.add_option("-DPOOL_SIZE_Y=" + support::cpp11::to_string(pool_size_y));
Pablo Telloa52e4cf2019-04-01 14:55:18 +0100292
Michele Di Giorgiocbbed282019-12-20 13:26:08 +0000293 // Set the initial value for the pooling operation accordingly with the data type
294 if(pool_type == PoolingType::MAX)
295 {
296 if(is_data_type_quantized(data_type))
297 {
298 PixelValue type_min{};
299 std::tie(type_min, std::ignore) = get_min_max(data_type);
300 build_opts.add_option("-DINITIAL_VALUE=" + support::cpp11::to_string(type_min.get<int32_t>()));
301 }
302 else
303 {
304 build_opts.add_option("-DINITIAL_VALUE=" + float_to_string_with_full_precision(std::numeric_limits<float>::lowest()));
305 }
306 }
307 else
308 {
309 // Pool AVG and Pool L2 initial value
310 build_opts.add_option("-DINITIAL_VALUE=0");
311 }
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000312
Gian Marco Iodice7333e1f2020-10-08 10:25:49 +0100313 build_opts.add_option("-DMAX_WIDTH=" + support::cpp11::to_string(input->info()->dimension(idx_width) + (exclude_padding ? 0 : pool_pad_left)));
314 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 +0100315
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000316 // Create kernel
Georgios Pinitas14d9d982019-12-13 12:33:09 +0000317 switch(_data_layout)
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000318 {
Michalis Spyroue74b2012018-04-18 09:49:16 +0100319 case DataLayout::NCHW:
320 {
Gian Marco Iodice7333e1f2020-10-08 10:25:49 +0100321 const auto use_fp_mixed_precision = (data_type == DataType::F16) && pool_info.fp_mixed_precision;
322 const auto use_wider_accumulator = use_fp_mixed_precision && (pool_type != PoolingType::MAX);
323 const auto acc_data_type = get_cl_type_from_data_type(use_wider_accumulator ? DataType::F32 : data_type);
324 build_opts.add_option("-DACC_DATA_TYPE=" + acc_data_type);
325 build_opts.add_option_if(use_wider_accumulator, "-DFP_MIXED_PRECISION");
326
Michalis Spyroue74b2012018-04-18 09:49:16 +0100327 if(pool_type != PoolingType::MAX)
328 {
329 build_opts.add_option_if(exclude_padding, "-DEXCLUDE_PADDING");
330 }
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000331
Michalis Spyroue74b2012018-04-18 09:49:16 +0100332 if((pool_size_x == 3) && (pool_size_y == 3) && !is_data_type_quantized_asymmetric(data_type))
333 {
334 // Check if we have pool3x3 with stride_x less equal than 3. In these cases, run an optimized OpenCL kernel where
335 // each thread computes 4 output elements
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +0100336 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 +0000337
Michalis Spyroue74b2012018-04-18 09:49:16 +0100338 std::string kernel_name = ((is_pool3x3_stride_le3) ? "pooling_layer_optimized_" : "pooling_layer_")
339 + support::cpp11::to_string(pool_size_x);
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100340 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Michalis Spyroue74b2012018-04-18 09:49:16 +0100341 }
Sheri Zhang801bbcb2020-08-03 20:11:56 +0100342 else if(pool_info.pool_size == Size2D(2, 2) && pool_type == PoolingType::MAX && _indices && is_data_type_float(data_type))
343 {
344 // For max pooling with pool2x2, store indicies which will be used in max unpooling
345 if(data_type == DataType::F32)
346 {
347 std::string kernel_name = "pooling_layer_2_nchw_indices_fp32";
348 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
349 }
350 else if(data_type == DataType::F16)
351 {
352 std::string kernel_name = "pooling_layer_2_nchw_indices_fp16";
353 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
354 }
355 }
Michalis Spyroue74b2012018-04-18 09:49:16 +0100356 else // Run general case
357 {
358 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 +0100359 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Michalis Spyroue74b2012018-04-18 09:49:16 +0100360 }
361 break;
362 }
363 case DataLayout::NHWC:
364 {
Gian Marco Iodice7333e1f2020-10-08 10:25:49 +0100365 // Floating point mixed precision is support on F16 only
366 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 +0100367
Gian Marco Iodice7333e1f2020-10-08 10:25:49 +0100368 // Wider accumulation is required to avoid accuracy loss
369 // Case 1: Floating point mixed precision (fp16 input data and fp32 accumulation)
370 // Cast 2: Quantized (int8/uint8 input data and int32 accumulation )
371 DataType acc_data_type = data_type;
372
373 if(use_fp_mixed_precision)
Sheri Zhang801bbcb2020-08-03 20:11:56 +0100374 {
Gian Marco Iodice7333e1f2020-10-08 10:25:49 +0100375 acc_data_type = DataType::F32;
376 }
377 else if(is_data_type_quantized(data_type) && pool_type != PoolingType::MAX)
378 {
379 acc_data_type = DataType::S32;
380 }
381
382 build_opts.add_option("-DACC_DATA_TYPE=" + get_cl_type_from_data_type(acc_data_type));
383 build_opts.add_option_if(use_fp_mixed_precision, "-DFP_MIXED_PRECISION");
384 build_opts.add_option_if(exclude_padding, "-DEXCLUDE_PADDING");
385 build_opts.add_option("-DSRC_WIDTH=" + support::cpp11::to_string(input->info()->dimension(idx_width)));
386 build_opts.add_option("-DSRC_HEIGHT=" + support::cpp11::to_string(input->info()->dimension(idx_height)));
387 build_opts.add_option("-DDST_HEIGHT=" + support::cpp11::to_string(output->info()->dimension(idx_height)));
388 build_opts.add_option("-DDST_CHANNELS=" + support::cpp11::to_string(output->info()->dimension(idx_channel)));
389 build_opts.add_option("-DDST_BATCH_SIZE=" + support::cpp11::to_string(output->info()->dimension(idx_batch_size)));
390 build_opts.add_option("-DVEC_SIZE_LEFTOVER=" + support::cpp11::to_string(input->info()->dimension(0) % _num_elems_processed_per_iteration));
391 if(pool_info.pool_size == Size2D(2, 2) && is_data_type_float(data_type))
392 {
393 build_opts.add_option_if(_indices != nullptr && pool_type == PoolingType::MAX, "-DEXTRACT_MAX_INDEX");
394
395 std::string kernel_name = "pooling_layer_2x2_nhwc";
396 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Sheri Zhang801bbcb2020-08-03 20:11:56 +0100397 }
398 else
399 {
400 std::string kernel_name = is_data_type_quantized_asymmetric(data_type) ? "pooling_layer_MxN_quantized_nhwc" : "pooling_layer_MxN_nhwc";
401 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
402 }
Michalis Spyroue74b2012018-04-18 09:49:16 +0100403 break;
404 }
405 default:
406 ARM_COMPUTE_ERROR("Not implemented");
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000407 }
408
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000409 // Set config_id for enabling LWS tuning
410 _config_id = "pooling_layer_";
411 _config_id += lower_string(string_from_data_type(data_type));
412 _config_id += "_";
Georgios Pinitas14d9d982019-12-13 12:33:09 +0000413 _config_id += lower_string(string_from_data_layout(_data_layout));
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000414 _config_id += "_";
Michalis Spyroue74b2012018-04-18 09:49:16 +0100415 _config_id += support::cpp11::to_string(output->info()->dimension(idx_width));
416 _config_id += "_";
417 _config_id += support::cpp11::to_string(output->info()->dimension(idx_height));
418 _config_id += "_";
419 _config_id += support::cpp11::to_string(output->info()->dimension(idx_channel));
Giorgio Arena00b93f52018-06-28 17:18:50 +0100420 _config_id += "_";
421 _config_id += lower_string(string_from_data_layout(input->info()->data_layout()));
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000422}
423
morgolockcc1f6c92020-03-24 09:26:48 +0000424Status CLPoolingLayerKernel::validate(const ITensorInfo *input, const ITensorInfo *output, const PoolingLayerInfo &pool_info, const ITensorInfo *indices)
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000425{
morgolockcc1f6c92020-03-24 09:26:48 +0000426 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output, pool_info, indices));
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000427 ARM_COMPUTE_RETURN_ON_ERROR(std::get<0>(validate_and_configure_window(input->clone().get(), output->clone().get(), pool_info)));
428
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000429 return Status{};
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000430}
431
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100432void CLPoolingLayerKernel::run(const Window &window, cl::CommandQueue &queue)
433{
434 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
435 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IKernel::window(), window);
436
Georgios Pinitas15997872018-02-19 13:58:22 +0000437 unsigned int pool_stride_x = 0;
438 unsigned int pool_stride_y = 0;
Sang-Hoon Park0cb3da62020-01-15 12:39:56 +0000439 std::tie(pool_stride_x, pool_stride_y) = _pool_info.pad_stride_info.stride();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100440
Georgios Pinitas89d71732018-10-29 20:07:15 +0000441 // Collapse window
442 Window window_collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
443
Georgios Pinitas14d9d982019-12-13 12:33:09 +0000444 switch(_data_layout)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100445 {
Michalis Spyroue74b2012018-04-18 09:49:16 +0100446 case DataLayout::NCHW:
447 {
Georgios Pinitas89d71732018-10-29 20:07:15 +0000448 Window slice = window_collapsed.first_slice_window_3D();
Michalis Spyroue74b2012018-04-18 09:49:16 +0100449 do
450 {
451 // Upsample input by pool size
452 Window in_slice(slice);
Sang-Hoon Park0cb3da62020-01-15 12:39:56 +0000453 in_slice.set(Window::DimX, Window::Dimension(in_slice.x().start() - _pool_info.pad_stride_info.pad_left(),
454 (in_slice.x().end() - _pool_info.pad_stride_info.pad_left()) * pool_stride_x,
Michalis Spyroue74b2012018-04-18 09:49:16 +0100455 pool_stride_x * _num_elems_processed_per_iteration));
Sang-Hoon Park0cb3da62020-01-15 12:39:56 +0000456 in_slice.set(Window::DimY, Window::Dimension(in_slice.y().start() - _pool_info.pad_stride_info.pad_top(),
457 (in_slice.y().end() - _pool_info.pad_stride_info.pad_top()) * pool_stride_y,
Michalis Spyroue74b2012018-04-18 09:49:16 +0100458 pool_stride_y));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100459
Michalis Spyroue74b2012018-04-18 09:49:16 +0100460 // Set inputs
461 unsigned int idx = 0;
462 add_3D_tensor_argument(idx, _input, in_slice);
463 add_3D_tensor_argument(idx, _output, slice);
Gian Marco Iodice7333e1f2020-10-08 10:25:49 +0100464 if(_indices && is_data_type_float(_input->info()->data_type()) && (_pool_info.pool_size == Size2D(2, 2)))
Sheri Zhang801bbcb2020-08-03 20:11:56 +0100465 {
466 add_3D_tensor_argument(idx, _indices, slice);
467 }
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100468 enqueue(queue, *this, slice, lws_hint());
Michalis Spyroue74b2012018-04-18 09:49:16 +0100469 }
470 while(window_collapsed.slide_window_slice_3D(slice));
471 break;
472 }
473 case DataLayout::NHWC:
474 {
Gian Marco Iodice7333e1f2020-10-08 10:25:49 +0100475 const size_t batch_size = _output->info()->tensor_shape().total_size_upper(3);
Michalis Spyroue74b2012018-04-18 09:49:16 +0100476
Georgios Pinitas89d71732018-10-29 20:07:15 +0000477 Window slice = window_collapsed.first_slice_window_4D();
478 Window in_slice = window_collapsed.first_slice_window_4D();
Michalis Spyroue74b2012018-04-18 09:49:16 +0100479 in_slice.set(Window::DimX, Window::Dimension(0, _input->info()->dimension(0), _num_elems_processed_per_iteration));
480 in_slice.set(Window::DimY, Window::Dimension(0, _input->info()->dimension(1), pool_stride_x));
481 in_slice.set(Window::DimZ, Window::Dimension(0, _input->info()->dimension(2), pool_stride_y));
Gian Marco Iodice7333e1f2020-10-08 10:25:49 +0100482 in_slice.set(3, Window::Dimension(0, batch_size, 1));
Michalis Spyroue74b2012018-04-18 09:49:16 +0100483 do
484 {
485 // Set inputs
486 unsigned int idx = 0;
Georgios Pinitas89d71732018-10-29 20:07:15 +0000487 add_4D_tensor_argument(idx, _input, in_slice);
488 add_4D_tensor_argument(idx, _output, slice);
Sheri Zhang801bbcb2020-08-03 20:11:56 +0100489 if(_indices && is_data_type_float(_input->info()->data_type()) && (_pool_info.pool_type == PoolingType::MAX) && (_pool_info.pool_size == Size2D(2, 2)))
490 {
491 add_4D_tensor_argument(idx, _indices, slice);
492 }
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100493 enqueue(queue, *this, slice, lws_hint());
Michalis Spyroue74b2012018-04-18 09:49:16 +0100494 }
Georgios Pinitas89d71732018-10-29 20:07:15 +0000495 while(window.slide_window_slice_4D(slice) && window.slide_window_slice_4D(in_slice));
Michalis Spyroue74b2012018-04-18 09:49:16 +0100496 break;
497 }
498 default:
499 ARM_COMPUTE_ERROR("Not implemented");
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100500 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100501}
Michele Di Giorgiocbbed282019-12-20 13:26:08 +0000502} // namespace arm_compute