blob: 4af5424a7720c5c90c3f1e172c2878b3f7cf06f0 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Georgios Pinitas99089ce2019-02-06 14:16:18 +00002 * Copyright (c) 2017-2019 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/NEON/kernels/NEPoolingLayerKernel.h"
25
26#include "arm_compute/core/AccessWindowStatic.h"
Anthony Barbiereaefd002018-07-20 17:49:35 +010027#include "arm_compute/core/CPP/Validate.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010028#include "arm_compute/core/Error.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010029#include "arm_compute/core/Helpers.h"
30#include "arm_compute/core/ITensor.h"
Georgios Pinitas55186712018-01-08 17:37:12 +000031#include "arm_compute/core/NEON/NEAsymm.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010032#include "arm_compute/core/NEON/NEFixedPoint.h"
Georgios Pinitascdf51452017-08-31 14:21:36 +010033#include "arm_compute/core/NEON/NEMath.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010034#include "arm_compute/core/TensorInfo.h"
35#include "arm_compute/core/Utils.h"
36#include "arm_compute/core/Validate.h"
37#include "arm_compute/core/Window.h"
Giorgio Arena9fb6c7e2018-08-22 12:15:25 +010038#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010039
Georgios Pinitas55186712018-01-08 17:37:12 +000040#include "support/ToolchainSupport.h"
41
Anthony Barbier6ff3b192017-09-04 18:44:23 +010042#include <algorithm>
43#include <arm_neon.h>
Georgios Pinitascdf51452017-08-31 14:21:36 +010044#include <cmath>
Anthony Barbier6ff3b192017-09-04 18:44:23 +010045#include <limits>
Michele Di Giorgio8af2dd62017-06-19 15:19:29 +010046#include <set>
Anthony Barbier6ff3b192017-09-04 18:44:23 +010047#include <string>
48#include <tuple>
49
50using namespace arm_compute;
Giorgio Arena9fb6c7e2018-08-22 12:15:25 +010051using namespace misc::shape_calculator;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010052
53namespace
54{
Pablo Tello77e6c552018-12-04 15:33:49 +000055inline float calculate_avg_scale(bool exclude_padding, DataLayout data_layout, const Coordinates &id, const int pool_size_x, const int pool_size_y, const int upper_bound_w, const int upper_bound_h,
Anthony Barbier6ff3b192017-09-04 18:44:23 +010056 const int pad_x, const int pad_y, const int stride_x, const int stride_y)
57{
Michalis Spyrou57dac842018-03-01 16:03:50 +000058 const unsigned int idx_width = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
59 const unsigned int idx_height = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT);
60
61 int start_x = id[idx_width] * stride_x - pad_x;
62 int start_y = id[idx_height] * stride_y - pad_y;
63
64 const int end_x = std::min(start_x + pool_size_x, upper_bound_w);
65 const int end_y = std::min(start_y + pool_size_y, upper_bound_h);
Georgios Pinitasadaae7e2017-10-30 15:56:32 +000066 if(exclude_padding)
67 {
68 start_x = std::max(0, start_x);
69 start_y = std::max(0, start_y);
70 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +010071 return 1.f / ((end_y - start_y) * (end_x - start_x));
72}
73
Pablo Tello77e6c552018-12-04 15:33:49 +000074inline void scale_vector_s16x8(bool exclude_padding, uint16x8_t &v, const Coordinates &id, int id_offset, int step,
Georgios Pinitas55186712018-01-08 17:37:12 +000075 const int pool_size, const int upper_bound_w, const int upper_bound_h,
76 const int pad_x, const int pad_y, const int stride_x, const int stride_y)
77{
78 int start_x = (id.x() + id_offset) * stride_x - pad_x;
79 int start_y = id.y() * stride_y - pad_y;
80 const int end_y = std::min(start_y + pool_size, upper_bound_h);
81 if(exclude_padding)
82 {
83 start_y = std::max(0, start_y);
84 }
85
86 std::array<uint16_t, 8> elems =
87 {
88 {
89 vgetq_lane_u16(v, 0),
90 vgetq_lane_u16(v, 1),
91 vgetq_lane_u16(v, 2),
92 vgetq_lane_u16(v, 3),
93 vgetq_lane_u16(v, 4),
94 vgetq_lane_u16(v, 5),
95 vgetq_lane_u16(v, 6),
96 vgetq_lane_u16(v, 7),
97 }
98 };
99
100 for(auto &el : elems)
101 {
102 int c_start_x = start_x;
103 const int end_x = std::min(c_start_x + pool_size, upper_bound_w);
104 if(exclude_padding)
105 {
106 c_start_x = std::max(0, c_start_x);
107 }
108 float scale = 1.f / ((end_y - start_y) * (end_x - c_start_x));
109 el *= scale;
110 start_x += step * stride_x;
111 }
112
113 v = vsetq_lane_u16(elems[0], v, 0);
114 v = vsetq_lane_u16(elems[1], v, 1);
115 v = vsetq_lane_u16(elems[2], v, 2);
116 v = vsetq_lane_u16(elems[3], v, 3);
117 v = vsetq_lane_u16(elems[4], v, 4);
118 v = vsetq_lane_u16(elems[5], v, 5);
119 v = vsetq_lane_u16(elems[6], v, 6);
120 v = vsetq_lane_u16(elems[7], v, 7);
121}
122
Georgios Pinitas13d96e02018-08-23 11:20:23 +0100123Status validate_arguments(const ITensorInfo *input, const ITensorInfo *output, const PoolingLayerInfo &pool_info, unsigned int &pooled_w, unsigned int pooled_h)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100124{
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000125 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100126
Isabella Gottardi7567f5f2018-01-30 15:26:00 +0000127 int pool_stride_x = 0;
128 int pool_stride_y = 0;
129 PoolingType pool_type = pool_info.pool_type();
130 const PadStrideInfo pad_stride_info = pool_info.pad_stride_info();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100131 std::tie(pool_stride_x, pool_stride_y) = pad_stride_info.stride();
Michele Di Giorgio8af2dd62017-06-19 15:19:29 +0100132
Anthony Barbiereaefd002018-07-20 17:49:35 +0100133 ARM_COMPUTE_RETURN_ERROR_ON_CPU_F16_UNSUPPORTED(input);
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +0100134 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::QASYMM8, DataType::F16, DataType::F32);
Georgios Pinitas55186712018-01-08 17:37:12 +0000135 ARM_COMPUTE_RETURN_ERROR_ON(pool_type == PoolingType::L2 && is_data_type_quantized(input->data_type()));
Isabella Gottardi7567f5f2018-01-30 15:26:00 +0000136
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000137 if(output->total_size() != 0)
Georgios Pinitas1dad50e2017-07-03 17:51:34 +0100138 {
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000139 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
Michalis Spyrou57dac842018-03-01 16:03:50 +0000140 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_LAYOUT(input, output);
141 ARM_COMPUTE_RETURN_ERROR_ON((output->dimension(get_data_layout_dimension_index(input->data_layout(), DataLayoutDimension::WIDTH)) != pooled_w)
142 || (output->dimension(get_data_layout_dimension_index(input->data_layout(), DataLayoutDimension::HEIGHT)) != pooled_h));
Georgios Pinitas1dad50e2017-07-03 17:51:34 +0100143 }
144
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000145 return Status{};
146}
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100147
Isabella Gottardi7567f5f2018-01-30 15:26:00 +0000148Status validate_arguments_pool_info(const unsigned int pool_size_x, const unsigned int pool_size_y)
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000149{
Isabella Gottardi7567f5f2018-01-30 15:26:00 +0000150 ARM_COMPUTE_RETURN_ERROR_ON(pool_size_x == 0);
151 ARM_COMPUTE_RETURN_ERROR_ON(pool_size_y == 0);
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000152
153 return Status{};
154}
155
156std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input, ITensorInfo *output, const PoolingLayerInfo &pool_info, unsigned int &num_elems_processed_per_iteration,
157 BorderSize &border_size,
Isabella Gottardi7567f5f2018-01-30 15:26:00 +0000158 unsigned int pooled_w, unsigned int pooled_h, int pool_size_x, int pool_size_y)
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000159{
Giorgio Arena9fb6c7e2018-08-22 12:15:25 +0100160 // Output auto inizialitation if not yet initialized
161 auto_init_if_empty(*output, input->clone()->set_tensor_shape(compute_pool_shape(*input, pool_info)));
162
Michalis Spyrou57dac842018-03-01 16:03:50 +0000163 DataLayout data_layout = input->data_layout();
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000164 unsigned int num_elems_read_per_iteration = 0;
165 unsigned int num_elems_horizontal_window = 0;
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000166 int pool_stride_x = 0;
167 int pool_stride_y = 0;
Michalis Spyrou57dac842018-03-01 16:03:50 +0000168 const int idx_width = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
169 const int idx_height = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT);
170 const int input_width = input->dimension(idx_width);
171 const int input_height = input->dimension(idx_height);
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000172 const PadStrideInfo pad_stride_info = pool_info.pad_stride_info();
173 std::tie(pool_stride_x, pool_stride_y) = pad_stride_info.stride();
Isabella Gottardi7567f5f2018-01-30 15:26:00 +0000174 const int pool_pad_right = pad_stride_info.pad_right();
175 const int pool_pad_top = pad_stride_info.pad_top();
176 const int pool_pad_left = pad_stride_info.pad_left();
177 const int pool_pad_bottom = pad_stride_info.pad_bottom();
178 const bool is_square = pool_size_x == pool_size_y;
Michalis Spyrou57dac842018-03-01 16:03:50 +0000179
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000180 // Check output dimensions
Michalis Spyrou57dac842018-03-01 16:03:50 +0000181 std::tie(pooled_w, pooled_h) = scaled_dimensions(input->dimension(idx_width),
182 input->dimension(idx_height),
Isabella Gottardi7567f5f2018-01-30 15:26:00 +0000183 pool_size_x,
184 pool_size_y,
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000185 pad_stride_info);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100186
Isabella Gottardi7567f5f2018-01-30 15:26:00 +0000187 //If it's not squared and optimized will be executed the MxN
188 num_elems_read_per_iteration = 1;
189 num_elems_processed_per_iteration = 1;
190 num_elems_horizontal_window = 1;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100191
Michalis Spyrou57dac842018-03-01 16:03:50 +0000192 const bool is_nhwc = data_layout == DataLayout::NHWC;
193
Isabella Gottardi7567f5f2018-01-30 15:26:00 +0000194 if(is_square)
195 {
196 switch(input->data_type())
197 {
Isabella Gottardi7567f5f2018-01-30 15:26:00 +0000198 case DataType::QASYMM8:
Michalis Spyrou57dac842018-03-01 16:03:50 +0000199 if(is_nhwc)
200 {
Michalis Spyrouced25572018-10-01 16:26:20 +0100201 num_elems_processed_per_iteration = 16;
Michalis Spyrou57dac842018-03-01 16:03:50 +0000202 break;
203 }
Isabella Gottardi7567f5f2018-01-30 15:26:00 +0000204 switch(pool_size_x)
205 {
206 case 2:
207 num_elems_read_per_iteration = 16;
208 num_elems_processed_per_iteration = (pool_stride_x == 2) ? 8 : 15;
209 num_elems_horizontal_window = (pool_stride_x == 2) ? 8 : 16;
210 break;
211 case 3:
212 num_elems_read_per_iteration = 16;
213 num_elems_processed_per_iteration = (pool_stride_x == 2) ? 7 : 14;
214 num_elems_horizontal_window = (pool_stride_x == 2) ? 8 : 16;
215 break;
216 default:
217 break;
218 }
219 break;
Isabella Gottardi7567f5f2018-01-30 15:26:00 +0000220#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
221 case DataType::F16:
Michalis Spyrou57dac842018-03-01 16:03:50 +0000222 if(is_nhwc)
223 {
224 num_elems_processed_per_iteration = 8;
225 break;
226 }
Isabella Gottardi7567f5f2018-01-30 15:26:00 +0000227 switch(pool_size_x)
228 {
229 case 2:
Isabella Gottardi7567f5f2018-01-30 15:26:00 +0000230 case 3:
231 num_elems_read_per_iteration = 4;
232 num_elems_processed_per_iteration = 1;
233 num_elems_horizontal_window = 1;
234 break;
235 default:
236 break;
237 }
238 break;
239#endif /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
240 case DataType::F32:
Michalis Spyrou57dac842018-03-01 16:03:50 +0000241 if(is_nhwc)
242 {
Georgios Pinitas64f1a902018-09-18 13:42:51 +0100243 num_elems_processed_per_iteration = 4;
Michalis Spyrou57dac842018-03-01 16:03:50 +0000244 break;
245 }
Isabella Gottardi7567f5f2018-01-30 15:26:00 +0000246 switch(pool_size_x)
247 {
248 case 2:
249 num_elems_read_per_iteration = 2;
250 break;
251 case 3:
252 num_elems_read_per_iteration = 4; // We use vload4 for pooling3
253 break;
254 case 7:
255 num_elems_read_per_iteration = 8; // We use vload8 for pooling7
256 break;
257 default:
258 break;
259 }
260 num_elems_processed_per_iteration = 1;
261 num_elems_horizontal_window = 1;
262 break;
263 default:
264 ARM_COMPUTE_ERROR("Element size not supported");
265 break;
266 }
267 }
Michalis Spyrou57dac842018-03-01 16:03:50 +0000268 else
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000269 {
Michalis Spyrou57dac842018-03-01 16:03:50 +0000270 if(is_nhwc)
271 {
Michalis Spyrouced25572018-10-01 16:26:20 +0100272 num_elems_processed_per_iteration = 16 / input->element_size();
Michalis Spyrou57dac842018-03-01 16:03:50 +0000273 }
274 }
275
276 bool window_changed = false;
277 Window win{};
278 if(data_layout == DataLayout::NCHW)
279 {
280 // Number of iterations in X dimension
281 const int num_iterations_x = (pooled_w + num_elems_processed_per_iteration - 1) / num_elems_processed_per_iteration;
282
283 // Upper limit for the number of right/bottom border elements that are accessed
284 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;
285 const int upper_bound_h = ((pooled_h - 1) * pool_stride_y - pool_pad_top + pool_size_y) - input_height;
286
287 border_size = BorderSize(pool_pad_top, pool_pad_right, pool_pad_bottom, pool_pad_left);
288 border_size.right = std::max(upper_bound_w, pool_pad_right);
289 border_size.bottom = std::max(upper_bound_h, pool_pad_bottom);
290
291 TensorShape output_shape{ input->tensor_shape() };
292 output_shape.set(0, pooled_w);
293 output_shape.set(1, pooled_h);
294 TensorInfo output_info(input->clone()->set_tensor_shape(output_shape));
295
296 win = calculate_max_window(output_info, Steps(num_elems_processed_per_iteration));
297 AccessWindowStatic input_access(input, -pool_pad_left, -pool_pad_top, input_width + border_size.right, input_height + border_size.bottom);
298
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000299 AccessWindowHorizontal output_access(output, 0, num_elems_horizontal_window);
300 window_changed = update_window_and_padding(win, input_access, output_access);
301 output_access.set_valid_region(win, ValidRegion(Coordinates(), output->tensor_shape()));
302 }
303 else
304 {
Michalis Spyrou57dac842018-03-01 16:03:50 +0000305 TensorShape output_shape{ input->tensor_shape() };
306 output_shape.set(1, pooled_w);
307 output_shape.set(2, pooled_h);
308 TensorInfo output_info(input->clone()->set_tensor_shape(output_shape));
309
310 win = calculate_max_window(output_info, Steps(num_elems_processed_per_iteration));
311 AccessWindowHorizontal input_access(input, 0, num_elems_processed_per_iteration);
312
313 AccessWindowHorizontal output_access(output, 0, num_elems_processed_per_iteration);
314 window_changed = update_window_and_padding(win, input_access, output_access);
315 output_access.set_valid_region(win, ValidRegion(Coordinates(), output->tensor_shape()));
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000316 }
317
318 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
319 return std::make_pair(err, win);
320}
321} // namespace
322
323NEPoolingLayerKernel::NEPoolingLayerKernel()
Isabella Gottardi7567f5f2018-01-30 15:26:00 +0000324 : _func(nullptr), _input(nullptr), _output(nullptr), _pool_info(), _num_elems_processed_per_iteration(0), _border_size(0), _is_square(false)
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000325{
326}
327
328BorderSize NEPoolingLayerKernel::border_size() const
329{
330 return _border_size;
331}
332
333void NEPoolingLayerKernel::configure(const ITensor *input, ITensor *output, const PoolingLayerInfo &pool_info)
334{
335 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
336
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000337 const PadStrideInfo pad_stride_info = pool_info.pad_stride_info();
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000338 const bool is_global_pooling = pool_info.is_global_pooling();
Diego Lopez Recas61ef5bf2017-12-11 12:36:55 +0000339 const int pool_stride_x = pad_stride_info.stride().first;
Michalis Spyrou57dac842018-03-01 16:03:50 +0000340
341 // Get data layout
342 const DataLayout data_layout = input->info()->data_layout();
343 const int idx_width = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
344 const int idx_height = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT);
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000345
346 // Update pool size in case of global pooling
Pablo Tello77e6c552018-12-04 15:33:49 +0000347 const Size2D pool_size(
348 is_global_pooling ? input->info()->dimension(idx_width) : pool_info.pool_size().width,
349 is_global_pooling ? input->info()->dimension(idx_height) : pool_info.pool_size().height);
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000350
351 // Validate pool info before calling scaled_dimensions
Pablo Tello77e6c552018-12-04 15:33:49 +0000352 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments_pool_info(pool_size.x(), pool_size.y()));
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000353
354 // Check output dimensions
Michalis Spyroubcfd09a2019-05-01 13:03:59 +0100355 unsigned int pooled_w;
356 unsigned int pooled_h;
Michalis Spyrou57dac842018-03-01 16:03:50 +0000357 std::tie(pooled_w, pooled_h) = scaled_dimensions(input->info()->dimension(idx_width),
358 input->info()->dimension(idx_height),
Pablo Tello77e6c552018-12-04 15:33:49 +0000359 pool_size.x(),
360 pool_size.y(),
Diego Lopez Recas61ef5bf2017-12-11 12:36:55 +0000361 pad_stride_info);
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000362
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000363 // Perform validation step
Georgios Pinitas13d96e02018-08-23 11:20:23 +0100364 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), output->info(), pool_info, pooled_w, pooled_h));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100365
366 // Set instance variables
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000367 _input = input;
368 _output = output;
369 _pool_info = pool_info;
Pablo Tello77e6c552018-12-04 15:33:49 +0000370 _is_square = (pool_size.x() == pool_size.y());
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100371
Georgios Pinitas55186712018-01-08 17:37:12 +0000372 // Get data type
373 const DataType data_type = input->info()->data_type();
Michalis Spyrou57dac842018-03-01 16:03:50 +0000374 const bool is_nchw = data_layout == DataLayout::NCHW;
Georgios Pinitas55186712018-01-08 17:37:12 +0000375
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +0100376 if(data_type == DataType::QASYMM8)
Georgios Pinitas55186712018-01-08 17:37:12 +0000377 {
Pablo Tello77e6c552018-12-04 15:33:49 +0000378 if(pool_size.x() == 2 && pool_stride_x < 3 && _is_square)
Georgios Pinitas55186712018-01-08 17:37:12 +0000379 {
Pablo Tello77e6c552018-12-04 15:33:49 +0000380 if(is_nchw)
Michalis Spyroubbd9fb92017-06-22 12:57:51 +0100381 {
Pablo Tello77e6c552018-12-04 15:33:49 +0000382 _func = &NEPoolingLayerKernel::pooling2_qasymm8_nchw;
383 }
384 else
385 {
386 _func = &NEPoolingLayerKernel::poolingMxN_qasymm8_nhwc;
Georgios Pinitas55186712018-01-08 17:37:12 +0000387 }
388 }
Pablo Tello77e6c552018-12-04 15:33:49 +0000389 else if(pool_size.x() == 3 && pool_stride_x < 3 && _is_square)
Georgios Pinitas55186712018-01-08 17:37:12 +0000390 {
Pablo Tello77e6c552018-12-04 15:33:49 +0000391 if(is_nchw)
Georgios Pinitas55186712018-01-08 17:37:12 +0000392 {
Pablo Tello77e6c552018-12-04 15:33:49 +0000393 _func = &NEPoolingLayerKernel::pooling3_qasymm8_nchw;
394 }
395 else
396 {
397 _func = &NEPoolingLayerKernel::poolingMxN_qasymm8_nhwc;
Georgios Pinitas55186712018-01-08 17:37:12 +0000398 }
399 }
400 else
401 {
Pablo Tello77e6c552018-12-04 15:33:49 +0000402 if(is_nchw)
Georgios Pinitas55186712018-01-08 17:37:12 +0000403 {
Pablo Tello77e6c552018-12-04 15:33:49 +0000404 _func = &NEPoolingLayerKernel::poolingMxN_qasymm8_nchw;
405 }
406 else
407 {
408 _func = &NEPoolingLayerKernel::poolingMxN_qasymm8_nhwc;
Georgios Pinitas55186712018-01-08 17:37:12 +0000409 }
410 }
411 }
Georgios Pinitas55186712018-01-08 17:37:12 +0000412 else if(data_type == DataType::F16)
413 {
Isabella Gottardi7567f5f2018-01-30 15:26:00 +0000414 if(_is_square)
Georgios Pinitas55186712018-01-08 17:37:12 +0000415 {
Pablo Tello77e6c552018-12-04 15:33:49 +0000416 switch(pool_size.x())
Isabella Gottardi7567f5f2018-01-30 15:26:00 +0000417 {
418 case 2:
Pablo Tello77e6c552018-12-04 15:33:49 +0000419 {
420 if(is_nchw)
Isabella Gottardi7567f5f2018-01-30 15:26:00 +0000421 {
Pablo Tello77e6c552018-12-04 15:33:49 +0000422 _func = &NEPoolingLayerKernel::pooling2_f16_nchw;
Isabella Gottardi7567f5f2018-01-30 15:26:00 +0000423 }
Pablo Tello77e6c552018-12-04 15:33:49 +0000424 else
425 {
426 _func = &NEPoolingLayerKernel::poolingMxN_f16_nhwc;
427 }
428 }
429 break;
Isabella Gottardi7567f5f2018-01-30 15:26:00 +0000430 case 3:
Pablo Tello77e6c552018-12-04 15:33:49 +0000431 {
432 if(is_nchw)
Isabella Gottardi7567f5f2018-01-30 15:26:00 +0000433 {
Pablo Tello77e6c552018-12-04 15:33:49 +0000434 _func = &NEPoolingLayerKernel::pooling3_f16_nchw;
Isabella Gottardi7567f5f2018-01-30 15:26:00 +0000435 }
Pablo Tello77e6c552018-12-04 15:33:49 +0000436 else
437 {
438 _func = &NEPoolingLayerKernel::poolingMxN_f16_nhwc;
439 }
440 }
441 break;
Isabella Gottardi7567f5f2018-01-30 15:26:00 +0000442 default:
Pablo Tello77e6c552018-12-04 15:33:49 +0000443 {
444 if(is_nchw)
Isabella Gottardi7567f5f2018-01-30 15:26:00 +0000445 {
Pablo Tello77e6c552018-12-04 15:33:49 +0000446 _func = &NEPoolingLayerKernel::poolingMxN_f16_nchw;
447 }
448 else
449 {
450 _func = &NEPoolingLayerKernel::poolingMxN_f16_nhwc;
Isabella Gottardi7567f5f2018-01-30 15:26:00 +0000451 }
452 break;
Pablo Tello77e6c552018-12-04 15:33:49 +0000453 }
454 break;
Isabella Gottardi7567f5f2018-01-30 15:26:00 +0000455 }
456 }
457 else
458 {
Pablo Tello77e6c552018-12-04 15:33:49 +0000459 if(is_nchw)
Isabella Gottardi7567f5f2018-01-30 15:26:00 +0000460 {
Pablo Tello77e6c552018-12-04 15:33:49 +0000461 _func = &NEPoolingLayerKernel::poolingMxN_f16_nchw;
462 }
463 else
464 {
465 _func = &NEPoolingLayerKernel::poolingMxN_f16_nhwc;
Isabella Gottardi7567f5f2018-01-30 15:26:00 +0000466 }
Georgios Pinitas55186712018-01-08 17:37:12 +0000467 }
468 }
469 else if(data_type == DataType::F32)
470 {
Isabella Gottardi7567f5f2018-01-30 15:26:00 +0000471 if(_is_square)
Georgios Pinitas55186712018-01-08 17:37:12 +0000472 {
Pablo Tello77e6c552018-12-04 15:33:49 +0000473 switch(pool_size.x())
Isabella Gottardi7567f5f2018-01-30 15:26:00 +0000474 {
475 case 2:
Pablo Tello77e6c552018-12-04 15:33:49 +0000476 {
477 if(is_nchw)
Isabella Gottardi7567f5f2018-01-30 15:26:00 +0000478 {
Pablo Tello77e6c552018-12-04 15:33:49 +0000479 _func = &NEPoolingLayerKernel::pooling2_f32_nchw;
480 }
481 else
482 {
483 _func = &NEPoolingLayerKernel::poolingMxN_f32_nhwc;
Isabella Gottardi7567f5f2018-01-30 15:26:00 +0000484 }
485 break;
Pablo Tello77e6c552018-12-04 15:33:49 +0000486 }
Isabella Gottardi7567f5f2018-01-30 15:26:00 +0000487 case 3:
Pablo Tello77e6c552018-12-04 15:33:49 +0000488 {
489 if(is_nchw)
Isabella Gottardi7567f5f2018-01-30 15:26:00 +0000490 {
Pablo Tello77e6c552018-12-04 15:33:49 +0000491 _func = &NEPoolingLayerKernel::pooling3_f32_nchw;
492 }
493 else
494 {
495 _func = &NEPoolingLayerKernel::poolingMxN_f32_nhwc;
Isabella Gottardi7567f5f2018-01-30 15:26:00 +0000496 }
497 break;
Pablo Tello77e6c552018-12-04 15:33:49 +0000498 }
Isabella Gottardi7567f5f2018-01-30 15:26:00 +0000499 case 7:
Pablo Tello77e6c552018-12-04 15:33:49 +0000500 {
501 if(is_nchw)
Isabella Gottardi7567f5f2018-01-30 15:26:00 +0000502 {
Pablo Tello77e6c552018-12-04 15:33:49 +0000503 _func = &NEPoolingLayerKernel::pooling7_f32_nchw;
504 }
505 else
506 {
507 _func = &NEPoolingLayerKernel::poolingMxN_f32_nhwc;
Isabella Gottardi7567f5f2018-01-30 15:26:00 +0000508 }
509 break;
Pablo Tello77e6c552018-12-04 15:33:49 +0000510 }
Isabella Gottardi7567f5f2018-01-30 15:26:00 +0000511 default:
Pablo Tello77e6c552018-12-04 15:33:49 +0000512 {
513 if(is_nchw)
Isabella Gottardi7567f5f2018-01-30 15:26:00 +0000514 {
Pablo Tello77e6c552018-12-04 15:33:49 +0000515 _func = &NEPoolingLayerKernel::poolingMxN_f32_nchw;
516 }
517 else
518 {
519 _func = &NEPoolingLayerKernel::poolingMxN_f32_nhwc;
Isabella Gottardi7567f5f2018-01-30 15:26:00 +0000520 }
521 break;
Pablo Tello77e6c552018-12-04 15:33:49 +0000522 }
Isabella Gottardi7567f5f2018-01-30 15:26:00 +0000523 }
524 }
525 else
526 {
Pablo Tello77e6c552018-12-04 15:33:49 +0000527 if(is_nchw)
Isabella Gottardi7567f5f2018-01-30 15:26:00 +0000528 {
Pablo Tello77e6c552018-12-04 15:33:49 +0000529 _func = &NEPoolingLayerKernel::poolingMxN_f32_nchw;
530 }
531 else
532 {
533 _func = &NEPoolingLayerKernel::poolingMxN_f32_nhwc;
Isabella Gottardi7567f5f2018-01-30 15:26:00 +0000534 }
Georgios Pinitas55186712018-01-08 17:37:12 +0000535 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100536 }
537
538 // Configure kernel window
Pablo Tello77e6c552018-12-04 15:33:49 +0000539 auto win_config = validate_and_configure_window(input->info(), output->info(), pool_info, _num_elems_processed_per_iteration, _border_size, pooled_w, pooled_h, pool_size.x(), pool_size.y());
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000540 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
541 INEKernel::configure(win_config.second);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100542}
543
Pablo Tello77e6c552018-12-04 15:33:49 +0000544void NEPoolingLayerKernel::pooling2_qasymm8_nchw(const Window &window_input, const Window &window, PoolingType pooling_type, bool exclude_padding)
Georgios Pinitas55186712018-01-08 17:37:12 +0000545{
546 Iterator input(_input, window_input);
547 Iterator output(_output, window);
548
Michalis Spyroubd0e6122018-01-23 09:52:16 +0000549 constexpr int pool_size = 2;
550 int pool_stride_x = 0;
551 int pool_stride_y = 0;
552 const int pool_pad_right = _pool_info.pad_stride_info().pad_right();
553 const int pool_pad_top = _pool_info.pad_stride_info().pad_top();
554 const int pool_pad_left = _pool_info.pad_stride_info().pad_left();
555 const int pool_pad_bottom = _pool_info.pad_stride_info().pad_bottom();
Georgios Pinitas55186712018-01-08 17:37:12 +0000556 std::tie(pool_stride_x, pool_stride_y) = _pool_info.pad_stride_info().stride();
Michalis Spyroubd0e6122018-01-23 09:52:16 +0000557 const int upper_bound_w = _input->info()->dimension(0) + (exclude_padding ? 0 : pool_pad_right);
558 const int upper_bound_h = _input->info()->dimension(1) + (exclude_padding ? 0 : pool_pad_bottom);
Georgios Pinitas55186712018-01-08 17:37:12 +0000559
Michalis Spyroubd0e6122018-01-23 09:52:16 +0000560 const uint8_t *const input_top_ptr = _input->ptr_to_element(Coordinates(-static_cast<int>(pool_pad_left), -static_cast<int>(pool_pad_top)));
561 const uint8_t *const input_bottom_ptr = _input->ptr_to_element(Coordinates(-static_cast<int>(pool_pad_left), -static_cast<int>(pool_pad_top) + 1));
Georgios Pinitas55186712018-01-08 17:37:12 +0000562
563 const int scale_step_x = (pool_stride_x == 1) ? 2 : 1;
564
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100565 const UniformQuantizationInfo input_qinfo = _input->info()->quantization_info().uniform();
566 const UniformQuantizationInfo output_qinfo = _output->info()->quantization_info().uniform();
567 const bool have_different_qinfo = input_qinfo != output_qinfo;
568
Georgios Pinitas55186712018-01-08 17:37:12 +0000569 execute_window_loop(window, [&](const Coordinates & id)
570 {
571 const auto top_data = vld1q_u8(reinterpret_cast<const uint8_t *>(input_top_ptr + input.offset()));
572 const auto bottom_data = vld1q_u8(reinterpret_cast<const uint8_t *>(input_bottom_ptr + input.offset()));
573 uint8x8_t lower_res = {};
574 uint8x8_t upper_res = {};
575
576 if(pooling_type != PoolingType::MAX)
577 {
578 const uint16x8x2_t top_data_u16 = { { vmovl_u8(vget_low_u8(top_data)), vmovl_u8(vget_high_u8(top_data)) } };
579 const uint16x8x2_t bottom_data_u16 = { { vmovl_u8(vget_low_u8(bottom_data)), vmovl_u8(vget_high_u8(bottom_data)) } };
580
581 // Add rows
582 const uint16x8x2_t vrsum =
583 {
584 {
585 vaddq_u16(top_data_u16.val[0], bottom_data_u16.val[0]),
586 vaddq_u16(top_data_u16.val[1], bottom_data_u16.val[1]),
587 }
588 };
589
590 // Pair-wise add row data
591 const uint16x4x2_t vpsum =
592 {
593 {
594 vpadd_u16(vget_low_u16(vrsum.val[0]), vget_high_u16(vrsum.val[0])),
595 vpadd_u16(vget_low_u16(vrsum.val[1]), vget_high_u16(vrsum.val[1])),
596 }
597 };
598
599 uint16x8_t res_lower = vcombine_u16(vpsum.val[0], vpsum.val[1]);
600
601 // Scale lower result
Pablo Tello77e6c552018-12-04 15:33:49 +0000602 scale_vector_s16x8(exclude_padding, res_lower, id, 0, scale_step_x,
603 pool_size, upper_bound_w, upper_bound_h,
604 pool_pad_left, pool_pad_top, pool_stride_x, pool_stride_y);
Georgios Pinitas55186712018-01-08 17:37:12 +0000605 lower_res = vmovn_u16(res_lower);
606
607 // Compute upper result for stride_x == 1
608 if(pool_stride_x == 1)
609 {
610 // Shifted row sum
611 const uint16x8x2_t vrsum_shifted =
612 {
613 {
614 vextq_u16(vrsum.val[0], vrsum.val[1], 1),
615 vextq_u16(vrsum.val[1], vrsum.val[1], 1)
616 }
617 };
618
619 // Pair-wise add shifted row
620 const uint16x4x2_t vpsum_shifted =
621 {
622 {
623 vpadd_u16(vget_low_u16(vrsum_shifted.val[0]), vget_high_u16(vrsum_shifted.val[0])),
624 vpadd_u16(vget_low_u16(vrsum_shifted.val[1]), vget_high_u16(vrsum_shifted.val[1])),
625 }
626 };
627 uint16x8_t res_upper = vcombine_u16(vpsum_shifted.val[0], vpsum_shifted.val[1]);
628
629 // Scale lower result
Pablo Tello77e6c552018-12-04 15:33:49 +0000630 scale_vector_s16x8(exclude_padding, res_upper, id, 1, 2,
631 pool_size, upper_bound_w, upper_bound_h,
632 pool_pad_left, pool_pad_top, pool_stride_x, pool_stride_y);
Georgios Pinitas55186712018-01-08 17:37:12 +0000633 upper_res = vmovn_u16(res_upper);
634 }
635 }
636 else
637 {
638 const uint8x16_t max_data = vmaxq_u8(top_data, bottom_data);
639 lower_res = vpmax_u8(vget_low_u8(max_data), vget_high_u8(max_data));
640 if(pool_stride_x == 1)
641 {
642 const uint8x16_t max_data_shifted = vextq_u8(max_data, max_data, 1);
643 upper_res = vpmax_u8(vget_low_u8(max_data_shifted), vget_high_u8(max_data_shifted));
644 }
645 }
646
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100647 if(have_different_qinfo)
Pablo Telloa52e4cf2019-04-01 14:55:18 +0100648 {
649 const auto requantized_output = vquantize(vdequantize(vcombine_u8(lower_res, upper_res), input_qinfo), output_qinfo);
650 lower_res = vget_low_u8(requantized_output);
651 upper_res = vget_high_u8(requantized_output);
652 }
653
Georgios Pinitas55186712018-01-08 17:37:12 +0000654 // Store result
655 if(pool_stride_x == 1)
656 {
657 const uint8x8x2_t res = { { lower_res, upper_res } };
658 vst2_u8(reinterpret_cast<uint8_t *>(output.ptr()), res);
659 }
660 else
661 {
662 vst1_u8(reinterpret_cast<uint8_t *>(output.ptr()), lower_res);
663 }
664 },
665 input, output);
666}
667
Pablo Tello77e6c552018-12-04 15:33:49 +0000668void NEPoolingLayerKernel::pooling3_f16_nchw(const Window &window_input, const Window &window, PoolingType pooling_type, bool exclude_padding)
Pablo Tello0c34fe22017-06-26 17:17:42 +0100669{
Pablo Tello77e6c552018-12-04 15:33:49 +0000670 ARM_COMPUTE_UNUSED(pooling_type);
671 ARM_COMPUTE_UNUSED(exclude_padding);
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +0000672#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
Pablo Tello0c34fe22017-06-26 17:17:42 +0100673 Iterator input(_input, window_input);
674 Iterator output(_output, window);
675
Michalis Spyroubd0e6122018-01-23 09:52:16 +0000676 constexpr const int pool_size = 3;
677 const int pool_pad_right = _pool_info.pad_stride_info().pad_right();
678 const int pool_pad_top = _pool_info.pad_stride_info().pad_top();
679 const int pool_pad_left = _pool_info.pad_stride_info().pad_left();
680 const int pool_pad_bottom = _pool_info.pad_stride_info().pad_bottom();
681 int pool_stride_x = 0;
682 int pool_stride_y = 0;
Pablo Tello0c34fe22017-06-26 17:17:42 +0100683 std::tie(pool_stride_x, pool_stride_y) = _pool_info.pad_stride_info().stride();
Michalis Spyroubd0e6122018-01-23 09:52:16 +0000684 const int upper_bound_w = _input->info()->dimension(0) + (exclude_padding ? 0 : pool_pad_right);
685 const int upper_bound_h = _input->info()->dimension(1) + (exclude_padding ? 0 : pool_pad_bottom);
Pablo Tello0c34fe22017-06-26 17:17:42 +0100686
Michalis Spyroubd0e6122018-01-23 09:52:16 +0000687 const unsigned char *const input_top_ptr = _input->ptr_to_element(Coordinates(-static_cast<int>(pool_pad_left), -static_cast<int>(pool_pad_top)));
688 const unsigned char *const input_middle_ptr = _input->ptr_to_element(Coordinates(-static_cast<int>(pool_pad_left), -static_cast<int>(pool_pad_top) + 1));
689 const unsigned char *const input_bottom_ptr = _input->ptr_to_element(Coordinates(-static_cast<int>(pool_pad_left), -static_cast<int>(pool_pad_top) + 2));
Pablo Tello0c34fe22017-06-26 17:17:42 +0100690
691 execute_window_loop(window, [&](const Coordinates & id)
692 {
Georgios Pinitascdf51452017-08-31 14:21:36 +0100693 float16x4_t top_data = vld1_f16(reinterpret_cast<const float16_t *>(input_top_ptr + input.offset()));
694 float16x4_t middle_data = vld1_f16(reinterpret_cast<const float16_t *>(input_middle_ptr + input.offset()));
695 float16x4_t bottom_data = vld1_f16(reinterpret_cast<const float16_t *>(input_bottom_ptr + input.offset()));
696 float16x4_t res = {};
697
698 // Get power of 2 in case of l2 pooling
699 if(pooling_type == PoolingType::L2)
700 {
701 top_data = vmul_f16(top_data, top_data);
702 middle_data = vmul_f16(middle_data, middle_data);
703 bottom_data = vmul_f16(bottom_data, bottom_data);
704 }
705
706 if(pooling_type != PoolingType::MAX)
Pablo Tello0c34fe22017-06-26 17:17:42 +0100707 {
708 // Calculate scale
Pablo Tello77e6c552018-12-04 15:33:49 +0000709 const float scale = calculate_avg_scale(exclude_padding, DataLayout::NCHW, id, pool_size, pool_size, upper_bound_w, upper_bound_h, pool_pad_left, pool_pad_top, pool_stride_x, pool_stride_y);
Pablo Tello0c34fe22017-06-26 17:17:42 +0100710 const float16x4_t scale_v = vdup_n_f16(scale);
711 // Perform pooling
712 const float16x4_t sum_data = vadd_f16(vadd_f16(top_data, bottom_data), middle_data);
713 res = vpadd_f16(vset_lane_f16(0.f, sum_data, 3), sum_data);
714 res = vmul_f16(vpadd_f16(res, res), scale_v);
715 }
716 else
717 {
718 const float16x4_t max_data = vmax_f16(vmax_f16(top_data, bottom_data), middle_data);
719 res = vpmax_f16(vset_lane_f16(-std::numeric_limits<float>::max(), max_data, 3), max_data);
720 res = vpmax_f16(res, res);
721 }
Georgios Pinitascdf51452017-08-31 14:21:36 +0100722
723 // Calculate square-root in case of l2 pooling
724 if(pooling_type == PoolingType::L2)
725 {
726 res = vinv_f16(vinvsqrt_f16(res));
727 }
728
Pablo Tello0c34fe22017-06-26 17:17:42 +0100729 *(reinterpret_cast<float16_t *>(output.ptr())) = vget_lane_f16(res, 0);
730 },
731 input, output);
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +0000732#else /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
Pablo Tello0c34fe22017-06-26 17:17:42 +0100733 ARM_COMPUTE_UNUSED(window_input);
734 ARM_COMPUTE_UNUSED(window);
735 ARM_COMPUTE_ERROR("FP16 Not supported! Recompile the library with arch=arm64-v8.2-a");
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +0000736#endif /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
Pablo Tello0c34fe22017-06-26 17:17:42 +0100737}
738
Pablo Tello77e6c552018-12-04 15:33:49 +0000739void NEPoolingLayerKernel::pooling2_f16_nchw(const Window &window_input, const Window &window, PoolingType pooling_type, bool exclude_padding)
Pablo Tello0c34fe22017-06-26 17:17:42 +0100740{
Pablo Tello77e6c552018-12-04 15:33:49 +0000741 ARM_COMPUTE_UNUSED(pooling_type);
742 ARM_COMPUTE_UNUSED(exclude_padding);
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +0000743#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
Pablo Tello0c34fe22017-06-26 17:17:42 +0100744 Iterator input(_input, window_input);
745 Iterator output(_output, window);
Michalis Spyroubd0e6122018-01-23 09:52:16 +0000746 constexpr int pool_size = 2;
747 const int pool_pad_right = _pool_info.pad_stride_info().pad_right();
748 const int pool_pad_top = _pool_info.pad_stride_info().pad_top();
749 const int pool_pad_left = _pool_info.pad_stride_info().pad_left();
750 const int pool_pad_bottom = _pool_info.pad_stride_info().pad_bottom();
751 int pool_stride_x, pool_stride_y = 0;
752 std::tie(pool_stride_x, pool_stride_y) = _pool_info.pad_stride_info().stride();
753 const int upper_bound_w = _input->info()->dimension(0) + (exclude_padding ? 0 : pool_pad_right);
754 const int upper_bound_h = _input->info()->dimension(1) + (exclude_padding ? 0 : pool_pad_bottom);
Pablo Tello0c34fe22017-06-26 17:17:42 +0100755
Michalis Spyroubd0e6122018-01-23 09:52:16 +0000756 const unsigned char *const input_top_ptr = _input->ptr_to_element(Coordinates(-static_cast<int>(pool_pad_left), -static_cast<int>(pool_pad_top)));
757 const unsigned char *const input_bottom_ptr = _input->ptr_to_element(Coordinates(-static_cast<int>(pool_pad_left), -static_cast<int>(pool_pad_top) + 1));
Pablo Tello0c34fe22017-06-26 17:17:42 +0100758
759 execute_window_loop(window, [&](const Coordinates & id)
760 {
Georgios Pinitas13d96e02018-08-23 11:20:23 +0100761 float16x4_t top_data = vld1_f16(reinterpret_cast<const float16_t *>(input_top_ptr + input.offset()));
762 float16x4_t bottom_data = vld1_f16(reinterpret_cast<const float16_t *>(input_bottom_ptr + input.offset()));
763 float16x4_t res = {};
Pablo Tello0c34fe22017-06-26 17:17:42 +0100764
Georgios Pinitascdf51452017-08-31 14:21:36 +0100765 // Get power of 2 in case of l2 pooling
766 if(pooling_type == PoolingType::L2)
767 {
Georgios Pinitas13d96e02018-08-23 11:20:23 +0100768 top_data = vmul_f16(top_data, top_data);
769 bottom_data = vmul_f16(bottom_data, bottom_data);
Georgios Pinitascdf51452017-08-31 14:21:36 +0100770 }
771
772 if(pooling_type != PoolingType::MAX)
Pablo Tello0c34fe22017-06-26 17:17:42 +0100773 {
Pablo Tello77e6c552018-12-04 15:33:49 +0000774 const float scale = calculate_avg_scale(exclude_padding, DataLayout::NCHW, id, pool_size, pool_size, upper_bound_w, upper_bound_h, pool_pad_left, pool_pad_top, pool_stride_x, pool_stride_y);
Georgios Pinitas13d96e02018-08-23 11:20:23 +0100775 const float16x4_t scale_v = vdup_n_f16(scale);
776
777 const float16x4_t sum_data = vadd_f16(top_data, bottom_data);
778 res = vmul_f16(vpadd_f16(sum_data, sum_data), scale_v);
Pablo Tello0c34fe22017-06-26 17:17:42 +0100779 }
780 else
781 {
Georgios Pinitas13d96e02018-08-23 11:20:23 +0100782 const float16x4_t max_data = vmax_f16(top_data, bottom_data);
783 res = vpmax_f16(max_data, max_data);
Pablo Tello0c34fe22017-06-26 17:17:42 +0100784 }
Georgios Pinitascdf51452017-08-31 14:21:36 +0100785
786 // Calculate square-root in case of l2 pooling
787 if(pooling_type == PoolingType::L2)
788 {
Georgios Pinitas13d96e02018-08-23 11:20:23 +0100789 res = vinv_f16(vinvsqrt_f16(res));
Georgios Pinitascdf51452017-08-31 14:21:36 +0100790 }
791
792 // Store result
Georgios Pinitas13d96e02018-08-23 11:20:23 +0100793 *(reinterpret_cast<float16_t *>(output.ptr())) = vget_lane_f16(res, 0);
Pablo Tello0c34fe22017-06-26 17:17:42 +0100794 },
795 input, output);
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +0000796#else /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
Pablo Tello0c34fe22017-06-26 17:17:42 +0100797 ARM_COMPUTE_UNUSED(window_input);
798 ARM_COMPUTE_UNUSED(window);
799 ARM_COMPUTE_ERROR("FP16 Not supported! Recompile the library with arch=arm64-v8.2-a");
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +0000800#endif /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
Pablo Tello0c34fe22017-06-26 17:17:42 +0100801}
802
Pablo Tello77e6c552018-12-04 15:33:49 +0000803void NEPoolingLayerKernel::pooling3_qasymm8_nchw(const Window &window_input, const Window &window, PoolingType pooling_type, bool exclude_padding)
Georgios Pinitas55186712018-01-08 17:37:12 +0000804{
805 Iterator input(_input, window_input);
806 Iterator output(_output, window);
807
Michalis Spyroubd0e6122018-01-23 09:52:16 +0000808 constexpr int pool_size = 3;
809 const int pool_pad_right = _pool_info.pad_stride_info().pad_right();
810 const int pool_pad_top = _pool_info.pad_stride_info().pad_top();
811 const int pool_pad_left = _pool_info.pad_stride_info().pad_left();
812 const int pool_pad_bottom = _pool_info.pad_stride_info().pad_bottom();
813 int pool_stride_x = 0;
814 int pool_stride_y = 0;
Georgios Pinitas55186712018-01-08 17:37:12 +0000815 std::tie(pool_stride_x, pool_stride_y) = _pool_info.pad_stride_info().stride();
Michalis Spyroubd0e6122018-01-23 09:52:16 +0000816 const int upper_bound_w = _input->info()->dimension(0) + (exclude_padding ? 0 : pool_pad_right);
817 const int upper_bound_h = _input->info()->dimension(1) + (exclude_padding ? 0 : pool_pad_bottom);
Georgios Pinitas55186712018-01-08 17:37:12 +0000818
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100819 const UniformQuantizationInfo &input_qinfo = _input->info()->quantization_info().uniform();
820 const UniformQuantizationInfo &output_qinfo = _output->info()->quantization_info().uniform();
Georgios Pinitasd66094e2019-04-15 15:44:17 +0100821
Michalis Spyroubd0e6122018-01-23 09:52:16 +0000822 const uint8_t *const input_top_ptr = _input->ptr_to_element(Coordinates(-static_cast<int>(pool_pad_left), -static_cast<int>(pool_pad_top)));
823 const uint8_t *const input_middle_ptr = _input->ptr_to_element(Coordinates(-static_cast<int>(pool_pad_left), -static_cast<int>(pool_pad_top) + 1));
824 const uint8_t *const input_bottom_ptr = _input->ptr_to_element(Coordinates(-static_cast<int>(pool_pad_left), -static_cast<int>(pool_pad_top) + 2));
Georgios Pinitas55186712018-01-08 17:37:12 +0000825
826 execute_window_loop(window, [&](const Coordinates & id)
827 {
828 const auto top_data = vld1q_u8(reinterpret_cast<const uint8_t *>(input_top_ptr + input.offset()));
829 const auto middle_data = vld1q_u8(reinterpret_cast<const uint8_t *>(input_middle_ptr + input.offset()));
830 const auto bottom_data = vld1q_u8(reinterpret_cast<const uint8_t *>(input_bottom_ptr + input.offset()));
Georgios Pinitasd66094e2019-04-15 15:44:17 +0100831 uint8x8_t fres = {};
832 uint8x16_t fqres = {};
Georgios Pinitas55186712018-01-08 17:37:12 +0000833
834 if(pooling_type == PoolingType::AVG)
835 {
836 // Convert data to u16
837 const uint16x8x2_t top_data_u16 = { { vmovl_u8(vget_low_u8(top_data)), vmovl_u8(vget_high_u8(top_data)) } };
838 const uint16x8x2_t middle_data_u16 = { { vmovl_u8(vget_low_u8(middle_data)), vmovl_u8(vget_high_u8(middle_data)) } };
839 const uint16x8x2_t bottom_data_u16 = { { vmovl_u8(vget_low_u8(bottom_data)), vmovl_u8(vget_high_u8(bottom_data)) } };
840
841 // Calculate row sums
842 const uint16x8x2_t vrsum =
843 {
844 {
845 vaddq_u16(vaddq_u16(top_data_u16.val[0], bottom_data_u16.val[0]), middle_data_u16.val[0]),
846 vaddq_u16(vaddq_u16(top_data_u16.val[1], bottom_data_u16.val[1]), middle_data_u16.val[1]),
847 }
848 };
849 const uint16x8x2_t vrsum_shifted_1 =
850 {
851 {
852 vextq_u16(vrsum.val[0], vrsum.val[1], 1),
853 vextq_u16(vrsum.val[1], vrsum.val[1], 1)
854 }
855 };
856 const uint16x8x2_t vrsum_shifted_2 =
857 {
858 {
859 vextq_u16(vrsum.val[0], vrsum.val[1], 2),
860 vextq_u16(vrsum.val[1], vrsum.val[1], 2)
861 }
862 };
863 // Calculate final sum
864 uint16x8x2_t final_sum =
865 {
866 {
867 vaddq_u16(vaddq_u16(vrsum.val[0], vrsum_shifted_1.val[0]), vrsum_shifted_2.val[0]),
868 vaddq_u16(vaddq_u16(vrsum.val[1], vrsum_shifted_1.val[1]), vrsum_shifted_2.val[1]),
869 }
870 };
871 if(pool_stride_x == 2)
872 {
873 uint16x8_t res =
874 {
875 vgetq_lane_u16(final_sum.val[0], 0),
876 vgetq_lane_u16(final_sum.val[0], 2),
877 vgetq_lane_u16(final_sum.val[0], 4),
878 vgetq_lane_u16(final_sum.val[0], 6),
879 vgetq_lane_u16(final_sum.val[1], 0),
880 vgetq_lane_u16(final_sum.val[1], 2),
881 vgetq_lane_u16(final_sum.val[1], 4),
882 vgetq_lane_u16(final_sum.val[1], 6),
883 };
884
Pablo Tello77e6c552018-12-04 15:33:49 +0000885 scale_vector_s16x8(exclude_padding, res, id, 0, 1,
886 pool_size, upper_bound_w, upper_bound_h,
887 pool_pad_left, pool_pad_top, pool_stride_x, pool_stride_y);
Georgios Pinitasd66094e2019-04-15 15:44:17 +0100888 fres = vmovn_u16(res);
Georgios Pinitas55186712018-01-08 17:37:12 +0000889 }
890 else
891 {
892 // Scale lower result
Pablo Tello77e6c552018-12-04 15:33:49 +0000893 scale_vector_s16x8(exclude_padding, final_sum.val[0], id, 0, 1,
894 pool_size, upper_bound_w, upper_bound_h,
895 pool_pad_left, pool_pad_top, pool_stride_x, pool_stride_y);
Georgios Pinitas55186712018-01-08 17:37:12 +0000896 // Scale lower result
Pablo Tello77e6c552018-12-04 15:33:49 +0000897 scale_vector_s16x8(exclude_padding, final_sum.val[1], id, 8, 1,
898 pool_size, upper_bound_w, upper_bound_h,
899 pool_pad_left, pool_pad_top, pool_stride_x, pool_stride_y);
Georgios Pinitasd66094e2019-04-15 15:44:17 +0100900 fqres = vcombine_u8(vmovn_u16(final_sum.val[0]), vmovn_u16(final_sum.val[1]));
Georgios Pinitas55186712018-01-08 17:37:12 +0000901 }
902 }
903 else
904 {
905 const uint8x16_t max_data = vmaxq_u8(vmaxq_u8(top_data, bottom_data), middle_data);
906 const uint8x16_t max_data_shift1 = vextq_u8(max_data, max_data, 1);
907 const uint8x16_t max_data_shift2 = vextq_u8(max_data, max_data, 2);
908 const uint8x16_t final_max = vmaxq_u8(vmaxq_u8(max_data, max_data_shift1), max_data_shift2);
909
910 if(pool_stride_x == 2)
911 {
912 const uint8x8x2_t table = { { vget_low_u8(final_max), vget_high_u8(final_max) } };
913 static const uint8x8_t lookup_val = { 0, 2, 4, 6, 8, 10, 12, 14 };
Georgios Pinitasd66094e2019-04-15 15:44:17 +0100914 fres = vtbl2_u8(table, lookup_val);
Georgios Pinitas55186712018-01-08 17:37:12 +0000915 }
916 else
917 {
Georgios Pinitasd66094e2019-04-15 15:44:17 +0100918 fqres = final_max;
Georgios Pinitas55186712018-01-08 17:37:12 +0000919 }
920 }
Georgios Pinitasd66094e2019-04-15 15:44:17 +0100921
922 // Store result
923 if(pool_stride_x == 1)
924 {
925 if(input_qinfo != output_qinfo)
926 {
927 fqres = vquantize(vdequantize(fqres, input_qinfo), output_qinfo);
928 }
929 vst1q_u8(reinterpret_cast<uint8_t *>(output.ptr()), fqres);
930 }
931 else
932 {
933 if(input_qinfo != output_qinfo)
934 {
935 fres = vquantize(vdequantize(fres, input_qinfo), output_qinfo);
936 }
937 vst1_u8(reinterpret_cast<uint8_t *>(output.ptr()), fres);
938 }
Georgios Pinitas55186712018-01-08 17:37:12 +0000939 },
940 input, output);
941}
942
Pablo Tello77e6c552018-12-04 15:33:49 +0000943void NEPoolingLayerKernel::poolingMxN_f16_nchw(const Window &window_input, const Window &window, PoolingType pooling_type, bool exclude_padding)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100944{
Pablo Tello77e6c552018-12-04 15:33:49 +0000945 ARM_COMPUTE_UNUSED(pooling_type);
946 ARM_COMPUTE_UNUSED(exclude_padding);
Isabella Gottardi7567f5f2018-01-30 15:26:00 +0000947#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
948 Iterator input(_input, window_input);
949 Iterator output(_output, window);
950
951 const int pool_size_x = _pool_info.is_global_pooling() ? _input->info()->tensor_shape().x() : _pool_info.pool_size().width;
952 const int pool_size_y = _pool_info.is_global_pooling() ? _input->info()->tensor_shape().y() : _pool_info.pool_size().height;
953 const int pool_pad_right = _pool_info.pad_stride_info().pad_right();
954 const int pool_pad_top = _pool_info.pad_stride_info().pad_top();
955 const int pool_pad_left = _pool_info.pad_stride_info().pad_left();
956 const int pool_pad_bottom = _pool_info.pad_stride_info().pad_bottom();
957 int pool_stride_x = 0;
958 int pool_stride_y = 0;
959 std::tie(pool_stride_x, pool_stride_y) = _pool_info.pad_stride_info().stride();
960 const int upper_bound_w = _input->info()->dimension(0) + (exclude_padding ? 0 : pool_pad_right);
961 const int upper_bound_h = _input->info()->dimension(1) + (exclude_padding ? 0 : pool_pad_bottom);
962
963 execute_window_loop(window, [&](const Coordinates & id)
964 {
965 float16_t res = 0.0f;
966 float16x8_t vres = vdupq_n_f16(0.0f);
967
968 if(pooling_type != PoolingType::MAX)
969 {
970 // Calculate scale
Pablo Tello77e6c552018-12-04 15:33:49 +0000971 const float scale = calculate_avg_scale(exclude_padding, DataLayout::NCHW, id, pool_size_x, pool_size_y, upper_bound_w, upper_bound_h, pool_pad_left, pool_pad_top, pool_stride_x, pool_stride_y);
Isabella Gottardi7567f5f2018-01-30 15:26:00 +0000972
973 // Perform pooling
974
975 for(int y = 0; y < pool_size_y; ++y)
976 {
977 int x = 0;
978 for(; x <= (pool_size_x - 8); x += 8)
979 {
Georgios Pinitas0922dbb2019-11-25 18:39:27 +0000980 const float16x8_t data = vld1q_f16(reinterpret_cast<const float16_t *>(input.ptr() + (x - pool_pad_left) * static_cast<int>(_input->info()->strides_in_bytes().x()) +
981 (y - pool_pad_top) * static_cast<int>(_input->info()->strides_in_bytes().y())));
Isabella Gottardi7567f5f2018-01-30 15:26:00 +0000982
983 // Get power of 2 in case of l2 pooling and accumulate
984 if(pooling_type == PoolingType::L2)
985 {
986 vres = vaddq_f16(vres, vmulq_f16(data, data));
987 }
988 else
989 {
990 vres = vaddq_f16(vres, data);
991 }
992 }
993
994 // Leftover for loop
995 for(; x < pool_size_x; ++x)
996 {
Georgios Pinitas0922dbb2019-11-25 18:39:27 +0000997 float16_t data = *(reinterpret_cast<const float16_t *>(input.ptr() + (x - pool_pad_left) * static_cast<int>(_input->info()->strides_in_bytes().x())
998 + (y - pool_pad_top) * static_cast<int>(_input->info()->strides_in_bytes().y())));
Isabella Gottardi7567f5f2018-01-30 15:26:00 +0000999
1000 // Get power of 2 in case of l2 pooling
1001 if(pooling_type == PoolingType::L2)
1002 {
1003 data *= data;
1004 }
1005
1006 res += data;
1007 }
1008 }
1009
1010 // Reduction
1011 float16x4_t tmp = vpadd_f16(vget_high_f16(vres), vget_low_f16(vres));
1012 res += vget_lane_f16(tmp, 0);
1013 res += vget_lane_f16(tmp, 1);
1014 res += vget_lane_f16(tmp, 2);
1015 res += vget_lane_f16(tmp, 3);
1016
1017 // Divide by scale
1018 res *= scale;
1019 }
1020 else
1021 {
1022 float16x8_t vres = vdupq_n_f16(std::numeric_limits<float>::lowest());
1023 res = std::numeric_limits<float>::lowest();
1024
1025 for(int y = 0; y < pool_size_y; ++y)
1026 {
1027 int x = 0;
1028 for(; x <= (pool_size_x - 8); x += 8)
1029 {
Georgios Pinitas0922dbb2019-11-25 18:39:27 +00001030 const float16x8_t data = vld1q_f16(reinterpret_cast<const float16_t *>(input.ptr() + (x - pool_pad_left) * static_cast<int>(_input->info()->strides_in_bytes().x()) +
1031 (y - pool_pad_top) * static_cast<int>(_input->info()->strides_in_bytes().y())));
Isabella Gottardi7567f5f2018-01-30 15:26:00 +00001032 vres = vmaxq_f16(vres, data);
1033 }
1034
1035 // Leftover for loop
1036 for(; x < pool_size_x; ++x)
1037 {
Georgios Pinitas0922dbb2019-11-25 18:39:27 +00001038 const float16_t data = *(reinterpret_cast<const float16_t *>(input.ptr() + (x - pool_pad_left) * static_cast<int>(_input->info()->strides_in_bytes().x())
1039 + (y - pool_pad_top) * static_cast<int>(_input->info()->strides_in_bytes().y())));
1040 res = std::max(res, data);
Isabella Gottardi7567f5f2018-01-30 15:26:00 +00001041 }
1042 }
1043
1044 float16x4_t tmp = vpmax_f16(vget_high_f16(vres), vget_low_f16(vres));
1045 res = std::max(res, vget_lane_f16(tmp, 0));
1046 res = std::max(res, vget_lane_f16(tmp, 1));
1047 res = std::max(res, vget_lane_f16(tmp, 2));
1048 res = std::max(res, vget_lane_f16(tmp, 3));
1049 }
1050
1051 // Calculate square-root in case of l2 pooling
1052 if(pooling_type == PoolingType::L2)
1053 {
1054 res = std::sqrt(res);
1055 }
1056
1057 // Store result
1058 *(reinterpret_cast<float16_t *>(output.ptr())) = res;
1059 },
1060 input, output);
1061
1062#else /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
1063 ARM_COMPUTE_UNUSED(window_input);
1064 ARM_COMPUTE_UNUSED(window);
1065 ARM_COMPUTE_ERROR("FP16 Not supported! Recompile the library with arch=arm64-v8.2-a");
1066#endif /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
1067}
1068
Pablo Tello77e6c552018-12-04 15:33:49 +00001069void NEPoolingLayerKernel::poolingMxN_f16_nhwc(const Window &window_input, const Window &window, PoolingType pooling_type, bool exclude_padding)
Michalis Spyrou57dac842018-03-01 16:03:50 +00001070{
Pablo Tello77e6c552018-12-04 15:33:49 +00001071 ARM_COMPUTE_UNUSED(pooling_type);
1072 ARM_COMPUTE_UNUSED(exclude_padding);
Michalis Spyrou57dac842018-03-01 16:03:50 +00001073#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
1074 Iterator input(_input, window_input);
1075 Iterator output(_output, window);
1076
1077 const int pool_size_x = _pool_info.is_global_pooling() ? _input->info()->tensor_shape().y() : _pool_info.pool_size().width;
1078 const int pool_size_y = _pool_info.is_global_pooling() ? _input->info()->tensor_shape().z() : _pool_info.pool_size().height;
1079 const int pool_pad_right = _pool_info.pad_stride_info().pad_right();
1080 const int pool_pad_top = _pool_info.pad_stride_info().pad_top();
1081 const int pool_pad_left = _pool_info.pad_stride_info().pad_left();
1082 const int pool_pad_bottom = _pool_info.pad_stride_info().pad_bottom();
1083 int pool_stride_x = 0;
1084 int pool_stride_y = 0;
1085 std::tie(pool_stride_x, pool_stride_y) = _pool_info.pad_stride_info().stride();
1086 const int upper_bound_w = _input->info()->dimension(1) + (exclude_padding ? 0 : pool_pad_right);
1087 const int upper_bound_h = _input->info()->dimension(2) + (exclude_padding ? 0 : pool_pad_bottom);
1088
1089 float16x8_t vres;
1090
1091 execute_window_loop(window, [&](const Coordinates & id)
1092 {
Michalis Spyrouced25572018-10-01 16:26:20 +01001093 const int idx_width = id.y() * pool_stride_x;
1094 const int idx_height = id.z() * pool_stride_y;
1095 const int pool_limit_y = pool_pad_top - idx_height;
1096 const int pool_limit_x = pool_pad_left - idx_width;
1097
1098 const int pool_start_y = std::max(0, window_input.z().start() + pool_limit_y);
1099 const int pool_end_y = std::min(pool_size_y, window_input.z().end() + pool_limit_y);
1100 const int pool_start_x = std::max(0, window_input.y().start() + pool_limit_x);
1101 const int pool_end_x = std::min(pool_size_x, window_input.y().end() + pool_limit_x);
1102
Michalis Spyrou57dac842018-03-01 16:03:50 +00001103 if(pooling_type != PoolingType::MAX)
1104 {
1105 // Calculate scale
Pablo Tello77e6c552018-12-04 15:33:49 +00001106 const float scale = calculate_avg_scale(exclude_padding, DataLayout::NHWC, id, pool_size_x, pool_size_y, upper_bound_w, upper_bound_h, pool_pad_left, pool_pad_top, pool_stride_x,
1107 pool_stride_y);
Michalis Spyrou57dac842018-03-01 16:03:50 +00001108 const float16x8_t scale_v = vdupq_n_f16(scale);
1109
1110 // Perform pooling
1111 vres = vdupq_n_f16(0.0f);
Michalis Spyrouced25572018-10-01 16:26:20 +01001112 for(int y = pool_start_y; y < pool_end_y; ++y)
Michalis Spyrou57dac842018-03-01 16:03:50 +00001113 {
Michalis Spyrouced25572018-10-01 16:26:20 +01001114 for(int x = pool_start_x; x < pool_end_x; ++x)
Michalis Spyrou57dac842018-03-01 16:03:50 +00001115 {
Georgios Pinitas0922dbb2019-11-25 18:39:27 +00001116 const float16x8_t data = vld1q_f16(reinterpret_cast<const float16_t *>(input.ptr() + (x - pool_pad_left) * static_cast<int>(_input->info()->strides_in_bytes().y()) +
1117 (y - pool_pad_top) * static_cast<int>(_input->info()->strides_in_bytes().z())));
Michalis Spyrou57dac842018-03-01 16:03:50 +00001118
1119 // Get power of 2 in case of l2 pooling and accumulate
1120 if(pooling_type == PoolingType::L2)
1121 {
1122 vres = vaddq_f16(vres, vmulq_f16(data, data));
1123 }
1124 else
1125 {
1126 vres = vaddq_f16(vres, data);
1127 }
1128 }
1129 }
1130 // Divide by scale
1131 vres = vmulq_f16(vres, scale_v);
1132 }
1133 else
1134 {
1135 vres = vdupq_n_f16(std::numeric_limits<float>::lowest());
Michalis Spyrouced25572018-10-01 16:26:20 +01001136
1137 for(int y = pool_start_y; y < pool_end_y; ++y)
Michalis Spyrou57dac842018-03-01 16:03:50 +00001138 {
Michalis Spyrouced25572018-10-01 16:26:20 +01001139 for(int x = pool_start_x; x < pool_end_x; ++x)
Michalis Spyrou57dac842018-03-01 16:03:50 +00001140 {
Georgios Pinitas0922dbb2019-11-25 18:39:27 +00001141 const float16x8_t data = vld1q_f16(reinterpret_cast<const float16_t *>(input.ptr() + (x - pool_pad_left) * static_cast<int>(_input->info()->strides_in_bytes().y()) +
1142 (y - pool_pad_top) * static_cast<int>(_input->info()->strides_in_bytes().z())));
Michalis Spyrou57dac842018-03-01 16:03:50 +00001143 vres = vmaxq_f16(vres, data);
1144 }
1145 }
1146 }
1147
1148 // Calculate square-root in case of l2 pooling
1149 if(pooling_type == PoolingType::L2)
1150 {
1151 float16x8_t sqrt_reciprocal = vrsqrteq_f16(vres);
1152 vres = vmulq_f16(vres, vmulq_f16(vrsqrtsq_f16(vmulq_f16(vres, sqrt_reciprocal), sqrt_reciprocal), sqrt_reciprocal));
1153 }
1154
1155 // Store result
1156 vst1q_f16(reinterpret_cast<float16_t *>(output.ptr()), vres);
1157 },
1158 input, output);
1159
1160#else /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
1161 ARM_COMPUTE_UNUSED(window_input);
1162 ARM_COMPUTE_UNUSED(window);
1163 ARM_COMPUTE_ERROR("FP16 Not supported! Recompile the library with arch=arm64-v8.2-a");
1164#endif /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
1165}
1166
Pablo Tello77e6c552018-12-04 15:33:49 +00001167void NEPoolingLayerKernel::poolingMxN_f32_nchw(const Window &window_input, const Window &window, PoolingType pooling_type, bool exclude_padding)
Isabella Gottardi7567f5f2018-01-30 15:26:00 +00001168{
1169 Iterator input(_input, window_input);
1170 Iterator output(_output, window);
1171
1172 const int pool_size_x = _pool_info.is_global_pooling() ? _input->info()->tensor_shape().x() : _pool_info.pool_size().width;
1173 const int pool_size_y = _pool_info.is_global_pooling() ? _input->info()->tensor_shape().y() : _pool_info.pool_size().height;
Michalis Spyroubd0e6122018-01-23 09:52:16 +00001174 const int pool_pad_right = _pool_info.pad_stride_info().pad_right();
1175 const int pool_pad_top = _pool_info.pad_stride_info().pad_top();
1176 const int pool_pad_left = _pool_info.pad_stride_info().pad_left();
1177 const int pool_pad_bottom = _pool_info.pad_stride_info().pad_bottom();
1178 int pool_stride_x = 0;
1179 int pool_stride_y = 0;
Gian Marco Iodice16824302017-09-28 15:41:37 +01001180 std::tie(pool_stride_x, pool_stride_y) = _pool_info.pad_stride_info().stride();
Michalis Spyroubd0e6122018-01-23 09:52:16 +00001181 const int upper_bound_w = _input->info()->dimension(0) + (exclude_padding ? 0 : pool_pad_right);
1182 const int upper_bound_h = _input->info()->dimension(1) + (exclude_padding ? 0 : pool_pad_bottom);
Gian Marco Iodice16824302017-09-28 15:41:37 +01001183
1184 execute_window_loop(window, [&](const Coordinates & id)
1185 {
1186 float res = 0.0f;
1187
1188 if(pooling_type != PoolingType::MAX)
1189 {
1190 // Calculate scale
Pablo Tello77e6c552018-12-04 15:33:49 +00001191 const float scale = calculate_avg_scale(exclude_padding, DataLayout::NCHW, id, pool_size_x, pool_size_y, upper_bound_w, upper_bound_h, pool_pad_left, pool_pad_top, pool_stride_x, pool_stride_y);
Gian Marco Iodice16824302017-09-28 15:41:37 +01001192
1193 // Perform pooling
1194 float32x4_t vres = vdupq_n_f32(0.0f);
1195
Isabella Gottardi7567f5f2018-01-30 15:26:00 +00001196 for(int y = 0; y < pool_size_y; ++y)
Gian Marco Iodice16824302017-09-28 15:41:37 +01001197 {
1198 int x = 0;
Isabella Gottardi7567f5f2018-01-30 15:26:00 +00001199 for(; x <= (pool_size_x - 4); x += 4)
Gian Marco Iodice16824302017-09-28 15:41:37 +01001200 {
Michalis Spyrou7c60c992019-10-10 14:33:47 +01001201 const float32x4_t data = vld1q_f32(reinterpret_cast<const float *>(input.ptr() + (x - pool_pad_left) * static_cast<int>(_input->info()->strides_in_bytes().x()) + (y - pool_pad_top) * static_cast<int>
1202 (_input->info()->strides_in_bytes().y())));
Gian Marco Iodice16824302017-09-28 15:41:37 +01001203
1204 // Get power of 2 in case of l2 pooling and accumulate
1205 if(pooling_type == PoolingType::L2)
1206 {
1207 vres = vmlaq_f32(vres, data, data);
1208 }
1209 else
1210 {
1211 vres = vaddq_f32(vres, data);
1212 }
1213 }
1214
1215 // Leftover for loop
Isabella Gottardi7567f5f2018-01-30 15:26:00 +00001216 for(; x < pool_size_x; ++x)
Gian Marco Iodice16824302017-09-28 15:41:37 +01001217 {
Michalis Spyrou7c60c992019-10-10 14:33:47 +01001218 float data = *(reinterpret_cast<const float *>(input.ptr() + (x - pool_pad_left) * static_cast<int>(_input->info()->strides_in_bytes().x()) + (y - pool_pad_top) * static_cast<int>
1219 (_input->info()->strides_in_bytes().y())));
Gian Marco Iodice16824302017-09-28 15:41:37 +01001220
1221 // Get power of 2 in case of l2 pooling
1222 if(pooling_type == PoolingType::L2)
1223 {
1224 data *= data;
1225 }
1226
1227 res += data;
1228 }
1229 }
1230
1231#if defined(__aarch64__)
1232 // Reduction operation available on 64 bit architectures only
1233 res += vaddvq_f32(vres);
1234#else // __aarch64__
1235 // Reduction
1236 float32x2_t tmp = vpadd_f32(vget_high_f32(vres), vget_low_f32(vres));
1237 tmp = vpadd_f32(tmp, tmp);
1238
1239 res += vget_lane_f32(tmp, 0);
1240#endif // __aarch64__
1241 // Divide by scale
1242 res *= scale;
1243 }
1244 else
1245 {
Isabella Gottardi7567f5f2018-01-30 15:26:00 +00001246 float32x4_t vres = vdupq_n_f32(std::numeric_limits<float>::lowest());
1247 res = std::numeric_limits<float>::lowest();
Gian Marco Iodice16824302017-09-28 15:41:37 +01001248
Isabella Gottardi7567f5f2018-01-30 15:26:00 +00001249 for(int y = 0; y < pool_size_y; ++y)
Gian Marco Iodice16824302017-09-28 15:41:37 +01001250 {
1251 int x = 0;
Isabella Gottardi7567f5f2018-01-30 15:26:00 +00001252 for(; x <= (pool_size_x - 4); x += 4)
Gian Marco Iodice16824302017-09-28 15:41:37 +01001253 {
Michalis Spyrou7c60c992019-10-10 14:33:47 +01001254 const float32x4_t data = vld1q_f32(reinterpret_cast<const float *>(input.ptr() + (x - pool_pad_left) * static_cast<int>(_input->info()->strides_in_bytes().x()) + (y - pool_pad_top) * static_cast<int>
1255 (_input->info()->strides_in_bytes().y())));
Gian Marco Iodice16824302017-09-28 15:41:37 +01001256 vres = vmaxq_f32(vres, data);
1257 }
1258
1259 // Leftover for loop
Isabella Gottardi7567f5f2018-01-30 15:26:00 +00001260 for(; x < pool_size_x; ++x)
Gian Marco Iodice16824302017-09-28 15:41:37 +01001261 {
Michalis Spyrou7c60c992019-10-10 14:33:47 +01001262 const float data = *(reinterpret_cast<const float *>(input.ptr() + (x - pool_pad_left) * static_cast<int>(_input->info()->strides_in_bytes().x()) + (y - pool_pad_top) * static_cast<int>
1263 (_input->info()->strides_in_bytes().y())));
Gian Marco Iodice16824302017-09-28 15:41:37 +01001264 res = std::max(res, data);
1265 }
1266 }
1267
1268#if defined(__aarch64__)
1269 // Reduction operation available on 64 bit architectures only
1270 res = std::max(vmaxvq_f32(vres), res);
1271#else // __aarch64__
1272 float32x2_t tmp = vpmax_f32(vget_high_f32(vres), vget_low_f32(vres));
1273 tmp = vpmax_f32(tmp, tmp);
1274
1275 res = std::max(res, vget_lane_f32(tmp, 0));
1276#endif // __aarch64__
1277 }
1278
1279 // Calculate square-root in case of l2 pooling
1280 if(pooling_type == PoolingType::L2)
1281 {
1282 res = std::sqrt(res);
1283 }
1284
1285 // Store result
1286 *(reinterpret_cast<float *>(output.ptr())) = res;
1287 },
1288 input, output);
1289}
1290
Pablo Tello77e6c552018-12-04 15:33:49 +00001291void NEPoolingLayerKernel::pooling2_f32_nchw(const Window &window_input, const Window &window, PoolingType pooling_type, bool exclude_padding)
1292{
1293 Iterator input(_input, window_input);
1294 Iterator output(_output, window);
1295
1296 constexpr int pool_size = 2;
1297 const int pool_pad_right = _pool_info.pad_stride_info().pad_right();
1298 const int pool_pad_top = _pool_info.pad_stride_info().pad_top();
1299 const int pool_pad_left = _pool_info.pad_stride_info().pad_left();
1300 const int pool_pad_bottom = _pool_info.pad_stride_info().pad_bottom();
1301 int pool_stride_x = 0;
1302 int pool_stride_y = 0;
1303 std::tie(pool_stride_x, pool_stride_y) = _pool_info.pad_stride_info().stride();
1304 const int upper_bound_w = _input->info()->dimension(0) + (exclude_padding ? 0 : pool_pad_right);
1305 const int upper_bound_h = _input->info()->dimension(1) + (exclude_padding ? 0 : pool_pad_bottom);
1306
1307 const uint8_t *const input_top_ptr = _input->ptr_to_element(Coordinates(-static_cast<int>(pool_pad_left), -static_cast<int>(pool_pad_top)));
1308 const uint8_t *const input_bottom_ptr = _input->ptr_to_element(Coordinates(-static_cast<int>(pool_pad_left), -static_cast<int>(pool_pad_top) + 1));
1309
1310 execute_window_loop(window, [&](const Coordinates & id)
1311 {
1312 float32x2_t top_data = vld1_f32(reinterpret_cast<const float *>(input_top_ptr + input.offset()));
1313 float32x2_t bottom_data = vld1_f32(reinterpret_cast<const float *>(input_bottom_ptr + input.offset()));
1314 float32x2_t res = {};
1315 float final_res = 0;
1316
1317 // Get power of 2 in case of l2 pooling
1318 if(pooling_type == PoolingType::L2)
1319 {
1320 top_data = vmul_f32(top_data, top_data);
1321 bottom_data = vmul_f32(bottom_data, bottom_data);
1322 }
1323
1324 if(pooling_type != PoolingType::MAX)
1325 {
1326 // Calculate scale
1327 float scale = calculate_avg_scale(exclude_padding, DataLayout::NCHW, id, pool_size, pool_size, upper_bound_w, upper_bound_h, pool_pad_left, pool_pad_top, pool_stride_x, pool_stride_y);
1328 const float32x2_t scale_v = vdup_n_f32(scale);
1329
1330 // Perform pooling
1331 const float32x2_t sum_data = vadd_f32(top_data, bottom_data);
1332 res = vmul_f32(vpadd_f32(sum_data, sum_data), scale_v);
1333 }
1334 else
1335 {
1336 const float32x2_t max_data = vmax_f32(top_data, bottom_data);
1337 res = vpmax_f32(max_data, max_data);
1338 }
1339 final_res = vget_lane_f32(res, 0);
1340
1341 // Calculate square-root in case of l2 pooling
1342 if(pooling_type == PoolingType::L2)
1343 {
1344 final_res = sqrt(final_res);
1345 }
1346
1347 // Store result
1348 *(reinterpret_cast<float *>(output.ptr())) = final_res;
1349 },
1350 input, output);
1351}
1352
1353void NEPoolingLayerKernel::pooling3_f32_nchw(const Window &window_input, const Window &window, PoolingType pooling_type, bool exclude_padding)
1354{
1355 Iterator input(_input, window_input);
1356 Iterator output(_output, window);
1357
1358 constexpr const int pool_size = 3;
1359 const int pool_pad_right = _pool_info.pad_stride_info().pad_right();
1360 const int pool_pad_top = _pool_info.pad_stride_info().pad_top();
1361 const int pool_pad_left = _pool_info.pad_stride_info().pad_left();
1362 const int pool_pad_bottom = _pool_info.pad_stride_info().pad_bottom();
1363 int pool_stride_x = 0;
1364 int pool_stride_y = 0;
1365 std::tie(pool_stride_x, pool_stride_y) = _pool_info.pad_stride_info().stride();
1366 const int upper_bound_w = _input->info()->dimension(0) + (exclude_padding ? 0 : pool_pad_right);
1367 const int upper_bound_h = _input->info()->dimension(1) + (exclude_padding ? 0 : pool_pad_bottom);
1368
1369 const uint8_t *const input_top_ptr = _input->ptr_to_element(Coordinates(-static_cast<int>(pool_pad_left), -static_cast<int>(pool_pad_top)));
1370 const uint8_t *const input_middle_ptr = _input->ptr_to_element(Coordinates(-static_cast<int>(pool_pad_left), -static_cast<int>(pool_pad_top) + 1));
1371 const uint8_t *const input_bottom_ptr = _input->ptr_to_element(Coordinates(-static_cast<int>(pool_pad_left), -static_cast<int>(pool_pad_top) + 2));
1372
1373 execute_window_loop(window, [&](const Coordinates & id)
1374 {
1375 float32x4_t top_data = vld1q_f32(reinterpret_cast<const float *>(input_top_ptr + input.offset()));
1376 float32x4_t middle_data = vld1q_f32(reinterpret_cast<const float *>(input_middle_ptr + input.offset()));
1377 float32x4_t bottom_data = vld1q_f32(reinterpret_cast<const float *>(input_bottom_ptr + input.offset()));
1378 float32x2_t res = {};
1379 float final_res = 0;
1380
1381 // Get power of 2 in case of l2 pooling
1382 if(pooling_type == PoolingType::L2)
1383 {
1384 top_data = vmulq_f32(top_data, top_data);
1385 middle_data = vmulq_f32(middle_data, middle_data);
1386 bottom_data = vmulq_f32(bottom_data, bottom_data);
1387 }
1388
1389 if(pooling_type != PoolingType::MAX)
1390 {
1391 // Calculate scale
1392 float scale = calculate_avg_scale(exclude_padding, DataLayout::NCHW, id, pool_size, pool_size, upper_bound_w, upper_bound_h, pool_pad_left, pool_pad_top, pool_stride_x, pool_stride_y);
1393 const float32x2_t scale_v = vdup_n_f32(scale);
1394
1395 // Perform pooling
1396 const float32x4_t sum_data = vaddq_f32(vaddq_f32(top_data, bottom_data), middle_data);
1397 res = vpadd_f32(vget_high_f32(vsetq_lane_f32(0.f, sum_data, 3)), vget_low_f32(sum_data));
1398 res = vmul_f32(vpadd_f32(res, res), scale_v);
1399 }
1400 else
1401 {
1402 const float32x4_t max_data = vmaxq_f32(vmaxq_f32(top_data, bottom_data), middle_data);
1403 res = vpmax_f32(vget_high_f32(vsetq_lane_f32(-std::numeric_limits<float>::max(), max_data, 3)), vget_low_f32(max_data));
1404 res = vpmax_f32(res, res);
1405 }
1406 final_res = vget_lane_f32(res, 0);
1407
1408 // Calculate square-root in case of l2 pooling
1409 if(pooling_type == PoolingType::L2)
1410 {
1411 final_res = sqrt(final_res);
1412 }
1413
1414 // Store result
1415 *(reinterpret_cast<float *>(output.ptr())) = final_res;
1416 },
1417 input, output);
1418}
1419
1420void NEPoolingLayerKernel::pooling7_f32_nchw(const Window &window_input, const Window &window, PoolingType pooling_type, bool exclude_padding)
1421{
1422 Iterator input(_input, window_input);
1423 Iterator output(_output, window);
1424
1425 constexpr const int pool_size = 7;
1426 const int pool_pad_right = _pool_info.pad_stride_info().pad_right();
1427 const int pool_pad_top = _pool_info.pad_stride_info().pad_top();
1428 const int pool_pad_left = _pool_info.pad_stride_info().pad_left();
1429 const int pool_pad_bottom = _pool_info.pad_stride_info().pad_bottom();
1430 int pool_stride_x = 0;
1431 int pool_stride_y = 0;
1432 std::tie(pool_stride_x, pool_stride_y) = _pool_info.pad_stride_info().stride();
1433 const int upper_bound_w = _input->info()->dimension(0) + (exclude_padding ? 0 : pool_pad_right);
1434 const int upper_bound_h = _input->info()->dimension(1) + (exclude_padding ? 0 : pool_pad_bottom);
1435
1436 std::array<const uint8_t *, pool_size> input_ptrs{ {} };
1437 for(int i = 0; i < pool_size; ++i)
1438 {
1439 input_ptrs[i] = _input->ptr_to_element(Coordinates(-static_cast<int>(pool_pad_left), -static_cast<int>(pool_pad_top) + i));
1440 }
1441
1442 execute_window_loop(window, [&](const Coordinates & id)
1443 {
1444 float32x2_t res = {};
1445 float final_res = 0.f;
1446 if(pooling_type != PoolingType::MAX)
1447 {
1448 // Calculate scale
1449 float scale = calculate_avg_scale(exclude_padding, DataLayout::NCHW, id, pool_size, pool_size, upper_bound_w, upper_bound_h, pool_pad_left, pool_pad_top, pool_stride_x, pool_stride_y);
1450 const float32x2_t scale_v = vdup_n_f32(scale);
1451
1452 // Perform pooling
1453 float32x4x2_t data = vld2q_f32(reinterpret_cast<const float *>(input_ptrs[0] + input.offset()));
1454 // Get power of 2 in case of l2 pooling
1455 if(pooling_type == PoolingType::L2)
1456 {
1457 data.val[0] = vmulq_f32(data.val[0], data.val[0]);
1458 data.val[1] = vmulq_f32(data.val[1], data.val[1]);
1459 }
1460 float32x4_t sum_data = vaddq_f32(data.val[0], vsetq_lane_f32(0.f, data.val[1], 3));
1461 for(int i = 1; i < pool_size; ++i)
1462 {
1463 data = vld2q_f32(reinterpret_cast<const float *>(input_ptrs[i] + input.offset()));
1464 // Get power of 2 in case of l2 pooling
1465 if(pooling_type == PoolingType::L2)
1466 {
1467 data.val[0] = vmulq_f32(data.val[0], data.val[0]);
1468 data.val[1] = vmulq_f32(data.val[1], data.val[1]);
1469 }
1470 sum_data = vaddq_f32(sum_data, data.val[0]);
1471 sum_data = vaddq_f32(sum_data, vsetq_lane_f32(0.f, data.val[1], 3));
1472 }
1473 res = vpadd_f32(vget_high_f32(sum_data), vget_low_f32(sum_data));
1474 res = vmul_f32(vpadd_f32(res, res), scale_v);
1475 }
1476 else
1477 {
1478 float32x4x2_t max_data = vld2q_f32(reinterpret_cast<const float *>(input_ptrs[0] + input.offset()));
1479 for(int i = 1; i < pool_size; ++i)
1480 {
1481 const float32x4x2_t data = vld2q_f32(reinterpret_cast<const float *>(input_ptrs[i] + input.offset()));
1482 max_data = vmax2q_f32(max_data, data);
1483 }
1484 res = vpmax_f32(vget_high_f32(vsetq_lane_f32(-std::numeric_limits<float>::max(), max_data.val[1], 3)), vget_low_f32(max_data.val[1]));
1485 res = vpmax_f32(res, vpmax_f32(vget_high_f32(max_data.val[0]), vget_low_f32(max_data.val[0])));
1486 res = vpmax_f32(res, res);
1487 }
1488 final_res = vget_lane_f32(res, 0);
1489
1490 // Calculate square-root in case of l2 pooling
1491 if(pooling_type == PoolingType::L2)
1492 {
1493 final_res = sqrt(final_res);
1494 }
1495
1496 // Store result
1497 *(reinterpret_cast<float *>(output.ptr())) = final_res;
1498 },
1499 input, output);
1500}
1501
1502void NEPoolingLayerKernel::poolingMxN_f32_nhwc(const Window &window_input, const Window &window, PoolingType pooling_type, bool exclude_padding)
Michalis Spyrou57dac842018-03-01 16:03:50 +00001503{
1504 Iterator input(_input, window_input);
1505 Iterator output(_output, window);
1506
1507 const int pool_size_x = _pool_info.is_global_pooling() ? _input->info()->tensor_shape().y() : _pool_info.pool_size().width;
1508 const int pool_size_y = _pool_info.is_global_pooling() ? _input->info()->tensor_shape().z() : _pool_info.pool_size().height;
1509 const int pool_pad_right = _pool_info.pad_stride_info().pad_right();
1510 const int pool_pad_top = _pool_info.pad_stride_info().pad_top();
1511 const int pool_pad_left = _pool_info.pad_stride_info().pad_left();
1512 const int pool_pad_bottom = _pool_info.pad_stride_info().pad_bottom();
1513 int pool_stride_x = 0;
1514 int pool_stride_y = 0;
1515 std::tie(pool_stride_x, pool_stride_y) = _pool_info.pad_stride_info().stride();
1516 const int upper_bound_w = _input->info()->dimension(1) + (exclude_padding ? 0 : pool_pad_right);
1517 const int upper_bound_h = _input->info()->dimension(2) + (exclude_padding ? 0 : pool_pad_bottom);
1518
1519 float32x4_t vres;
1520
1521 execute_window_loop(window, [&](const Coordinates & id)
1522 {
Michalis Spyrouced25572018-10-01 16:26:20 +01001523 const int idx_width = id.y() * pool_stride_x;
1524 const int idx_height = id.z() * pool_stride_y;
1525 const int pool_limit_y = pool_pad_top - idx_height;
1526 const int pool_limit_x = pool_pad_left - idx_width;
1527
1528 const int pool_start_y = std::max(0, window_input.z().start() + pool_limit_y);
1529 const int pool_end_y = std::min(pool_size_y, window_input.z().end() + pool_limit_y);
1530 const int pool_start_x = std::max(0, window_input.y().start() + pool_limit_x);
1531 const int pool_end_x = std::min(pool_size_x, window_input.y().end() + pool_limit_x);
1532
Michalis Spyrou57dac842018-03-01 16:03:50 +00001533 if(pooling_type != PoolingType::MAX)
1534 {
1535 // Calculate scale
Pablo Tello77e6c552018-12-04 15:33:49 +00001536 const float scale = calculate_avg_scale(exclude_padding, DataLayout::NHWC, id, pool_size_x, pool_size_y, upper_bound_w, upper_bound_h, pool_pad_left, pool_pad_top, pool_stride_x,
1537 pool_stride_y);
Michalis Spyrou57dac842018-03-01 16:03:50 +00001538 const float32x4_t scale_v = vdupq_n_f32(scale);
1539
1540 // Perform pooling
1541 vres = vdupq_n_f32(0.0f);
1542
Michalis Spyrouced25572018-10-01 16:26:20 +01001543 for(int y = pool_start_y; y < pool_end_y; ++y)
Michalis Spyrou57dac842018-03-01 16:03:50 +00001544 {
Michalis Spyrouced25572018-10-01 16:26:20 +01001545 for(int x = pool_start_x; x < pool_end_x; ++x)
Michalis Spyrou57dac842018-03-01 16:03:50 +00001546 {
Michalis Spyrou7c60c992019-10-10 14:33:47 +01001547 const float32x4_t data = vld1q_f32(reinterpret_cast<const float *>(input.ptr() + (x - pool_pad_left) * static_cast<int>(_input->info()->strides_in_bytes().y()) + (y - pool_pad_top) * static_cast<int>
1548 (_input->info()->strides_in_bytes().z())));
Michalis Spyrou57dac842018-03-01 16:03:50 +00001549
1550 // Get power of 2 in case of l2 pooling and accumulate
1551 if(pooling_type == PoolingType::L2)
1552 {
1553 vres = vmlaq_f32(vres, data, data);
1554 }
1555 else
1556 {
1557 vres = vaddq_f32(vres, data);
1558 }
1559 }
1560 }
1561 // Divide by scale
1562 vres = vmulq_f32(vres, scale_v);
1563 }
1564 else
1565 {
1566 vres = vdupq_n_f32(std::numeric_limits<float>::lowest());
Michalis Spyrouced25572018-10-01 16:26:20 +01001567 for(int y = pool_start_y; y < pool_end_y; ++y)
Michalis Spyrou57dac842018-03-01 16:03:50 +00001568 {
Michalis Spyrouced25572018-10-01 16:26:20 +01001569 for(int x = pool_start_x; x < pool_end_x; ++x)
Michalis Spyrou57dac842018-03-01 16:03:50 +00001570 {
Michalis Spyrou7c60c992019-10-10 14:33:47 +01001571 const float32x4_t data = vld1q_f32(reinterpret_cast<const float *>(input.ptr() + (x - pool_pad_left) * static_cast<int>(_input->info()->strides_in_bytes().y()) + (y - pool_pad_top) * static_cast<int>
1572 (_input->info()->strides_in_bytes().z())));
Michalis Spyrou57dac842018-03-01 16:03:50 +00001573 vres = vmaxq_f32(vres, data);
1574 }
1575 }
1576 }
1577
1578 // Calculate square-root in case of l2 pooling
1579 if(pooling_type == PoolingType::L2)
1580 {
Georgios Pinitas27f223d2019-12-16 19:23:02 +00001581 float32x4_t l2_res = { static_cast<float>(sqrt(vgetq_lane_f32(vres, 0))),
1582 static_cast<float>(sqrt(vgetq_lane_f32(vres, 1))),
1583 static_cast<float>(sqrt(vgetq_lane_f32(vres, 2))),
1584 static_cast<float>(sqrt(vgetq_lane_f32(vres, 3)))
1585 };
1586 vres = l2_res;
Michalis Spyrou57dac842018-03-01 16:03:50 +00001587 }
1588
1589 // Store result
1590 vst1q_f32(reinterpret_cast<float *>(output.ptr()), vres);
1591 },
1592 input, output);
1593}
1594
Pablo Tello77e6c552018-12-04 15:33:49 +00001595void NEPoolingLayerKernel::poolingMxN_qasymm8_nchw(const Window &window_input, const Window &window, PoolingType pooling_type, bool exclude_padding)
Georgios Pinitas55186712018-01-08 17:37:12 +00001596{
1597 Iterator input(_input, window_input);
1598 Iterator output(_output, window);
1599
Isabella Gottardi7567f5f2018-01-30 15:26:00 +00001600 const int pool_size_x = _pool_info.is_global_pooling() ? _input->info()->tensor_shape().x() : _pool_info.pool_size().width;
1601 const int pool_size_y = _pool_info.is_global_pooling() ? _input->info()->tensor_shape().y() : _pool_info.pool_size().height;
Michalis Spyroubd0e6122018-01-23 09:52:16 +00001602 const int pool_pad_right = _pool_info.pad_stride_info().pad_right();
1603 const int pool_pad_top = _pool_info.pad_stride_info().pad_top();
1604 const int pool_pad_left = _pool_info.pad_stride_info().pad_left();
1605 const int pool_pad_bottom = _pool_info.pad_stride_info().pad_bottom();
1606 int pool_stride_x = 0;
1607 int pool_stride_y = 0;
Georgios Pinitas55186712018-01-08 17:37:12 +00001608 std::tie(pool_stride_x, pool_stride_y) = _pool_info.pad_stride_info().stride();
Michalis Spyroubd0e6122018-01-23 09:52:16 +00001609 const int upper_bound_w = _input->info()->dimension(0) + (exclude_padding ? 0 : pool_pad_right);
1610 const int upper_bound_h = _input->info()->dimension(1) + (exclude_padding ? 0 : pool_pad_bottom);
Georgios Pinitas55186712018-01-08 17:37:12 +00001611
Georgios Pinitas4c5469b2019-05-21 13:32:43 +01001612 const UniformQuantizationInfo &input_qinfo = _input->info()->quantization_info().uniform();
1613 const UniformQuantizationInfo &output_qinfo = _output->info()->quantization_info().uniform();
1614
Georgios Pinitas55186712018-01-08 17:37:12 +00001615 execute_window_loop(window, [&](const Coordinates & id)
1616 {
1617 uint8_t res = 0;
1618
1619 if(pooling_type != PoolingType::MAX)
1620 {
1621 uint32x4_t vres = vdupq_n_u32(0);
1622 uint32_t sres = 0;
1623
1624 // Calculate scale
Pablo Tello77e6c552018-12-04 15:33:49 +00001625 const float scale = calculate_avg_scale(exclude_padding, DataLayout::NCHW, id, pool_size_x, pool_size_y, upper_bound_w, upper_bound_h, pool_pad_left, pool_pad_top, pool_stride_x, pool_stride_y);
Georgios Pinitas55186712018-01-08 17:37:12 +00001626
1627 // Perform pooling
Isabella Gottardi7567f5f2018-01-30 15:26:00 +00001628 for(int y = 0; y < pool_size_y; ++y)
Georgios Pinitas55186712018-01-08 17:37:12 +00001629 {
1630 int x = 0;
Isabella Gottardi7567f5f2018-01-30 15:26:00 +00001631 for(; x <= (pool_size_x - 8); x += 8)
Georgios Pinitas55186712018-01-08 17:37:12 +00001632 {
Michalis Spyrou7c60c992019-10-10 14:33:47 +01001633 const uint8x8_t data = vld1_u8(reinterpret_cast<const uint8_t *>(input.ptr() + (x - pool_pad_left) * static_cast<int>(_input->info()->strides_in_bytes().x()) + (y - pool_pad_top) * static_cast<int>
1634 (_input->info()->strides_in_bytes().y())));
Georgios Pinitas55186712018-01-08 17:37:12 +00001635
1636 const uint16x8_t data_u16 = vmovl_u8(data);
1637 vres = vaddq_u32(vres, vaddl_u16(vget_high_u16(data_u16), vget_low_u16(data_u16)));
1638 }
1639
1640 // Leftover for loop
Isabella Gottardi7567f5f2018-01-30 15:26:00 +00001641 for(; x < pool_size_x; ++x)
Georgios Pinitas55186712018-01-08 17:37:12 +00001642 {
Michalis Spyrou7c60c992019-10-10 14:33:47 +01001643 uint8_t data = *(reinterpret_cast<const uint8_t *>(input.ptr() + (x - pool_pad_left) * static_cast<int>(_input->info()->strides_in_bytes().x()) + (y - pool_pad_top) * static_cast<int>
1644 (_input->info()->strides_in_bytes().y())));
Georgios Pinitas55186712018-01-08 17:37:12 +00001645 sres += data;
1646 }
1647 }
1648
1649 // Reduction
1650 const auto tmp = vpadd_u32(vget_high_u32(vres), vget_low_u32(vres));
1651 sres += vget_lane_u32(tmp, 0) + vget_lane_u32(tmp, 1);
1652
1653 // Divide by scale
1654 res = static_cast<uint8_t>(support::cpp11::round(sres * scale));
1655 }
1656 else
1657 {
1658 uint8x8_t vres = vdup_n_u8(0);
1659 res = 0;
1660
Isabella Gottardi7567f5f2018-01-30 15:26:00 +00001661 for(int y = 0; y < pool_size_y; ++y)
Georgios Pinitas55186712018-01-08 17:37:12 +00001662 {
1663 int x = 0;
Isabella Gottardi7567f5f2018-01-30 15:26:00 +00001664 for(; x <= (pool_size_x - 8); x += 8)
Georgios Pinitas55186712018-01-08 17:37:12 +00001665 {
Michalis Spyrou7c60c992019-10-10 14:33:47 +01001666 const uint8x8_t data = vld1_u8(reinterpret_cast<const uint8_t *>(input.ptr() + (x - pool_pad_left) * static_cast<int>(_input->info()->strides_in_bytes().x()) + (y - pool_pad_top) * static_cast<int>
1667 (_input->info()->strides_in_bytes().y())));
Georgios Pinitas55186712018-01-08 17:37:12 +00001668 vres = vmax_u8(vres, data);
1669 }
1670
1671 // Leftover for loop
Isabella Gottardi7567f5f2018-01-30 15:26:00 +00001672 for(; x < pool_size_x; ++x)
Georgios Pinitas55186712018-01-08 17:37:12 +00001673 {
Michalis Spyrou7c60c992019-10-10 14:33:47 +01001674 const uint8_t data = *(reinterpret_cast<const uint8_t *>(input.ptr() + (x - pool_pad_left) * static_cast<int>(_input->info()->strides_in_bytes().x()) + (y - pool_pad_top) * static_cast<int>
1675 (_input->info()->strides_in_bytes().y())));
Georgios Pinitas55186712018-01-08 17:37:12 +00001676 res = std::max(res, data);
1677 }
1678 }
1679
1680 // Reduce max
1681 vres = vpmax_u8(vres, vres);
1682 vres = vpmax_u8(vres, vres);
1683 vres = vpmax_u8(vres, vres);
1684
1685 // Get max value
1686 res = std::max(res, vget_lane_u8(vres, 0));
1687 }
1688
1689 // Store result
Georgios Pinitas4c5469b2019-05-21 13:32:43 +01001690 res = (input_qinfo != output_qinfo) ? quantize_qasymm8(dequantize_qasymm8(res, input_qinfo), output_qinfo) : res;
Georgios Pinitas55186712018-01-08 17:37:12 +00001691 *(reinterpret_cast<uint8_t *>(output.ptr())) = res;
1692 },
1693 input, output);
1694}
1695
Pablo Tello77e6c552018-12-04 15:33:49 +00001696void NEPoolingLayerKernel::poolingMxN_qasymm8_nhwc(const Window &window_input, const Window &window, PoolingType pooling_type, bool exclude_padding)
Michalis Spyrou57dac842018-03-01 16:03:50 +00001697{
1698 Iterator input(_input, window_input);
1699 Iterator output(_output, window);
1700
1701 const int pool_size_x = _pool_info.is_global_pooling() ? _input->info()->tensor_shape().y() : _pool_info.pool_size().width;
1702 const int pool_size_y = _pool_info.is_global_pooling() ? _input->info()->tensor_shape().z() : _pool_info.pool_size().height;
1703 const int pool_pad_right = _pool_info.pad_stride_info().pad_right();
1704 const int pool_pad_top = _pool_info.pad_stride_info().pad_top();
1705 const int pool_pad_left = _pool_info.pad_stride_info().pad_left();
1706 const int pool_pad_bottom = _pool_info.pad_stride_info().pad_bottom();
1707 int pool_stride_x = 0;
1708 int pool_stride_y = 0;
1709 std::tie(pool_stride_x, pool_stride_y) = _pool_info.pad_stride_info().stride();
1710 const int upper_bound_w = _input->info()->dimension(1) + (exclude_padding ? 0 : pool_pad_right);
1711 const int upper_bound_h = _input->info()->dimension(2) + (exclude_padding ? 0 : pool_pad_bottom);
1712
Georgios Pinitas4c5469b2019-05-21 13:32:43 +01001713 const float32x4_t half_scale_v = vdupq_n_f32(0.5f);
1714 const UniformQuantizationInfo input_qinfo = _input->info()->quantization_info().uniform();
1715 const UniformQuantizationInfo output_qinfo = _output->info()->quantization_info().uniform();
Georgios Pinitas283fc602018-11-09 10:46:43 +00001716
Michalis Spyrou57dac842018-03-01 16:03:50 +00001717 execute_window_loop(window, [&](const Coordinates & id)
1718 {
Michalis Spyrouced25572018-10-01 16:26:20 +01001719 const int idx_width = id.y() * pool_stride_x;
1720 const int idx_height = id.z() * pool_stride_y;
1721 const int pool_limit_y = pool_pad_top - idx_height;
1722 const int pool_limit_x = pool_pad_left - idx_width;
1723
1724 const int pool_start_y = std::max(0, window_input.z().start() + pool_limit_y);
1725 const int pool_end_y = std::min(pool_size_y, window_input.z().end() + pool_limit_y);
1726 const int pool_start_x = std::max(0, window_input.y().start() + pool_limit_x);
1727 const int pool_end_x = std::min(pool_size_x, window_input.y().end() + pool_limit_x);
1728
Michalis Spyrou57dac842018-03-01 16:03:50 +00001729 if(pooling_type != PoolingType::MAX)
1730 {
1731 uint32x4_t vres1 = vdupq_n_u32(0);
1732 uint32x4_t vres2 = vdupq_n_u32(0);
Michalis Spyrouced25572018-10-01 16:26:20 +01001733 uint32x4_t vres3 = vdupq_n_u32(0);
1734 uint32x4_t vres4 = vdupq_n_u32(0);
Michalis Spyrou57dac842018-03-01 16:03:50 +00001735
1736 // Calculate scale
Pablo Tello77e6c552018-12-04 15:33:49 +00001737 const float scale = calculate_avg_scale(exclude_padding, DataLayout::NHWC, id, pool_size_x, pool_size_y, upper_bound_w, upper_bound_h, pool_pad_left, pool_pad_top, pool_stride_x,
1738 pool_stride_y);
Michalis Spyrou57dac842018-03-01 16:03:50 +00001739 const float32x4_t scale_v = vdupq_n_f32(scale);
1740
1741 // Perform pooling
Michalis Spyrouced25572018-10-01 16:26:20 +01001742 for(int y = pool_start_y; y < pool_end_y; ++y)
Michalis Spyrou57dac842018-03-01 16:03:50 +00001743 {
Michalis Spyrouced25572018-10-01 16:26:20 +01001744 for(int x = pool_start_x; x < pool_end_x; ++x)
Michalis Spyrou57dac842018-03-01 16:03:50 +00001745 {
Michalis Spyrou7c60c992019-10-10 14:33:47 +01001746 const uint8x16_t data = vld1q_u8(reinterpret_cast<const uint8_t *>(input.ptr() + (x - pool_pad_left) * static_cast<int>(_input->info()->strides_in_bytes().y()) + (y - pool_pad_top) * static_cast<int>
1747 (_input->info()->strides_in_bytes().z())));
Michalis Spyrou57dac842018-03-01 16:03:50 +00001748
Michalis Spyrouced25572018-10-01 16:26:20 +01001749 const uint16x8_t data_u16 = vmovl_u8(vget_low_u8(data));
1750 const uint16x8_t data2_u16 = vmovl_u8(vget_high_u8(data));
1751 vres1 = vaddq_u32(vres1, vmovl_u16(vget_low_u16(data_u16)));
1752 vres2 = vaddq_u32(vres2, vmovl_u16(vget_high_u16(data_u16)));
1753 vres3 = vaddq_u32(vres3, vmovl_u16(vget_low_u16(data2_u16)));
1754 vres4 = vaddq_u32(vres4, vmovl_u16(vget_high_u16(data2_u16)));
Michalis Spyrou57dac842018-03-01 16:03:50 +00001755 }
1756 }
Georgios Pinitas283fc602018-11-09 10:46:43 +00001757 // Divide by scale and add 0.5f to round to nearest instead of rounding towards zero
1758 vres1 = vcvtq_u32_f32(vmlaq_f32(half_scale_v, vcvtq_f32_u32(vres1), scale_v));
1759 vres2 = vcvtq_u32_f32(vmlaq_f32(half_scale_v, vcvtq_f32_u32(vres2), scale_v));
1760 vres3 = vcvtq_u32_f32(vmlaq_f32(half_scale_v, vcvtq_f32_u32(vres3), scale_v));
1761 vres4 = vcvtq_u32_f32(vmlaq_f32(half_scale_v, vcvtq_f32_u32(vres4), scale_v));
Michalis Spyrou57dac842018-03-01 16:03:50 +00001762
Michalis Spyrouced25572018-10-01 16:26:20 +01001763 uint8x8_t res1 = vmovn_u16(vcombine_u16(vmovn_u32(vres1), vmovn_u32(vres2)));
1764 uint8x8_t res2 = vmovn_u16(vcombine_u16(vmovn_u32(vres3), vmovn_u32(vres4)));
Pablo Telloa52e4cf2019-04-01 14:55:18 +01001765 if(input_qinfo != output_qinfo)
1766 {
1767 const auto requantized_output = vquantize(vdequantize(vcombine_u8(res1, res2), input_qinfo), output_qinfo);
1768 res1 = vget_low_u8(requantized_output);
1769 res2 = vget_high_u8(requantized_output);
1770 }
Michalis Spyrou57dac842018-03-01 16:03:50 +00001771
1772 // Store result
Michalis Spyrouced25572018-10-01 16:26:20 +01001773 vst1_u8(output.ptr(), res1);
1774 vst1_u8(output.ptr() + 8, res2);
Michalis Spyrou57dac842018-03-01 16:03:50 +00001775 }
1776 else
1777 {
Michalis Spyrouced25572018-10-01 16:26:20 +01001778 uint8x16_t vres = vdupq_n_u8(0);
Michalis Spyrou57dac842018-03-01 16:03:50 +00001779
Michalis Spyrouced25572018-10-01 16:26:20 +01001780 for(int y = pool_start_y; y < pool_end_y; ++y)
Michalis Spyrou57dac842018-03-01 16:03:50 +00001781 {
Michalis Spyrouced25572018-10-01 16:26:20 +01001782 for(int x = pool_start_x; x < pool_end_x; ++x)
Michalis Spyrou57dac842018-03-01 16:03:50 +00001783 {
Michalis Spyrou7c60c992019-10-10 14:33:47 +01001784 const uint8x16_t data = vld1q_u8(reinterpret_cast<const uint8_t *>(input.ptr() + (x - pool_pad_left) * static_cast<int>(_input->info()->strides_in_bytes().y()) + (y - pool_pad_top) * static_cast<int>
1785 (_input->info()->strides_in_bytes().z())));
Michalis Spyrouced25572018-10-01 16:26:20 +01001786 vres = vmaxq_u8(vres, data);
Michalis Spyrou57dac842018-03-01 16:03:50 +00001787 }
1788 }
1789
1790 // Store result
Pablo Telloa52e4cf2019-04-01 14:55:18 +01001791 vst1q_u8(output.ptr(), (input_qinfo != output_qinfo) ? vquantize(vdequantize(vres, input_qinfo), output_qinfo) : vres);
Michalis Spyrou57dac842018-03-01 16:03:50 +00001792 }
1793 },
1794 input, output);
1795}
1796
Michalis Spyrouafa5d812017-11-30 14:25:57 +00001797Status NEPoolingLayerKernel::validate(const ITensorInfo *input, const ITensorInfo *output, const PoolingLayerInfo &pool_info)
1798{
1799 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input);
1800
1801 unsigned int pooled_w = 0;
1802 unsigned int pooled_h = 0;
1803 unsigned int num_elems_processed_per_iteration = 0;
1804 BorderSize border_size(0);
1805
Michalis Spyrou57dac842018-03-01 16:03:50 +00001806 const bool is_global_pooling = pool_info.is_global_pooling();
1807 unsigned int pool_size_x = 0;
1808 unsigned int pool_size_y = 0;
1809
1810 // Get data layout
1811 const DataLayout data_layout = input->data_layout();
1812 const int idx_width = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
1813 const int idx_height = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT);
1814
1815 pool_size_x = is_global_pooling ? input->dimension(idx_width) : pool_info.pool_size().width;
1816 pool_size_y = is_global_pooling ? input->dimension(idx_height) : pool_info.pool_size().height;
Michalis Spyrouafa5d812017-11-30 14:25:57 +00001817
Isabella Gottardi7567f5f2018-01-30 15:26:00 +00001818 // Validate pool info before calling scaled_dimensions
1819 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments_pool_info(pool_size_x, pool_size_y));
Michalis Spyrouafa5d812017-11-30 14:25:57 +00001820
1821 // Check output dimensions
Michalis Spyrou57dac842018-03-01 16:03:50 +00001822 std::tie(pooled_w, pooled_h) = scaled_dimensions(input->dimension(idx_width),
1823 input->dimension(idx_height),
Isabella Gottardi7567f5f2018-01-30 15:26:00 +00001824 pool_size_x,
1825 pool_size_y,
Michalis Spyrouafa5d812017-11-30 14:25:57 +00001826 pool_info.pad_stride_info());
1827
Georgios Pinitas13d96e02018-08-23 11:20:23 +01001828 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output, pool_info, pooled_w, pooled_h));
Isabella Gottardi7567f5f2018-01-30 15:26:00 +00001829 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input->clone().get(), output->clone().get(), pool_info, num_elems_processed_per_iteration, border_size, pooled_w, pooled_h,
1830 pool_size_x, pool_size_y)
1831 .first);
Michalis Spyrouafa5d812017-11-30 14:25:57 +00001832
1833 return Status{};
1834}
1835
Moritz Pflanzerc186b572017-09-07 09:48:04 +01001836void NEPoolingLayerKernel::run(const Window &window, const ThreadInfo &info)
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001837{
Moritz Pflanzerc186b572017-09-07 09:48:04 +01001838 ARM_COMPUTE_UNUSED(info);
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001839 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
1840 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(INEKernel::window(), window);
1841 ARM_COMPUTE_ERROR_ON(_func == nullptr);
1842
Pablo Tello77e6c552018-12-04 15:33:49 +00001843 const unsigned int pool_stride_x = _pool_info.pad_stride_info().stride().first;
1844 const unsigned int pool_stride_y = _pool_info.pad_stride_info().stride().second;
1845 const unsigned int pool_size = _pool_info.pool_size().width;
1846 const bool exclude_padding = _pool_info.exclude_padding();
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001847
Michalis Spyrou57dac842018-03-01 16:03:50 +00001848 Window window_input(window);
1849 if(_input->info()->data_layout() == DataLayout::NCHW)
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001850 {
Michalis Spyrou57dac842018-03-01 16:03:50 +00001851 // Set step for input in x and y direction for the input
1852 unsigned int window_x_inc = 0;
1853 switch(_input->info()->data_type())
Pablo Tello0c34fe22017-06-26 17:17:42 +01001854 {
Michalis Spyrou57dac842018-03-01 16:03:50 +00001855 case DataType::QASYMM8:
1856 {
1857 window_x_inc = pool_stride_x;
1858 if((pool_size == 2 || pool_size == 3) && pool_stride_x < 3)
1859 {
1860 window_x_inc = (pool_stride_x == 2) ? _num_elems_processed_per_iteration * 2 : _num_elems_processed_per_iteration;
1861 }
1862 break;
1863 }
Pablo Tello77e6c552018-12-04 15:33:49 +00001864
Georgios Pinitas13d96e02018-08-23 11:20:23 +01001865 case DataType::F16:
Michalis Spyrou57dac842018-03-01 16:03:50 +00001866 case DataType::F32:
1867 {
1868 window_x_inc = pool_stride_x;
1869 break;
1870 }
1871 default:
1872 {
1873 ARM_COMPUTE_ERROR("Not supported");
1874 }
Georgios Pinitas55186712018-01-08 17:37:12 +00001875 }
Michalis Spyrou57dac842018-03-01 16:03:50 +00001876 window_input.set(Window::DimX, Window::Dimension(window.x().start() * pool_stride_x, window.x().end() * pool_stride_x, window_x_inc));
1877 window_input.set(Window::DimY, Window::Dimension(window.y().start() * pool_stride_y, window.y().end() * pool_stride_y, pool_stride_y));
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001878 }
Michalis Spyrou57dac842018-03-01 16:03:50 +00001879 else
1880 {
Georgios Pinitascac13b12018-04-27 19:07:19 +01001881 window_input.set(Window::DimX, Window::Dimension(window.x().start(), window.x().end(), _num_elems_processed_per_iteration));
Michalis Spyrou57dac842018-03-01 16:03:50 +00001882 window_input.set(Window::DimY, Window::Dimension(0, _input->info()->dimension(1), pool_stride_x));
1883 window_input.set(Window::DimZ, Window::Dimension(0, _input->info()->dimension(2), pool_stride_y));
1884 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001885
1886 // Run function
Pablo Tello77e6c552018-12-04 15:33:49 +00001887 (this->*_func)(window_input, window, _pool_info.pool_type(), exclude_padding);
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001888}