blob: 043a4bde04526ce015829ed05bb32aabf070c016 [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"
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();
Isabella Gottardi6e464c32018-01-26 12:32:45 +000066 const unsigned int pool_size = is_global_pooling ? input->tensor_shape().x() : pool_info.pool_size().width;
Georgios Pinitas4c2dd542017-11-13 12:58:41 +000067
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!");
Isabella Gottardi6e464c32018-01-26 12:32:45 +000072 ARM_COMPUTE_RETURN_ERROR_ON_MSG(pool_info.pool_size().width != pool_info.pool_size().height, "Invalid Pool size, width not equal to height!");
Georgios Pinitas3faea252017-10-30 14:13:50 +000073
74 // Checks performed when output is configured
75 if(output->total_size() != 0)
76 {
77 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
78 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_FIXED_POINT(input, output);
79
80 unsigned int pooled_w = 0;
81 unsigned int pooled_h = 0;
82 std::tie(pooled_w, pooled_h) = scaled_dimensions(input->dimension(0),
83 input->dimension(1),
84 pool_size,
85 pool_size,
86 pool_info.pad_stride_info());
Georgios Pinitas4c2dd542017-11-13 12:58:41 +000087 ARM_COMPUTE_RETURN_ERROR_ON_MSG((output->dimension(0) != pooled_w) || (output->dimension(1) != pooled_h),
Georgios Pinitas3faea252017-10-30 14:13:50 +000088 "Invalid output pooling dimensions!");
89 }
90
Georgios Pinitas631c41a2017-12-06 11:53:03 +000091 return Status{};
Georgios Pinitas3faea252017-10-30 14:13:50 +000092}
93
Georgios Pinitas631c41a2017-12-06 11:53:03 +000094std::tuple<Status, Window, CLPoolingConfig> validate_and_configure_window(ITensorInfo *input, ITensorInfo *output, const PoolingLayerInfo &pool_info)
Giorgio Arena9f26b3e2017-11-28 14:35:00 +000095{
96 int pool_pad_x = 0;
97 int pool_pad_y = 0;
98 int pool_stride_x = 0;
99 int pool_stride_y = 0;
100 unsigned int pooled_w = 0;
101 unsigned int pooled_h = 0;
Isabella Gottardi6e464c32018-01-26 12:32:45 +0000102 int pool_size = pool_info.pool_size().width;
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000103 const PadStrideInfo pad_stride_info = pool_info.pad_stride_info();
104 std::tie(pool_pad_x, pool_pad_y) = pad_stride_info.pad();
105 std::tie(pool_stride_x, pool_stride_y) = pad_stride_info.stride();
106
107 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
108
109 // Update pool size in case of global pooling
110 pool_size = pool_info.is_global_pooling() ? input->dimension(0) : pool_size;
111
112 // Check output dimensions
113 std::tie(pooled_w, pooled_h) = scaled_dimensions(input->dimension(0),
114 input->dimension(1),
115 pool_size,
116 pool_size,
117 pad_stride_info);
118
119 auto_init(input, output, pooled_w, pooled_h);
120
121 BorderSize border_size = BorderSize(pool_pad_y, pool_pad_x);
122 const DataType data_type = input->data_type();
123
124 const int input_width = input->dimension(0);
125 const int input_height = input->dimension(1);
126
Diego Lopez Recas61ef5bf2017-12-11 12:36:55 +0000127 // 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 == 3) && (pool_stride_x <= 3) && !is_data_type_quantized(data_type);
130 const unsigned int num_elems_processed_per_iteration = can_optimize ? 4 : 1;
131 const int num_elems_read_per_iteration = (num_elems_processed_per_iteration - 1) * pool_stride_x + pool_size;
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000132
Diego Lopez Recas61ef5bf2017-12-11 12:36:55 +0000133 // 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
Diego Lopez Recas61ef5bf2017-12-11 12:36:55 +0000136 // 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_x + num_elems_read_per_iteration) - input_width;
138 const int upper_bound_h = ((pooled_h - 1) * pool_stride_y - pool_pad_y + pool_size) - input_height;
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000139
Diego Lopez Recas61ef5bf2017-12-11 12:36:55 +0000140 border_size.right = std::max(upper_bound_w, pool_pad_x);
141 border_size.bottom = std::max(upper_bound_h, pool_pad_y);
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000142
143 Window win = calculate_max_window(*output, Steps(num_elems_processed_per_iteration));
144
Diego Lopez Recas61ef5bf2017-12-11 12:36:55 +0000145 AccessWindowRectangle input_access(input, -pool_pad_x, -pool_pad_y, num_elems_read_per_iteration, pool_size,
146 pool_stride_x * num_elems_processed_per_iteration, pool_stride_y);
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000147 AccessWindowHorizontal output_access(output, 0, num_elems_processed_per_iteration);
148 bool window_changed = update_window_and_padding(win, input_access, output_access);
149 output_access.set_valid_region(win, ValidRegion(Coordinates(), output->tensor_shape()));
150
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000151 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000152 return std::make_tuple(err, win, CLPoolingConfig(num_elems_processed_per_iteration, border_size));
153}
154} // namespace
155
156CLPoolingLayerKernel::CLPoolingLayerKernel()
157 : _input(nullptr), _output(nullptr), _pool_info(), _border_size(0), _num_elems_processed_per_iteration(1)
158{
159}
160
161BorderSize CLPoolingLayerKernel::border_size() const
162{
163 return _border_size;
164}
165
166void CLPoolingLayerKernel::configure(const ICLTensor *input, ICLTensor *output, const PoolingLayerInfo &pool_info)
167{
168 int pool_pad_x = 0;
169 int pool_pad_y = 0;
170 int pool_stride_x = 0;
171 int pool_stride_y = 0;
172 unsigned int pooled_w = 0;
173 unsigned int pooled_h = 0;
174 const PoolingType pool_type = pool_info.pool_type();
Isabella Gottardi6e464c32018-01-26 12:32:45 +0000175 int pool_size = pool_info.pool_size().width;
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000176 const PadStrideInfo pad_stride_info = pool_info.pad_stride_info();
177 const bool exclude_padding = pool_info.exclude_padding();
178 std::tie(pool_pad_x, pool_pad_y) = pad_stride_info.pad();
179 std::tie(pool_stride_x, pool_stride_y) = pad_stride_info.stride();
180
181 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
182
183 // Update pool size in case of global pooling
184 pool_size = pool_info.is_global_pooling() ? input->info()->dimension(0) : pool_size;
185
186 // Check output dimensions
187 std::tie(pooled_w, pooled_h) = scaled_dimensions(input->info()->dimension(0),
188 input->info()->dimension(1),
189 pool_size,
190 pool_size,
191 pad_stride_info);
192
193 auto_init(input->info(), output->info(), pooled_w, pooled_h);
194
Giorgio Arenaf6a43c52017-12-01 12:16:25 +0000195 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), output->info(), pool_info));
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000196
197 // Set instance variables
198 _input = input;
199 _output = output;
200 _pool_info = pool_info;
201
202 const GPUTarget gpu_target = get_arch_from_target(get_target());
203 const DataType data_type = input->info()->data_type();
204
205 // Set build options
206 CLBuildOptions build_opts;
207 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(data_type));
208 build_opts.add_option("-DPOOL_" + string_from_pooling_type(pool_type));
209 build_opts.add_option_if(is_data_type_fixed_point(data_type),
210 "-DFIXED_POINT_POSITION=" + support::cpp11::to_string(input->info()->fixed_point_position()));
211 build_opts.add_option("-DSTRIDE_X=" + support::cpp11::to_string(pool_stride_x));
212 if(pool_type != PoolingType::MAX)
213 {
214 build_opts.add_option_if(exclude_padding, "-DEXCLUDE_PADDING");
215 build_opts.add_option("-DMAX_WIDTH=" + support::cpp11::to_string(input->info()->dimension(0) + (exclude_padding ? 0 : pool_pad_x)));
216 build_opts.add_option("-DMAX_HEIGHT=" + support::cpp11::to_string(input->info()->dimension(1) + (exclude_padding ? 0 : pool_pad_y)));
217 build_opts.add_option("-DSTRIDE_Y=" + support::cpp11::to_string(pool_stride_y));
218 build_opts.add_option("-DPAD_X=" + support::cpp11::to_string(pool_pad_x));
219 build_opts.add_option("-DPAD_Y=" + support::cpp11::to_string(pool_pad_y));
220 }
221
222 // Create kernel
223 if((pool_size == 3) && !is_data_type_quantized_asymmetric(data_type))
224 {
225 // Check if we have pool3x3 with stride_x less equal than 3. In these cases, run an optimized OpenCL kernel where
226 // each thread computes 4 output elements
227 const bool is_pool3x3_stride_le3 = (pool_size == 3) && (pool_stride_x <= 3) && !is_data_type_fixed_point(data_type);
228
229 std::string kernel_name = ((is_pool3x3_stride_le3) ? "pooling_layer_optimized_" : "pooling_layer_")
230 + support::cpp11::to_string(pool_size);
231 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel(kernel_name, build_opts.options()));
232 }
233 else // Run general case
234 {
235 build_opts.add_option("-DPOOL_SIZE=" + support::cpp11::to_string(pool_size));
236 build_opts.add_option_if(data_type == DataType::F16, "-DFP16");
237
238 std::string kernel_name = is_data_type_quantized_asymmetric(data_type) ? "pooling_layer_N_quantized" : "pooling_layer_N";
239 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel(kernel_name, build_opts.options()));
240 }
241
242 // Configure kernel window
243 auto win_config = validate_and_configure_window(input->info(), output->info(), pool_info);
244
245 ARM_COMPUTE_ERROR_THROW_ON(std::get<0>(win_config));
246
247 // Configure the local work size (hint) from the first two dimensions of the global work size.
248 // On Bifrost, this works for up to 35x35xC filters, for which the pooling_layer_3_optimized
249 // kernel is launched with gws=(9, 33, C). In any case, the hint will be ignored if it is
250 // invalid (e.g. exceeds the maximum workgroup size that the kernel can be launched with).
251 if(gpu_target == GPUTarget::BIFROST)
252 {
253 cl::NDRange gws = ICLKernel::gws_from_window(std::get<1>(win_config));
254 _lws_hint = cl::NDRange(gws[0], gws[1], 1);
255 }
256
257 ICLKernel::configure(std::get<1>(win_config));
258
259 CLPoolingConfig pooling_config = std::get<2>(win_config);
260 _num_elems_processed_per_iteration = pooling_config.first;
261 _border_size = pooling_config.second;
262
263 // Set config_id for enabling LWS tuning
264 _config_id = "pooling_layer_";
265 _config_id += lower_string(string_from_data_type(data_type));
266 _config_id += "_";
267 _config_id += support::cpp11::to_string(output->info()->dimension(0));
268 _config_id += "_";
269 _config_id += support::cpp11::to_string(output->info()->dimension(1));
270}
271
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000272Status CLPoolingLayerKernel::validate(const ITensorInfo *input, const ITensorInfo *output, const PoolingLayerInfo &pool_info)
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000273{
274 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output, pool_info));
275 ARM_COMPUTE_RETURN_ON_ERROR(std::get<0>(validate_and_configure_window(input->clone().get(), output->clone().get(), pool_info)));
276
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000277 return Status{};
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000278}
279
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100280void CLPoolingLayerKernel::run(const Window &window, cl::CommandQueue &queue)
281{
282 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
283 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IKernel::window(), window);
284
285 unsigned int pool_pad_x, pool_pad_y, pool_stride_x, pool_stride_y = 0;
286 std::tie(pool_pad_x, pool_pad_y) = _pool_info.pad_stride_info().pad();
287 std::tie(pool_stride_x, pool_stride_y) = _pool_info.pad_stride_info().stride();
288
steniu01f70256b2017-07-13 14:03:35 +0100289 Window window_collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
290 Window slice = window_collapsed.first_slice_window_3D();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100291
292 do
293 {
294 // Upsample input by pool size
295 Window in_slice(slice);
Diego Lopez Recas61ef5bf2017-12-11 12:36:55 +0000296 in_slice.set(Window::DimX, Window::Dimension(in_slice.x().start() - pool_pad_x,
297 (in_slice.x().end() - pool_pad_x) * pool_stride_x,
298 pool_stride_x * _num_elems_processed_per_iteration));
299 in_slice.set(Window::DimY, Window::Dimension(in_slice.y().start() - pool_pad_y,
300 (in_slice.y().end() - pool_pad_y) * pool_stride_y,
301 pool_stride_y));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100302
303 // Set inputs
304 unsigned int idx = 0;
305 add_3D_tensor_argument(idx, _input, in_slice);
306 add_3D_tensor_argument(idx, _output, slice);
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000307 enqueue(queue, *this, slice, _lws_hint);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100308 }
steniu01f70256b2017-07-13 14:03:35 +0100309 while(window_collapsed.slide_window_slice_3D(slice));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100310}