blob: b3034e10cc86669c3c613fd6d5601bae086b1d1c [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 Gottardia527e8c2018-01-31 17:49:25 +000066 const unsigned int pool_size_x = is_global_pooling ? input->tensor_shape().x() : pool_info.pool_size().width;
67 const unsigned int pool_size_y = is_global_pooling ? input->tensor_shape().y() : pool_info.pool_size().height;
Georgios Pinitas4c2dd542017-11-13 12:58:41 +000068
Georgios Pinitas3faea252017-10-30 14:13:50 +000069 // Checks performed when output is configured
70 if(output->total_size() != 0)
71 {
72 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
73 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_FIXED_POINT(input, output);
74
75 unsigned int pooled_w = 0;
76 unsigned int pooled_h = 0;
77 std::tie(pooled_w, pooled_h) = scaled_dimensions(input->dimension(0),
78 input->dimension(1),
Isabella Gottardia527e8c2018-01-31 17:49:25 +000079 pool_size_x,
80 pool_size_y,
Georgios Pinitas3faea252017-10-30 14:13:50 +000081 pool_info.pad_stride_info());
Georgios Pinitas4c2dd542017-11-13 12:58:41 +000082 ARM_COMPUTE_RETURN_ERROR_ON_MSG((output->dimension(0) != pooled_w) || (output->dimension(1) != pooled_h),
Georgios Pinitas3faea252017-10-30 14:13:50 +000083 "Invalid output pooling dimensions!");
84 }
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{
Giorgio Arena9f26b3e2017-11-28 14:35:00 +000091 int pool_stride_x = 0;
92 int pool_stride_y = 0;
93 unsigned int pooled_w = 0;
94 unsigned int pooled_h = 0;
Isabella Gottardia527e8c2018-01-31 17:49:25 +000095 int pool_size_x = pool_info.is_global_pooling() ? input->dimension(0) : pool_info.pool_size().width;
96 int pool_size_y = pool_info.is_global_pooling() ? input->dimension(1) : pool_info.pool_size().height;
Giorgio Arena9f26b3e2017-11-28 14:35:00 +000097 const PadStrideInfo pad_stride_info = pool_info.pad_stride_info();
Giorgio Arena9f26b3e2017-11-28 14:35:00 +000098 std::tie(pool_stride_x, pool_stride_y) = pad_stride_info.stride();
Georgios Pinitas15997872018-02-19 13:58:22 +000099 const int pool_pad_right = pad_stride_info.pad_right();
100 const int pool_pad_top = pad_stride_info.pad_top();
101 const int pool_pad_left = pad_stride_info.pad_left();
102 const int pool_pad_bottom = pad_stride_info.pad_bottom();
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000103
104 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
105
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000106 // Check output dimensions
107 std::tie(pooled_w, pooled_h) = scaled_dimensions(input->dimension(0),
108 input->dimension(1),
Isabella Gottardia527e8c2018-01-31 17:49:25 +0000109 pool_size_x,
110 pool_size_y,
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000111 pad_stride_info);
112
113 auto_init(input, output, pooled_w, pooled_h);
114
Georgios Pinitas15997872018-02-19 13:58:22 +0000115 BorderSize border_size = BorderSize(pool_pad_top, pool_pad_right, pool_pad_bottom, pool_pad_left);
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000116 const DataType data_type = input->data_type();
117
118 const int input_width = input->dimension(0);
119 const int input_height = input->dimension(1);
120
Diego Lopez Recas61ef5bf2017-12-11 12:36:55 +0000121 // Change the number of elements processed per iteration
122 // for pooling 3x3 with stride less equal than 3
Isabella Gottardia527e8c2018-01-31 17:49:25 +0000123 const bool can_optimize = (pool_size_x == 3) && (pool_size_y == 3) && (pool_stride_x <= 3) && !is_data_type_quantized(data_type);
Diego Lopez Recas61ef5bf2017-12-11 12:36:55 +0000124 const unsigned int num_elems_processed_per_iteration = can_optimize ? 4 : 1;
Isabella Gottardia527e8c2018-01-31 17:49:25 +0000125 const 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 +0000126
Diego Lopez Recas61ef5bf2017-12-11 12:36:55 +0000127 // Number of iterations in X dimension
128 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 +0000129
Diego Lopez Recas61ef5bf2017-12-11 12:36:55 +0000130 // Upper limit for the number of right/bottom border elements that are accessed
Georgios Pinitas15997872018-02-19 13:58:22 +0000131 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;
132 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 +0000133
Georgios Pinitas15997872018-02-19 13:58:22 +0000134 border_size.right = std::max(upper_bound_w, pool_pad_right);
135 border_size.bottom = std::max(upper_bound_h, pool_pad_bottom);
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000136
137 Window win = calculate_max_window(*output, Steps(num_elems_processed_per_iteration));
138
Georgios Pinitas15997872018-02-19 13:58:22 +0000139 AccessWindowRectangle input_access(input, -pool_pad_left, -pool_pad_top, num_elems_read_per_iteration, pool_size_y,
Diego Lopez Recas61ef5bf2017-12-11 12:36:55 +0000140 pool_stride_x * num_elems_processed_per_iteration, pool_stride_y);
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000141 AccessWindowHorizontal output_access(output, 0, num_elems_processed_per_iteration);
142 bool window_changed = update_window_and_padding(win, input_access, output_access);
143 output_access.set_valid_region(win, ValidRegion(Coordinates(), output->tensor_shape()));
144
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000145 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000146 return std::make_tuple(err, win, CLPoolingConfig(num_elems_processed_per_iteration, border_size));
147}
148} // namespace
149
150CLPoolingLayerKernel::CLPoolingLayerKernel()
151 : _input(nullptr), _output(nullptr), _pool_info(), _border_size(0), _num_elems_processed_per_iteration(1)
152{
153}
154
155BorderSize CLPoolingLayerKernel::border_size() const
156{
157 return _border_size;
158}
159
160void CLPoolingLayerKernel::configure(const ICLTensor *input, ICLTensor *output, const PoolingLayerInfo &pool_info)
161{
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000162 int pool_stride_x = 0;
163 int pool_stride_y = 0;
164 unsigned int pooled_w = 0;
165 unsigned int pooled_h = 0;
166 const PoolingType pool_type = pool_info.pool_type();
Isabella Gottardia527e8c2018-01-31 17:49:25 +0000167 const int pool_size_x = pool_info.is_global_pooling() ? input->info()->dimension(0) : pool_info.pool_size().width;
168 const int pool_size_y = pool_info.is_global_pooling() ? input->info()->dimension(1) : pool_info.pool_size().height;
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000169 const PadStrideInfo pad_stride_info = pool_info.pad_stride_info();
170 const bool exclude_padding = pool_info.exclude_padding();
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000171 std::tie(pool_stride_x, pool_stride_y) = pad_stride_info.stride();
Georgios Pinitas15997872018-02-19 13:58:22 +0000172 const int pool_pad_top = pad_stride_info.pad_top();
173 const int pool_pad_left = pad_stride_info.pad_left();
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000174
175 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
176
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000177 // Check output dimensions
178 std::tie(pooled_w, pooled_h) = scaled_dimensions(input->info()->dimension(0),
179 input->info()->dimension(1),
Isabella Gottardia527e8c2018-01-31 17:49:25 +0000180 pool_size_x,
181 pool_size_y,
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000182 pad_stride_info);
183
184 auto_init(input->info(), output->info(), pooled_w, pooled_h);
185
Giorgio Arenaf6a43c52017-12-01 12:16:25 +0000186 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), output->info(), pool_info));
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000187
188 // Set instance variables
189 _input = input;
190 _output = output;
191 _pool_info = pool_info;
192
193 const GPUTarget gpu_target = get_arch_from_target(get_target());
194 const DataType data_type = input->info()->data_type();
195
196 // Set build options
197 CLBuildOptions build_opts;
198 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(data_type));
199 build_opts.add_option("-DPOOL_" + string_from_pooling_type(pool_type));
200 build_opts.add_option_if(is_data_type_fixed_point(data_type),
201 "-DFIXED_POINT_POSITION=" + support::cpp11::to_string(input->info()->fixed_point_position()));
202 build_opts.add_option("-DSTRIDE_X=" + support::cpp11::to_string(pool_stride_x));
203 if(pool_type != PoolingType::MAX)
204 {
205 build_opts.add_option_if(exclude_padding, "-DEXCLUDE_PADDING");
Georgios Pinitas15997872018-02-19 13:58:22 +0000206 build_opts.add_option("-DMAX_WIDTH=" + support::cpp11::to_string(input->info()->dimension(0) + (exclude_padding ? 0 : pool_pad_left)));
207 build_opts.add_option("-DMAX_HEIGHT=" + support::cpp11::to_string(input->info()->dimension(1) + (exclude_padding ? 0 : pool_pad_top)));
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000208 build_opts.add_option("-DSTRIDE_Y=" + support::cpp11::to_string(pool_stride_y));
Georgios Pinitas15997872018-02-19 13:58:22 +0000209 build_opts.add_option("-DPAD_X=" + support::cpp11::to_string(pool_pad_left));
210 build_opts.add_option("-DPAD_Y=" + support::cpp11::to_string(pool_pad_top));
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000211 }
212
213 // Create kernel
Isabella Gottardia527e8c2018-01-31 17:49:25 +0000214 if((pool_size_x == 3) && (pool_size_y == 3) && !is_data_type_quantized_asymmetric(data_type))
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000215 {
216 // Check if we have pool3x3 with stride_x less equal than 3. In these cases, run an optimized OpenCL kernel where
217 // each thread computes 4 output elements
Isabella Gottardia527e8c2018-01-31 17:49:25 +0000218 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 +0000219
220 std::string kernel_name = ((is_pool3x3_stride_le3) ? "pooling_layer_optimized_" : "pooling_layer_")
Isabella Gottardia527e8c2018-01-31 17:49:25 +0000221 + support::cpp11::to_string(pool_size_x);
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000222 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel(kernel_name, build_opts.options()));
223 }
224 else // Run general case
225 {
Isabella Gottardia527e8c2018-01-31 17:49:25 +0000226 build_opts.add_option("-DPOOL_SIZE_X=" + support::cpp11::to_string(pool_size_x));
227 build_opts.add_option("-DPOOL_SIZE_Y=" + support::cpp11::to_string(pool_size_y));
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000228 build_opts.add_option_if(data_type == DataType::F16, "-DFP16");
229
Isabella Gottardia527e8c2018-01-31 17:49:25 +0000230 std::string kernel_name = is_data_type_quantized_asymmetric(data_type) ? "pooling_layer_MxN_quantized" : "pooling_layer_MxN";
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000231 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel(kernel_name, build_opts.options()));
232 }
233
234 // Configure kernel window
235 auto win_config = validate_and_configure_window(input->info(), output->info(), pool_info);
236
237 ARM_COMPUTE_ERROR_THROW_ON(std::get<0>(win_config));
238
239 // Configure the local work size (hint) from the first two dimensions of the global work size.
240 // On Bifrost, this works for up to 35x35xC filters, for which the pooling_layer_3_optimized
241 // kernel is launched with gws=(9, 33, C). In any case, the hint will be ignored if it is
242 // invalid (e.g. exceeds the maximum workgroup size that the kernel can be launched with).
243 if(gpu_target == GPUTarget::BIFROST)
244 {
245 cl::NDRange gws = ICLKernel::gws_from_window(std::get<1>(win_config));
246 _lws_hint = cl::NDRange(gws[0], gws[1], 1);
247 }
248
249 ICLKernel::configure(std::get<1>(win_config));
250
251 CLPoolingConfig pooling_config = std::get<2>(win_config);
252 _num_elems_processed_per_iteration = pooling_config.first;
253 _border_size = pooling_config.second;
254
255 // Set config_id for enabling LWS tuning
256 _config_id = "pooling_layer_";
257 _config_id += lower_string(string_from_data_type(data_type));
258 _config_id += "_";
259 _config_id += support::cpp11::to_string(output->info()->dimension(0));
260 _config_id += "_";
261 _config_id += support::cpp11::to_string(output->info()->dimension(1));
262}
263
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000264Status CLPoolingLayerKernel::validate(const ITensorInfo *input, const ITensorInfo *output, const PoolingLayerInfo &pool_info)
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000265{
266 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output, pool_info));
267 ARM_COMPUTE_RETURN_ON_ERROR(std::get<0>(validate_and_configure_window(input->clone().get(), output->clone().get(), pool_info)));
268
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000269 return Status{};
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000270}
271
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100272void CLPoolingLayerKernel::run(const Window &window, cl::CommandQueue &queue)
273{
274 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
275 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IKernel::window(), window);
276
Georgios Pinitas15997872018-02-19 13:58:22 +0000277 unsigned int pool_stride_x = 0;
278 unsigned int pool_stride_y = 0;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100279 std::tie(pool_stride_x, pool_stride_y) = _pool_info.pad_stride_info().stride();
280
steniu01f70256b2017-07-13 14:03:35 +0100281 Window window_collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
282 Window slice = window_collapsed.first_slice_window_3D();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100283
284 do
285 {
286 // Upsample input by pool size
287 Window in_slice(slice);
Georgios Pinitas15997872018-02-19 13:58:22 +0000288 in_slice.set(Window::DimX, Window::Dimension(in_slice.x().start() - _pool_info.pad_stride_info().pad_left(),
289 (in_slice.x().end() - _pool_info.pad_stride_info().pad_left()) * pool_stride_x,
Diego Lopez Recas61ef5bf2017-12-11 12:36:55 +0000290 pool_stride_x * _num_elems_processed_per_iteration));
Georgios Pinitas15997872018-02-19 13:58:22 +0000291 in_slice.set(Window::DimY, Window::Dimension(in_slice.y().start() - _pool_info.pad_stride_info().pad_top(),
292 (in_slice.y().end() - _pool_info.pad_stride_info().pad_top()) * pool_stride_y,
Diego Lopez Recas61ef5bf2017-12-11 12:36:55 +0000293 pool_stride_y));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100294
295 // Set inputs
296 unsigned int idx = 0;
297 add_3D_tensor_argument(idx, _input, in_slice);
298 add_3D_tensor_argument(idx, _output, slice);
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000299 enqueue(queue, *this, slice, _lws_hint);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100300 }
steniu01f70256b2017-07-13 14:03:35 +0100301 while(window_collapsed.slide_window_slice_3D(slice));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100302}