blob: ac368c77ef226aaf8d85855f120a9d964cc7a886 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
2 * Copyright (c) 2017 ARM Limited.
3 *
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"
37
38#include <set>
39#include <string>
40#include <tuple>
41
42using namespace arm_compute;
43
Giorgio Arena9f26b3e2017-11-28 14:35:00 +000044namespace
Anthony Barbier6ff3b192017-09-04 18:44:23 +010045{
Giorgio Arena9f26b3e2017-11-28 14:35:00 +000046// Internal window config info
47using CLPoolingConfig = std::pair<unsigned int, BorderSize>; //num_elems_processed_per_iteration, border_size
48
49void auto_init(const ITensorInfo *input, ITensorInfo *output, unsigned int pooled_w, unsigned int pooled_h)
50{
51 TensorShape output_shape{ input->tensor_shape() };
52 output_shape.set(0, pooled_w);
53 output_shape.set(1, pooled_h);
54
Giorgio Arenab8ab9972017-11-29 15:09:39 +000055 auto_init_if_empty(*output, input->clone()->set_tensor_shape(output_shape));
Anthony Barbier6ff3b192017-09-04 18:44:23 +010056}
57
Georgios Pinitas631c41a2017-12-06 11:53:03 +000058Status validate_arguments(const ITensorInfo *input, const ITensorInfo *output, const PoolingLayerInfo &pool_info)
Georgios Pinitas3faea252017-10-30 14:13:50 +000059{
60 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +000061 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::QASYMM8, DataType::QS8, DataType::QS16, DataType::F16, DataType::F32);
62 ARM_COMPUTE_RETURN_ERROR_ON_MSG((is_data_type_quantized_asymmetric(input->data_type()) && pool_info.pool_type() == PoolingType::L2),
63 "Unsupported combination of parameters!");
Georgios Pinitas3faea252017-10-30 14:13:50 +000064
Georgios Pinitas4c2dd542017-11-13 12:58:41 +000065 const bool is_global_pooling = pool_info.is_global_pooling();
66 const unsigned int pool_size = is_global_pooling ? input->tensor_shape().x() : pool_info.pool_size();
67
68 ARM_COMPUTE_RETURN_ERROR_ON_MSG(is_global_pooling && (input->tensor_shape().x() != input->tensor_shape().y()),
69 "Global pooling is supported only with rectangular inputs!");
70 ARM_COMPUTE_RETURN_ERROR_ON_MSG(!is_global_pooling && ((pool_info.pad_stride_info().pad().first >= pool_size) || (pool_info.pad_stride_info().pad().second >= pool_size)),
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +000071 "Invalid pool size and pool pad combination!");
Georgios Pinitas3faea252017-10-30 14:13:50 +000072
73 // Checks performed when output is configured
74 if(output->total_size() != 0)
75 {
76 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
77 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_FIXED_POINT(input, output);
78
79 unsigned int pooled_w = 0;
80 unsigned int pooled_h = 0;
81 std::tie(pooled_w, pooled_h) = scaled_dimensions(input->dimension(0),
82 input->dimension(1),
83 pool_size,
84 pool_size,
85 pool_info.pad_stride_info());
Georgios Pinitas4c2dd542017-11-13 12:58:41 +000086 ARM_COMPUTE_RETURN_ERROR_ON_MSG((output->dimension(0) != pooled_w) || (output->dimension(1) != pooled_h),
Georgios Pinitas3faea252017-10-30 14:13:50 +000087 "Invalid output pooling dimensions!");
88 }
89
Georgios Pinitas631c41a2017-12-06 11:53:03 +000090 return Status{};
Georgios Pinitas3faea252017-10-30 14:13:50 +000091}
92
Georgios Pinitas631c41a2017-12-06 11:53:03 +000093std::tuple<Status, Window, CLPoolingConfig> validate_and_configure_window(ITensorInfo *input, ITensorInfo *output, const PoolingLayerInfo &pool_info)
Giorgio Arena9f26b3e2017-11-28 14:35:00 +000094{
95 int pool_pad_x = 0;
96 int pool_pad_y = 0;
97 int pool_stride_x = 0;
98 int pool_stride_y = 0;
99 unsigned int pooled_w = 0;
100 unsigned int pooled_h = 0;
101 int pool_size = pool_info.pool_size();
102 const PadStrideInfo pad_stride_info = pool_info.pad_stride_info();
103 std::tie(pool_pad_x, pool_pad_y) = pad_stride_info.pad();
104 std::tie(pool_stride_x, pool_stride_y) = pad_stride_info.stride();
105
106 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
107
108 // Update pool size in case of global pooling
109 pool_size = pool_info.is_global_pooling() ? input->dimension(0) : pool_size;
110
111 // Check output dimensions
112 std::tie(pooled_w, pooled_h) = scaled_dimensions(input->dimension(0),
113 input->dimension(1),
114 pool_size,
115 pool_size,
116 pad_stride_info);
117
118 auto_init(input, output, pooled_w, pooled_h);
119
120 BorderSize border_size = BorderSize(pool_pad_y, pool_pad_x);
121 const DataType data_type = input->data_type();
122
123 const int input_width = input->dimension(0);
124 const int input_height = input->dimension(1);
125
126 unsigned int num_elems_processed_per_iteration = 1;
127
128 if((pool_size == 3) && !is_data_type_quantized_asymmetric(data_type))
129 {
130 const bool is_pool3x3_stride_le3 = (pool_size == 3) && (pool_stride_x <= 3) && !is_data_type_fixed_point(data_type);
131
132 int num_elems_read_per_iteration = pool_size;
133 if(is_pool3x3_stride_le3)
134 {
135 // Change the number of elements processed and the number of elements read per iteration
136 // for pooling 3x3 with stride less equal than 3
137 num_elems_processed_per_iteration = 4;
138 num_elems_read_per_iteration = pool_size * (pool_stride_x + 1);
139 }
140
141 const int upper_bound_w = ((pooled_w - 1) * pool_stride_x - pool_pad_x + num_elems_read_per_iteration) - input_width;
142 const int upper_bound_h = ((pooled_h - 1) * pool_stride_y - pool_pad_y + pool_size) - input_height;
143
144 border_size.right = std::max(upper_bound_w, pool_pad_x);
145 border_size.bottom = std::max(upper_bound_h, pool_pad_y);
146 }
147 else
148 {
149 const int upper_bound_w = ((pooled_w - 1) * pool_stride_x - pool_pad_x + pool_size) - input_width;
150 const int upper_bound_h = ((pooled_h - 1) * pool_stride_y - pool_pad_y + pool_size) - input_height;
151
152 border_size.right = std::max(upper_bound_w, pool_pad_x);
153 border_size.bottom = std::max(upper_bound_h, pool_pad_y);
154 }
155
156 Window win = calculate_max_window(*output, Steps(num_elems_processed_per_iteration));
157
158 AccessWindowRectangle input_access(input, -pool_pad_x, -pool_pad_y, input_width + border_size.right, input_height + border_size.bottom);
159 AccessWindowHorizontal output_access(output, 0, num_elems_processed_per_iteration);
160 bool window_changed = update_window_and_padding(win, input_access, output_access);
161 output_access.set_valid_region(win, ValidRegion(Coordinates(), output->tensor_shape()));
162
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000163 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000164 return std::make_tuple(err, win, CLPoolingConfig(num_elems_processed_per_iteration, border_size));
165}
166} // namespace
167
168CLPoolingLayerKernel::CLPoolingLayerKernel()
169 : _input(nullptr), _output(nullptr), _pool_info(), _border_size(0), _num_elems_processed_per_iteration(1)
170{
171}
172
173BorderSize CLPoolingLayerKernel::border_size() const
174{
175 return _border_size;
176}
177
178void CLPoolingLayerKernel::configure(const ICLTensor *input, ICLTensor *output, const PoolingLayerInfo &pool_info)
179{
180 int pool_pad_x = 0;
181 int pool_pad_y = 0;
182 int pool_stride_x = 0;
183 int pool_stride_y = 0;
184 unsigned int pooled_w = 0;
185 unsigned int pooled_h = 0;
186 const PoolingType pool_type = pool_info.pool_type();
187 int pool_size = pool_info.pool_size();
188 const PadStrideInfo pad_stride_info = pool_info.pad_stride_info();
189 const bool exclude_padding = pool_info.exclude_padding();
190 std::tie(pool_pad_x, pool_pad_y) = pad_stride_info.pad();
191 std::tie(pool_stride_x, pool_stride_y) = pad_stride_info.stride();
192
193 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
194
195 // Update pool size in case of global pooling
196 pool_size = pool_info.is_global_pooling() ? input->info()->dimension(0) : pool_size;
197
198 // Check output dimensions
199 std::tie(pooled_w, pooled_h) = scaled_dimensions(input->info()->dimension(0),
200 input->info()->dimension(1),
201 pool_size,
202 pool_size,
203 pad_stride_info);
204
205 auto_init(input->info(), output->info(), pooled_w, pooled_h);
206
Giorgio Arenaf6a43c52017-12-01 12:16:25 +0000207 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), output->info(), pool_info));
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000208
209 // Set instance variables
210 _input = input;
211 _output = output;
212 _pool_info = pool_info;
213
214 const GPUTarget gpu_target = get_arch_from_target(get_target());
215 const DataType data_type = input->info()->data_type();
216
217 // Set build options
218 CLBuildOptions build_opts;
219 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(data_type));
220 build_opts.add_option("-DPOOL_" + string_from_pooling_type(pool_type));
221 build_opts.add_option_if(is_data_type_fixed_point(data_type),
222 "-DFIXED_POINT_POSITION=" + support::cpp11::to_string(input->info()->fixed_point_position()));
223 build_opts.add_option("-DSTRIDE_X=" + support::cpp11::to_string(pool_stride_x));
224 if(pool_type != PoolingType::MAX)
225 {
226 build_opts.add_option_if(exclude_padding, "-DEXCLUDE_PADDING");
227 build_opts.add_option("-DMAX_WIDTH=" + support::cpp11::to_string(input->info()->dimension(0) + (exclude_padding ? 0 : pool_pad_x)));
228 build_opts.add_option("-DMAX_HEIGHT=" + support::cpp11::to_string(input->info()->dimension(1) + (exclude_padding ? 0 : pool_pad_y)));
229 build_opts.add_option("-DSTRIDE_Y=" + support::cpp11::to_string(pool_stride_y));
230 build_opts.add_option("-DPAD_X=" + support::cpp11::to_string(pool_pad_x));
231 build_opts.add_option("-DPAD_Y=" + support::cpp11::to_string(pool_pad_y));
232 }
233
234 // Create kernel
235 if((pool_size == 3) && !is_data_type_quantized_asymmetric(data_type))
236 {
237 // Check if we have pool3x3 with stride_x less equal than 3. In these cases, run an optimized OpenCL kernel where
238 // each thread computes 4 output elements
239 const bool is_pool3x3_stride_le3 = (pool_size == 3) && (pool_stride_x <= 3) && !is_data_type_fixed_point(data_type);
240
241 std::string kernel_name = ((is_pool3x3_stride_le3) ? "pooling_layer_optimized_" : "pooling_layer_")
242 + support::cpp11::to_string(pool_size);
243 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel(kernel_name, build_opts.options()));
244 }
245 else // Run general case
246 {
247 build_opts.add_option("-DPOOL_SIZE=" + support::cpp11::to_string(pool_size));
248 build_opts.add_option_if(data_type == DataType::F16, "-DFP16");
249
250 std::string kernel_name = is_data_type_quantized_asymmetric(data_type) ? "pooling_layer_N_quantized" : "pooling_layer_N";
251 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel(kernel_name, build_opts.options()));
252 }
253
254 // Configure kernel window
255 auto win_config = validate_and_configure_window(input->info(), output->info(), pool_info);
256
257 ARM_COMPUTE_ERROR_THROW_ON(std::get<0>(win_config));
258
259 // Configure the local work size (hint) from the first two dimensions of the global work size.
260 // On Bifrost, this works for up to 35x35xC filters, for which the pooling_layer_3_optimized
261 // kernel is launched with gws=(9, 33, C). In any case, the hint will be ignored if it is
262 // invalid (e.g. exceeds the maximum workgroup size that the kernel can be launched with).
263 if(gpu_target == GPUTarget::BIFROST)
264 {
265 cl::NDRange gws = ICLKernel::gws_from_window(std::get<1>(win_config));
266 _lws_hint = cl::NDRange(gws[0], gws[1], 1);
267 }
268
269 ICLKernel::configure(std::get<1>(win_config));
270
271 CLPoolingConfig pooling_config = std::get<2>(win_config);
272 _num_elems_processed_per_iteration = pooling_config.first;
273 _border_size = pooling_config.second;
274
275 // Set config_id for enabling LWS tuning
276 _config_id = "pooling_layer_";
277 _config_id += lower_string(string_from_data_type(data_type));
278 _config_id += "_";
279 _config_id += support::cpp11::to_string(output->info()->dimension(0));
280 _config_id += "_";
281 _config_id += support::cpp11::to_string(output->info()->dimension(1));
282}
283
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000284Status CLPoolingLayerKernel::validate(const ITensorInfo *input, const ITensorInfo *output, const PoolingLayerInfo &pool_info)
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000285{
286 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output, pool_info));
287 ARM_COMPUTE_RETURN_ON_ERROR(std::get<0>(validate_and_configure_window(input->clone().get(), output->clone().get(), pool_info)));
288
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000289 return Status{};
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000290}
291
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100292void CLPoolingLayerKernel::run(const Window &window, cl::CommandQueue &queue)
293{
294 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
295 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IKernel::window(), window);
296
297 unsigned int pool_pad_x, pool_pad_y, pool_stride_x, pool_stride_y = 0;
298 std::tie(pool_pad_x, pool_pad_y) = _pool_info.pad_stride_info().pad();
299 std::tie(pool_stride_x, pool_stride_y) = _pool_info.pad_stride_info().stride();
300
steniu01f70256b2017-07-13 14:03:35 +0100301 Window window_collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
302 Window slice = window_collapsed.first_slice_window_3D();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100303
304 do
305 {
306 // Upsample input by pool size
307 Window in_slice(slice);
Gian Marco Iodicecb292832017-08-02 13:19:48 +0100308 in_slice.set(Window::DimX, Window::Dimension(in_slice.x().start() - pool_pad_x, in_slice.x().end() * pool_stride_x, pool_stride_x * _num_elems_processed_per_iteration));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100309 in_slice.set(Window::DimY, Window::Dimension(in_slice.y().start() - pool_pad_y, in_slice.y().end() * pool_stride_y, pool_stride_y));
310
311 // Set inputs
312 unsigned int idx = 0;
313 add_3D_tensor_argument(idx, _input, in_slice);
314 add_3D_tensor_argument(idx, _output, slice);
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000315 enqueue(queue, *this, slice, _lws_hint);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100316 }
steniu01f70256b2017-07-13 14:03:35 +0100317 while(window_collapsed.slide_window_slice_3D(slice));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100318}