blob: 81c52ed53be54b64d165bae020fb140bd3c699ee [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Diego Lopez Recas61ef5bf2017-12-11 12:36:55 +00002 * Copyright (c) 2017-2018 ARM Limited.
Anthony Barbier6ff3b192017-09-04 18:44:23 +01003 *
4 * SPDX-License-Identifier: MIT
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to
8 * deal in the Software without restriction, including without limitation the
9 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10 * sell copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in all
14 * copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 */
24#include "arm_compute/core/CL/kernels/CLPoolingLayerKernel.h"
25
26#include "arm_compute/core/AccessWindowStatic.h"
27#include "arm_compute/core/CL/CLHelpers.h"
28#include "arm_compute/core/CL/CLKernelLibrary.h"
Vidhya Sudhan Loganathanf1f49062018-05-25 13:21:26 +010029#include "arm_compute/core/CL/CLValidate.h"
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +000030#include "arm_compute/core/CL/ICLKernel.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010031#include "arm_compute/core/CL/ICLTensor.h"
32#include "arm_compute/core/CL/OpenCL.h"
33#include "arm_compute/core/Helpers.h"
34#include "arm_compute/core/TensorInfo.h"
35#include "arm_compute/core/Utils.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010036#include "arm_compute/core/Window.h"
Michalis Spyroue74b2012018-04-18 09:49:16 +010037#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010038
39#include <set>
40#include <string>
41#include <tuple>
42
43using namespace arm_compute;
Michalis Spyroue74b2012018-04-18 09:49:16 +010044using namespace arm_compute::misc::shape_calculator;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010045
Giorgio Arena9f26b3e2017-11-28 14:35:00 +000046namespace
Anthony Barbier6ff3b192017-09-04 18:44:23 +010047{
Giorgio Arena9f26b3e2017-11-28 14:35:00 +000048// Internal window config info
49using CLPoolingConfig = std::pair<unsigned int, BorderSize>; //num_elems_processed_per_iteration, border_size
50
Michalis Spyroue74b2012018-04-18 09:49:16 +010051void auto_init(const ITensorInfo *input, ITensorInfo *output, PoolingLayerInfo pool_info)
Giorgio Arena9f26b3e2017-11-28 14:35:00 +000052{
Michalis Spyroue74b2012018-04-18 09:49:16 +010053 TensorShape out_shape = compute_pool_shape(*input, pool_info);
54 auto_init_if_empty(*output, input->clone()->set_tensor_shape(out_shape));
Anthony Barbier6ff3b192017-09-04 18:44:23 +010055}
56
Georgios Pinitas631c41a2017-12-06 11:53:03 +000057Status validate_arguments(const ITensorInfo *input, const ITensorInfo *output, const PoolingLayerInfo &pool_info)
Georgios Pinitas3faea252017-10-30 14:13:50 +000058{
59 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
Michalis Spyroue74b2012018-04-18 09:49:16 +010060 DataLayout data_layout = input->data_layout();
Vidhya Sudhan Loganathanf1f49062018-05-25 13:21:26 +010061 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input);
Michalis Spyroue74b2012018-04-18 09:49:16 +010062 switch(data_layout)
63 {
64 case DataLayout::NCHW:
65 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::QASYMM8, DataType::QS8, DataType::QS16, DataType::F16, DataType::F32);
66 break;
67 case DataLayout::NHWC:
68 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::QASYMM8, DataType::F16, DataType::F32);
69 break;
70 default:
71 ARM_COMPUTE_ERROR("Data layout not supported");
72 }
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +000073 ARM_COMPUTE_RETURN_ERROR_ON_MSG((is_data_type_quantized_asymmetric(input->data_type()) && pool_info.pool_type() == PoolingType::L2),
74 "Unsupported combination of parameters!");
Georgios Pinitas3faea252017-10-30 14:13:50 +000075
Georgios Pinitas3faea252017-10-30 14:13:50 +000076 // Checks performed when output is configured
77 if(output->total_size() != 0)
78 {
79 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
Michalis Spyroue74b2012018-04-18 09:49:16 +010080 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_LAYOUT(input, output);
Georgios Pinitas3faea252017-10-30 14:13:50 +000081 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_FIXED_POINT(input, output);
Michalis Spyroue74b2012018-04-18 09:49:16 +010082 TensorInfo out_info(TensorInfo(compute_pool_shape(*input, pool_info), 1, output->data_type(), output->fixed_point_position()));
83 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(output, &out_info);
Georgios Pinitas3faea252017-10-30 14:13:50 +000084 }
85
Georgios Pinitas631c41a2017-12-06 11:53:03 +000086 return Status{};
Georgios Pinitas3faea252017-10-30 14:13:50 +000087}
88
Georgios Pinitas631c41a2017-12-06 11:53:03 +000089std::tuple<Status, Window, CLPoolingConfig> validate_and_configure_window(ITensorInfo *input, ITensorInfo *output, const PoolingLayerInfo &pool_info)
Giorgio Arena9f26b3e2017-11-28 14:35:00 +000090{
Michalis Spyroue74b2012018-04-18 09:49:16 +010091 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
92
93 // Get data layout
94 const DataLayout data_layout = input->data_layout();
95 const int idx_width = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
96 const int idx_height = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT);
97
Giorgio Arena9f26b3e2017-11-28 14:35:00 +000098 int pool_stride_x = 0;
99 int pool_stride_y = 0;
100 unsigned int pooled_w = 0;
101 unsigned int pooled_h = 0;
Michalis Spyroue74b2012018-04-18 09:49:16 +0100102 int pool_size_x = pool_info.is_global_pooling() ? input->dimension(idx_width) : pool_info.pool_size().width;
103 int pool_size_y = pool_info.is_global_pooling() ? input->dimension(idx_height) : pool_info.pool_size().height;
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000104 const PadStrideInfo pad_stride_info = pool_info.pad_stride_info();
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000105 std::tie(pool_stride_x, pool_stride_y) = pad_stride_info.stride();
Michalis Spyroue74b2012018-04-18 09:49:16 +0100106 const int pool_pad_right = pad_stride_info.pad_right();
107 const int pool_pad_top = pad_stride_info.pad_top();
108 const int pool_pad_left = pad_stride_info.pad_left();
109 const int pool_pad_bottom = pad_stride_info.pad_bottom();
110 BorderSize border_size = BorderSize(pool_pad_top, pool_pad_right, pool_pad_bottom, pool_pad_left);
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000111
Michalis Spyroue74b2012018-04-18 09:49:16 +0100112 auto_init(input, output, pool_info);
113 pooled_w = output->tensor_shape()[idx_width];
114 pooled_h = output->tensor_shape()[idx_height];
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000115
Michalis Spyroue74b2012018-04-18 09:49:16 +0100116 const DataType data_type = input->data_type();
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000117
Michalis Spyroue74b2012018-04-18 09:49:16 +0100118 const int input_width = input->dimension(idx_width);
119 const int input_height = input->dimension(idx_height);
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000120
Michalis Spyroue74b2012018-04-18 09:49:16 +0100121 unsigned int num_elems_processed_per_iteration = 0;
122 bool window_changed = false;
123 Window win{};
124 switch(data_layout)
125 {
126 case DataLayout::NCHW:
127 {
128 // Change the number of elements processed per iteration
129 // for pooling 3x3 with stride less equal than 3
130 const bool can_optimize = (pool_size_x == 3) && (pool_size_y == 3) && (pool_stride_x <= 3) && !is_data_type_quantized(data_type);
131 num_elems_processed_per_iteration = can_optimize ? 4 : 1;
132 const unsigned int num_elems_read_per_iteration = (num_elems_processed_per_iteration - 1) * pool_stride_x + pool_size_x;
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000133
Michalis Spyroue74b2012018-04-18 09:49:16 +0100134 // Number of iterations in X dimension
135 const int num_iterations_x = (pooled_w + num_elems_processed_per_iteration - 1) / num_elems_processed_per_iteration;
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000136
Michalis Spyroue74b2012018-04-18 09:49:16 +0100137 // Upper limit for the number of right/bottom border elements that are accessed
138 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;
139 const int upper_bound_h = ((pooled_h - 1) * pool_stride_y - pool_pad_top + pool_size_y) - input_height;
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000140
Michalis Spyroue74b2012018-04-18 09:49:16 +0100141 border_size.right = std::max(upper_bound_w, pool_pad_right);
142 border_size.bottom = std::max(upper_bound_h, pool_pad_bottom);
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000143
Michalis Spyroue74b2012018-04-18 09:49:16 +0100144 win = calculate_max_window(*output, Steps(num_elems_processed_per_iteration));
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000145
Michalis Spyroue74b2012018-04-18 09:49:16 +0100146 AccessWindowRectangle input_access(input, -pool_pad_left, -pool_pad_top, num_elems_read_per_iteration, pool_size_y,
Giorgio Arena3c520c52018-05-01 11:47:24 +0100147 pool_stride_x, pool_stride_y);
Michalis Spyroue74b2012018-04-18 09:49:16 +0100148 AccessWindowHorizontal output_access(output, 0, num_elems_processed_per_iteration);
149 window_changed = update_window_and_padding(win, input_access, output_access);
150 output_access.set_valid_region(win, ValidRegion(Coordinates(), output->tensor_shape()));
151 break;
152 }
153 case DataLayout::NHWC:
154 {
155 num_elems_processed_per_iteration = 8;
156 win = calculate_max_window(*output, Steps(num_elems_processed_per_iteration));
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000157
Georgios Pinitasa866f852018-05-16 10:47:26 +0100158 AccessWindowRectangle input_access(input, 0, -pool_pad_left, num_elems_processed_per_iteration, pool_size_x);
Michalis Spyroue74b2012018-04-18 09:49:16 +0100159 AccessWindowHorizontal output_access(output, 0, num_elems_processed_per_iteration);
160 window_changed = update_window_and_padding(win, input_access, output_access);
161 output_access.set_valid_region(win, ValidRegion(Coordinates(), output->tensor_shape()));
162 break;
163 }
164 default:
165 ARM_COMPUTE_ERROR("Not implemented");
166 }
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000167
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000168 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000169 return std::make_tuple(err, win, CLPoolingConfig(num_elems_processed_per_iteration, border_size));
170}
171} // namespace
172
173CLPoolingLayerKernel::CLPoolingLayerKernel()
174 : _input(nullptr), _output(nullptr), _pool_info(), _border_size(0), _num_elems_processed_per_iteration(1)
175{
176}
177
178BorderSize CLPoolingLayerKernel::border_size() const
179{
180 return _border_size;
181}
182
183void CLPoolingLayerKernel::configure(const ICLTensor *input, ICLTensor *output, const PoolingLayerInfo &pool_info)
184{
Michalis Spyroue74b2012018-04-18 09:49:16 +0100185 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
186
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000187 int pool_stride_x = 0;
188 int pool_stride_y = 0;
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000189 const PoolingType pool_type = pool_info.pool_type();
Michalis Spyroue74b2012018-04-18 09:49:16 +0100190 DataLayout data_layout = input->info()->data_layout();
191 const int idx_width = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
192 const int idx_height = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT);
193 const int idx_channel = get_data_layout_dimension_index(data_layout, DataLayoutDimension::CHANNEL);
194 const int pool_size_x = pool_info.is_global_pooling() ? input->info()->dimension(idx_width) : pool_info.pool_size().width;
195 const int pool_size_y = pool_info.is_global_pooling() ? input->info()->dimension(idx_height) : pool_info.pool_size().height;
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000196 const PadStrideInfo pad_stride_info = pool_info.pad_stride_info();
197 const bool exclude_padding = pool_info.exclude_padding();
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000198 std::tie(pool_stride_x, pool_stride_y) = pad_stride_info.stride();
Georgios Pinitas15997872018-02-19 13:58:22 +0000199 const int pool_pad_top = pad_stride_info.pad_top();
200 const int pool_pad_left = pad_stride_info.pad_left();
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000201
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000202 // Check output dimensions
Michalis Spyroue74b2012018-04-18 09:49:16 +0100203 auto_init(input->info(), output->info(), pool_info);
Giorgio Arenaf6a43c52017-12-01 12:16:25 +0000204 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), output->info(), pool_info));
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000205
206 // Set instance variables
207 _input = input;
208 _output = output;
209 _pool_info = pool_info;
210
Georgios Pinitas17812ba2018-06-04 19:27:13 +0100211 const DataType data_type = input->info()->data_type();
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000212
213 // Set build options
214 CLBuildOptions build_opts;
215 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(data_type));
216 build_opts.add_option("-DPOOL_" + string_from_pooling_type(pool_type));
217 build_opts.add_option_if(is_data_type_fixed_point(data_type),
218 "-DFIXED_POINT_POSITION=" + support::cpp11::to_string(input->info()->fixed_point_position()));
219 build_opts.add_option("-DSTRIDE_X=" + support::cpp11::to_string(pool_stride_x));
Michalis Spyroue74b2012018-04-18 09:49:16 +0100220 build_opts.add_option("-DSTRIDE_Y=" + support::cpp11::to_string(pool_stride_y));
221 build_opts.add_option("-DPAD_X=" + support::cpp11::to_string(pool_pad_left));
222 build_opts.add_option("-DPAD_Y=" + support::cpp11::to_string(pool_pad_top));
223 build_opts.add_option("-DPOOL_SIZE_X=" + support::cpp11::to_string(pool_size_x));
224 build_opts.add_option("-DPOOL_SIZE_Y=" + support::cpp11::to_string(pool_size_y));
225 build_opts.add_option_if(data_type == DataType::F16, "-DFP16");
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000226
227 // Create kernel
Michalis Spyroue74b2012018-04-18 09:49:16 +0100228 switch(data_layout)
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000229 {
Michalis Spyroue74b2012018-04-18 09:49:16 +0100230 case DataLayout::NCHW:
231 {
232 build_opts.add_option("-DMAX_WIDTH=" + support::cpp11::to_string(input->info()->dimension(idx_width) + (exclude_padding ? 0 : pool_pad_left)));
233 build_opts.add_option("-DMAX_HEIGHT=" + support::cpp11::to_string(input->info()->dimension(idx_height) + (exclude_padding ? 0 : pool_pad_top)));
234 if(pool_type != PoolingType::MAX)
235 {
236 build_opts.add_option_if(exclude_padding, "-DEXCLUDE_PADDING");
237 }
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000238
Michalis Spyroue74b2012018-04-18 09:49:16 +0100239 if((pool_size_x == 3) && (pool_size_y == 3) && !is_data_type_quantized_asymmetric(data_type))
240 {
241 // Check if we have pool3x3 with stride_x less equal than 3. In these cases, run an optimized OpenCL kernel where
242 // each thread computes 4 output elements
243 const bool is_pool3x3_stride_le3 = (pool_size_x == 3) && (pool_size_y == 3) && (pool_stride_x <= 3) && !is_data_type_fixed_point(data_type);
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000244
Michalis Spyroue74b2012018-04-18 09:49:16 +0100245 std::string kernel_name = ((is_pool3x3_stride_le3) ? "pooling_layer_optimized_" : "pooling_layer_")
246 + support::cpp11::to_string(pool_size_x);
247 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel(kernel_name, build_opts.options()));
248 }
249 else // Run general case
250 {
251 std::string kernel_name = is_data_type_quantized_asymmetric(data_type) ? "pooling_layer_MxN_quantized_nchw" : "pooling_layer_MxN_nchw";
252 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel(kernel_name, build_opts.options()));
253 }
254 break;
255 }
256 case DataLayout::NHWC:
257 {
258 build_opts.add_option_if(exclude_padding, "-DEXCLUDE_PADDING");
259 build_opts.add_option("-DMAX_WIDTH=" + support::cpp11::to_string(input->info()->dimension(idx_width)));
260 build_opts.add_option("-DMAX_HEIGHT=" + support::cpp11::to_string(input->info()->dimension(idx_height)));
261 std::string kernel_name = is_data_type_quantized_asymmetric(data_type) ? "pooling_layer_MxN_quantized_nhwc" : "pooling_layer_MxN_nhwc";
262 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel(kernel_name, build_opts.options()));
263 break;
264 }
265 default:
266 ARM_COMPUTE_ERROR("Not implemented");
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000267 }
268
269 // Configure kernel window
270 auto win_config = validate_and_configure_window(input->info(), output->info(), pool_info);
271
272 ARM_COMPUTE_ERROR_THROW_ON(std::get<0>(win_config));
Michalis Spyroue74b2012018-04-18 09:49:16 +0100273 ICLKernel::configure(std::get<1>(win_config));
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000274
Michalis Spyroue74b2012018-04-18 09:49:16 +0100275 if(data_layout == DataLayout::NCHW)
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000276 {
Michalis Spyroue74b2012018-04-18 09:49:16 +0100277 CLPoolingConfig pooling_config = std::get<2>(win_config);
278 _num_elems_processed_per_iteration = pooling_config.first;
279 _border_size = pooling_config.second;
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000280 }
Michalis Spyroue74b2012018-04-18 09:49:16 +0100281 else
282 {
283 _border_size = BorderSize(1, 0, 0, 0);
284 _num_elems_processed_per_iteration = 8;
285 }
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000286
287 // Set config_id for enabling LWS tuning
288 _config_id = "pooling_layer_";
289 _config_id += lower_string(string_from_data_type(data_type));
290 _config_id += "_";
Michalis Spyroue74b2012018-04-18 09:49:16 +0100291 _config_id += lower_string(string_from_data_layout(data_layout));
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000292 _config_id += "_";
Michalis Spyroue74b2012018-04-18 09:49:16 +0100293 _config_id += support::cpp11::to_string(output->info()->dimension(idx_width));
294 _config_id += "_";
295 _config_id += support::cpp11::to_string(output->info()->dimension(idx_height));
296 _config_id += "_";
297 _config_id += support::cpp11::to_string(output->info()->dimension(idx_channel));
Giorgio Arena00b93f52018-06-28 17:18:50 +0100298 _config_id += "_";
299 _config_id += lower_string(string_from_data_layout(input->info()->data_layout()));
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000300}
301
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000302Status CLPoolingLayerKernel::validate(const ITensorInfo *input, const ITensorInfo *output, const PoolingLayerInfo &pool_info)
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000303{
304 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output, pool_info));
305 ARM_COMPUTE_RETURN_ON_ERROR(std::get<0>(validate_and_configure_window(input->clone().get(), output->clone().get(), pool_info)));
306
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000307 return Status{};
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000308}
309
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100310void CLPoolingLayerKernel::run(const Window &window, cl::CommandQueue &queue)
311{
312 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
313 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IKernel::window(), window);
314
Georgios Pinitas15997872018-02-19 13:58:22 +0000315 unsigned int pool_stride_x = 0;
316 unsigned int pool_stride_y = 0;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100317 std::tie(pool_stride_x, pool_stride_y) = _pool_info.pad_stride_info().stride();
318
Michalis Spyroue74b2012018-04-18 09:49:16 +0100319 switch(_input->info()->data_layout())
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100320 {
Michalis Spyroue74b2012018-04-18 09:49:16 +0100321 case DataLayout::NCHW:
322 {
323 Window window_collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
324 Window slice = window_collapsed.first_slice_window_3D();
325 do
326 {
327 // Upsample input by pool size
328 Window in_slice(slice);
329 in_slice.set(Window::DimX, Window::Dimension(in_slice.x().start() - _pool_info.pad_stride_info().pad_left(),
330 (in_slice.x().end() - _pool_info.pad_stride_info().pad_left()) * pool_stride_x,
331 pool_stride_x * _num_elems_processed_per_iteration));
332 in_slice.set(Window::DimY, Window::Dimension(in_slice.y().start() - _pool_info.pad_stride_info().pad_top(),
333 (in_slice.y().end() - _pool_info.pad_stride_info().pad_top()) * pool_stride_y,
334 pool_stride_y));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100335
Michalis Spyroue74b2012018-04-18 09:49:16 +0100336 // Set inputs
337 unsigned int idx = 0;
338 add_3D_tensor_argument(idx, _input, in_slice);
339 add_3D_tensor_argument(idx, _output, slice);
340 enqueue(queue, *this, slice, _lws_hint);
341 }
342 while(window_collapsed.slide_window_slice_3D(slice));
343 break;
344 }
345 case DataLayout::NHWC:
346 {
347 Window slice = window.first_slice_window_3D();
348
349 Window in_slice = window.first_slice_window_3D();
350 in_slice.set(Window::DimX, Window::Dimension(0, _input->info()->dimension(0), _num_elems_processed_per_iteration));
351 in_slice.set(Window::DimY, Window::Dimension(0, _input->info()->dimension(1), pool_stride_x));
352 in_slice.set(Window::DimZ, Window::Dimension(0, _input->info()->dimension(2), pool_stride_y));
353 do
354 {
355 // Set inputs
356 unsigned int idx = 0;
357 add_3D_tensor_argument(idx, _input, in_slice);
358 add_3D_tensor_argument(idx, _output, slice);
359 enqueue(queue, *this, slice, _lws_hint);
360 }
361 while(window.slide_window_slice_3D(slice) && window.slide_window_slice_3D(in_slice));
362 break;
363 }
364 default:
365 ARM_COMPUTE_ERROR("Not implemented");
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100366 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100367}