blob: 7907d01daa621800ffdeacf8e41b3300d0a1dd1e [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"
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +000029#include "arm_compute/core/CL/ICLKernel.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010030#include "arm_compute/core/CL/ICLTensor.h"
31#include "arm_compute/core/CL/OpenCL.h"
32#include "arm_compute/core/Helpers.h"
33#include "arm_compute/core/TensorInfo.h"
34#include "arm_compute/core/Utils.h"
35#include "arm_compute/core/Validate.h"
36#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();
61 switch(data_layout)
62 {
63 case DataLayout::NCHW:
64 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::QASYMM8, DataType::QS8, DataType::QS16, DataType::F16, DataType::F32);
65 break;
66 case DataLayout::NHWC:
67 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::QASYMM8, DataType::F16, DataType::F32);
68 break;
69 default:
70 ARM_COMPUTE_ERROR("Data layout not supported");
71 }
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +000072 ARM_COMPUTE_RETURN_ERROR_ON_MSG((is_data_type_quantized_asymmetric(input->data_type()) && pool_info.pool_type() == PoolingType::L2),
73 "Unsupported combination of parameters!");
Georgios Pinitas3faea252017-10-30 14:13:50 +000074
Georgios Pinitas3faea252017-10-30 14:13:50 +000075 // Checks performed when output is configured
76 if(output->total_size() != 0)
77 {
78 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
Michalis Spyroue74b2012018-04-18 09:49:16 +010079 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_LAYOUT(input, output);
Georgios Pinitas3faea252017-10-30 14:13:50 +000080 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_FIXED_POINT(input, output);
Michalis Spyroue74b2012018-04-18 09:49:16 +010081 TensorInfo out_info(TensorInfo(compute_pool_shape(*input, pool_info), 1, output->data_type(), output->fixed_point_position()));
82 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(output, &out_info);
Georgios Pinitas3faea252017-10-30 14:13:50 +000083 }
84
Georgios Pinitas631c41a2017-12-06 11:53:03 +000085 return Status{};
Georgios Pinitas3faea252017-10-30 14:13:50 +000086}
87
Georgios Pinitas631c41a2017-12-06 11:53:03 +000088std::tuple<Status, Window, CLPoolingConfig> validate_and_configure_window(ITensorInfo *input, ITensorInfo *output, const PoolingLayerInfo &pool_info)
Giorgio Arena9f26b3e2017-11-28 14:35:00 +000089{
Michalis Spyroue74b2012018-04-18 09:49:16 +010090 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
91
92 // Get data layout
93 const DataLayout data_layout = input->data_layout();
94 const int idx_width = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
95 const int idx_height = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT);
96
Giorgio Arena9f26b3e2017-11-28 14:35:00 +000097 int pool_stride_x = 0;
98 int pool_stride_y = 0;
99 unsigned int pooled_w = 0;
100 unsigned int pooled_h = 0;
Michalis Spyroue74b2012018-04-18 09:49:16 +0100101 int pool_size_x = pool_info.is_global_pooling() ? input->dimension(idx_width) : pool_info.pool_size().width;
102 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 +0000103 const PadStrideInfo pad_stride_info = pool_info.pad_stride_info();
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000104 std::tie(pool_stride_x, pool_stride_y) = pad_stride_info.stride();
Michalis Spyroue74b2012018-04-18 09:49:16 +0100105 const int pool_pad_right = pad_stride_info.pad_right();
106 const int pool_pad_top = pad_stride_info.pad_top();
107 const int pool_pad_left = pad_stride_info.pad_left();
108 const int pool_pad_bottom = pad_stride_info.pad_bottom();
109 BorderSize border_size = BorderSize(pool_pad_top, pool_pad_right, pool_pad_bottom, pool_pad_left);
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000110
Michalis Spyroue74b2012018-04-18 09:49:16 +0100111 auto_init(input, output, pool_info);
112 pooled_w = output->tensor_shape()[idx_width];
113 pooled_h = output->tensor_shape()[idx_height];
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000114
Michalis Spyroue74b2012018-04-18 09:49:16 +0100115 const DataType data_type = input->data_type();
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000116
Michalis Spyroue74b2012018-04-18 09:49:16 +0100117 const int input_width = input->dimension(idx_width);
118 const int input_height = input->dimension(idx_height);
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000119
Michalis Spyroue74b2012018-04-18 09:49:16 +0100120 unsigned int num_elems_processed_per_iteration = 0;
121 bool window_changed = false;
122 Window win{};
123 switch(data_layout)
124 {
125 case DataLayout::NCHW:
126 {
127 // Change the number of elements processed per iteration
128 // for pooling 3x3 with stride less equal than 3
129 const bool can_optimize = (pool_size_x == 3) && (pool_size_y == 3) && (pool_stride_x <= 3) && !is_data_type_quantized(data_type);
130 num_elems_processed_per_iteration = can_optimize ? 4 : 1;
131 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 +0000132
Michalis Spyroue74b2012018-04-18 09:49:16 +0100133 // Number of iterations in X dimension
134 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 +0000135
Michalis Spyroue74b2012018-04-18 09:49:16 +0100136 // Upper limit for the number of right/bottom border elements that are accessed
137 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;
138 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 +0000139
Michalis Spyroue74b2012018-04-18 09:49:16 +0100140 border_size.right = std::max(upper_bound_w, pool_pad_right);
141 border_size.bottom = std::max(upper_bound_h, pool_pad_bottom);
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000142
Michalis Spyroue74b2012018-04-18 09:49:16 +0100143 win = calculate_max_window(*output, Steps(num_elems_processed_per_iteration));
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000144
Michalis Spyroue74b2012018-04-18 09:49:16 +0100145 AccessWindowRectangle input_access(input, -pool_pad_left, -pool_pad_top, num_elems_read_per_iteration, pool_size_y,
146 pool_stride_x * num_elems_processed_per_iteration, pool_stride_y);
147 AccessWindowHorizontal output_access(output, 0, num_elems_processed_per_iteration);
148 window_changed = update_window_and_padding(win, input_access, output_access);
149 output_access.set_valid_region(win, ValidRegion(Coordinates(), output->tensor_shape()));
150 break;
151 }
152 case DataLayout::NHWC:
153 {
154 num_elems_processed_per_iteration = 8;
155 win = calculate_max_window(*output, Steps(num_elems_processed_per_iteration));
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000156
Michalis Spyroue74b2012018-04-18 09:49:16 +0100157 AccessWindowRectangle input_access(input, -1, -1, num_elems_processed_per_iteration, pool_size_y,
158 pool_stride_x * num_elems_processed_per_iteration, pool_stride_y);
159 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
Michalis Spyroua9676112018-02-22 18:07:43 +0000211 const GPUTarget gpu_target = get_target();
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000212 const DataType data_type = input->info()->data_type();
213
214 // Set build options
215 CLBuildOptions build_opts;
216 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(data_type));
217 build_opts.add_option("-DPOOL_" + string_from_pooling_type(pool_type));
218 build_opts.add_option_if(is_data_type_fixed_point(data_type),
219 "-DFIXED_POINT_POSITION=" + support::cpp11::to_string(input->info()->fixed_point_position()));
220 build_opts.add_option("-DSTRIDE_X=" + support::cpp11::to_string(pool_stride_x));
Michalis Spyroue74b2012018-04-18 09:49:16 +0100221 build_opts.add_option("-DSTRIDE_Y=" + support::cpp11::to_string(pool_stride_y));
222 build_opts.add_option("-DPAD_X=" + support::cpp11::to_string(pool_pad_left));
223 build_opts.add_option("-DPAD_Y=" + support::cpp11::to_string(pool_pad_top));
224 build_opts.add_option("-DPOOL_SIZE_X=" + support::cpp11::to_string(pool_size_x));
225 build_opts.add_option("-DPOOL_SIZE_Y=" + support::cpp11::to_string(pool_size_y));
226 build_opts.add_option_if(data_type == DataType::F16, "-DFP16");
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000227
228 // Create kernel
Michalis Spyroue74b2012018-04-18 09:49:16 +0100229 switch(data_layout)
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000230 {
Michalis Spyroue74b2012018-04-18 09:49:16 +0100231 case DataLayout::NCHW:
232 {
233 build_opts.add_option("-DMAX_WIDTH=" + support::cpp11::to_string(input->info()->dimension(idx_width) + (exclude_padding ? 0 : pool_pad_left)));
234 build_opts.add_option("-DMAX_HEIGHT=" + support::cpp11::to_string(input->info()->dimension(idx_height) + (exclude_padding ? 0 : pool_pad_top)));
235 if(pool_type != PoolingType::MAX)
236 {
237 build_opts.add_option_if(exclude_padding, "-DEXCLUDE_PADDING");
238 }
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000239
Michalis Spyroue74b2012018-04-18 09:49:16 +0100240 if((pool_size_x == 3) && (pool_size_y == 3) && !is_data_type_quantized_asymmetric(data_type))
241 {
242 // Check if we have pool3x3 with stride_x less equal than 3. In these cases, run an optimized OpenCL kernel where
243 // each thread computes 4 output elements
244 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 +0000245
Michalis Spyroue74b2012018-04-18 09:49:16 +0100246 std::string kernel_name = ((is_pool3x3_stride_le3) ? "pooling_layer_optimized_" : "pooling_layer_")
247 + support::cpp11::to_string(pool_size_x);
248 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel(kernel_name, build_opts.options()));
249 }
250 else // Run general case
251 {
252 std::string kernel_name = is_data_type_quantized_asymmetric(data_type) ? "pooling_layer_MxN_quantized_nchw" : "pooling_layer_MxN_nchw";
253 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel(kernel_name, build_opts.options()));
254 }
255 break;
256 }
257 case DataLayout::NHWC:
258 {
259 build_opts.add_option_if(exclude_padding, "-DEXCLUDE_PADDING");
260 build_opts.add_option("-DMAX_WIDTH=" + support::cpp11::to_string(input->info()->dimension(idx_width)));
261 build_opts.add_option("-DMAX_HEIGHT=" + support::cpp11::to_string(input->info()->dimension(idx_height)));
262 std::string kernel_name = is_data_type_quantized_asymmetric(data_type) ? "pooling_layer_MxN_quantized_nhwc" : "pooling_layer_MxN_nhwc";
263 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel(kernel_name, build_opts.options()));
264 break;
265 }
266 default:
267 ARM_COMPUTE_ERROR("Not implemented");
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000268 }
269
270 // Configure kernel window
271 auto win_config = validate_and_configure_window(input->info(), output->info(), pool_info);
272
273 ARM_COMPUTE_ERROR_THROW_ON(std::get<0>(win_config));
Michalis Spyroue74b2012018-04-18 09:49:16 +0100274 ICLKernel::configure(std::get<1>(win_config));
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000275
276 // Configure the local work size (hint) from the first two dimensions of the global work size.
277 // On Bifrost, this works for up to 35x35xC filters, for which the pooling_layer_3_optimized
278 // kernel is launched with gws=(9, 33, C). In any case, the hint will be ignored if it is
279 // invalid (e.g. exceeds the maximum workgroup size that the kernel can be launched with).
Michalis Spyroue74b2012018-04-18 09:49:16 +0100280 if(data_layout == DataLayout::NCHW)
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000281 {
Michalis Spyroue74b2012018-04-18 09:49:16 +0100282 CLPoolingConfig pooling_config = std::get<2>(win_config);
283 _num_elems_processed_per_iteration = pooling_config.first;
284 _border_size = pooling_config.second;
285 if(gpu_target_is_in(gpu_target, GPUTarget::G71, GPUTarget::G72, GPUTarget::G51, GPUTarget::G51BIG, GPUTarget::G51LIT, GPUTarget::TNOX))
286 {
287 cl::NDRange gws = ICLKernel::gws_from_window(std::get<1>(win_config));
288 _lws_hint = cl::NDRange(gws[0], gws[1], 1);
289 }
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000290 }
Michalis Spyroue74b2012018-04-18 09:49:16 +0100291 else
292 {
293 _border_size = BorderSize(1, 0, 0, 0);
294 _num_elems_processed_per_iteration = 8;
295 }
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000296
297 // Set config_id for enabling LWS tuning
298 _config_id = "pooling_layer_";
299 _config_id += lower_string(string_from_data_type(data_type));
300 _config_id += "_";
Michalis Spyroue74b2012018-04-18 09:49:16 +0100301 _config_id += lower_string(string_from_data_layout(data_layout));
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000302 _config_id += "_";
Michalis Spyroue74b2012018-04-18 09:49:16 +0100303 _config_id += support::cpp11::to_string(output->info()->dimension(idx_width));
304 _config_id += "_";
305 _config_id += support::cpp11::to_string(output->info()->dimension(idx_height));
306 _config_id += "_";
307 _config_id += support::cpp11::to_string(output->info()->dimension(idx_channel));
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000308}
309
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000310Status CLPoolingLayerKernel::validate(const ITensorInfo *input, const ITensorInfo *output, const PoolingLayerInfo &pool_info)
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000311{
312 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output, pool_info));
313 ARM_COMPUTE_RETURN_ON_ERROR(std::get<0>(validate_and_configure_window(input->clone().get(), output->clone().get(), pool_info)));
314
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000315 return Status{};
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000316}
317
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100318void CLPoolingLayerKernel::run(const Window &window, cl::CommandQueue &queue)
319{
320 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
321 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IKernel::window(), window);
322
Georgios Pinitas15997872018-02-19 13:58:22 +0000323 unsigned int pool_stride_x = 0;
324 unsigned int pool_stride_y = 0;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100325 std::tie(pool_stride_x, pool_stride_y) = _pool_info.pad_stride_info().stride();
326
Michalis Spyroue74b2012018-04-18 09:49:16 +0100327 switch(_input->info()->data_layout())
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100328 {
Michalis Spyroue74b2012018-04-18 09:49:16 +0100329 case DataLayout::NCHW:
330 {
331 Window window_collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
332 Window slice = window_collapsed.first_slice_window_3D();
333 do
334 {
335 // Upsample input by pool size
336 Window in_slice(slice);
337 in_slice.set(Window::DimX, Window::Dimension(in_slice.x().start() - _pool_info.pad_stride_info().pad_left(),
338 (in_slice.x().end() - _pool_info.pad_stride_info().pad_left()) * pool_stride_x,
339 pool_stride_x * _num_elems_processed_per_iteration));
340 in_slice.set(Window::DimY, Window::Dimension(in_slice.y().start() - _pool_info.pad_stride_info().pad_top(),
341 (in_slice.y().end() - _pool_info.pad_stride_info().pad_top()) * pool_stride_y,
342 pool_stride_y));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100343
Michalis Spyroue74b2012018-04-18 09:49:16 +0100344 // Set inputs
345 unsigned int idx = 0;
346 add_3D_tensor_argument(idx, _input, in_slice);
347 add_3D_tensor_argument(idx, _output, slice);
348 enqueue(queue, *this, slice, _lws_hint);
349 }
350 while(window_collapsed.slide_window_slice_3D(slice));
351 break;
352 }
353 case DataLayout::NHWC:
354 {
355 Window slice = window.first_slice_window_3D();
356
357 Window in_slice = window.first_slice_window_3D();
358 in_slice.set(Window::DimX, Window::Dimension(0, _input->info()->dimension(0), _num_elems_processed_per_iteration));
359 in_slice.set(Window::DimY, Window::Dimension(0, _input->info()->dimension(1), pool_stride_x));
360 in_slice.set(Window::DimZ, Window::Dimension(0, _input->info()->dimension(2), pool_stride_y));
361 do
362 {
363 // Set inputs
364 unsigned int idx = 0;
365 add_3D_tensor_argument(idx, _input, in_slice);
366 add_3D_tensor_argument(idx, _output, slice);
367 enqueue(queue, *this, slice, _lws_hint);
368 }
369 while(window.slide_window_slice_3D(slice) && window.slide_window_slice_3D(in_slice));
370 break;
371 }
372 default:
373 ARM_COMPUTE_ERROR("Not implemented");
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100374 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100375}