blob: f41664f4e0afbeaaa4c4a790ea52f1b856e80718 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Manuel Bottini8481d832019-12-10 15:28:40 +00002 * Copyright (c) 2016-2020 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/CLScaleKernel.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"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010030#include "arm_compute/core/CL/ICLKernel.h"
31#include "arm_compute/core/CL/ICLTensor.h"
32#include "arm_compute/core/CL/OpenCL.h"
33#include "arm_compute/core/Error.h"
34#include "arm_compute/core/Helpers.h"
35#include "arm_compute/core/TensorInfo.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000036#include "support/StringSupport.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010037
38#include <set>
39#include <string>
40
41using namespace arm_compute;
42
Michalis Spyrou46da23f2018-04-10 13:41:30 +010043namespace
44{
Sang-Hoon Park5b7fd872020-01-09 15:27:51 +000045inline std::pair<float, float> calculate_scale_factors(const ITensorInfo &input, const ITensorInfo &output, bool align_corners)
Michalis Spyrou46da23f2018-04-10 13:41:30 +010046{
47 DataLayout data_layout = input.data_layout();
48 const int idx_width = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
49 const int idx_height = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT);
50
51 // Compute the ratio between source width/height and destination width/height
52 const unsigned int input_width = input.dimension(idx_width);
53 const unsigned int input_height = input.dimension(idx_height);
54 const unsigned int output_width = output.dimension(idx_width);
55 const unsigned int output_height = output.dimension(idx_height);
56
Sang-Hoon Park5b7fd872020-01-09 15:27:51 +000057 float wr = arm_compute::calculate_resize_ratio(input_width, output_width, align_corners);
58 float hr = arm_compute::calculate_resize_ratio(input_height, output_height, align_corners);
Michalis Spyrou46da23f2018-04-10 13:41:30 +010059
60 return std::make_pair(wr, hr);
61}
62
Sang-Hoon Park5b7fd872020-01-09 15:27:51 +000063Status validate_arguments(const ITensorInfo *input, const ITensorInfo *output, InterpolationPolicy policy, bool align_corners)
Michalis Spyrou46da23f2018-04-10 13:41:30 +010064{
65 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input);
Manuel Bottini8481d832019-12-10 15:28:40 +000066 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::QASYMM8, DataType::QASYMM8_SIGNED, DataType::U8, DataType::S16, DataType::F16, DataType::F32);
Michalis Spyrou46da23f2018-04-10 13:41:30 +010067 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(output);
68 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
Isabella Gottardi0a1090a2019-02-14 18:07:36 +000069 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_QUANTIZATION_INFO(input, output);
Michalis Spyrou46da23f2018-04-10 13:41:30 +010070 ARM_COMPUTE_RETURN_ERROR_ON(output == input);
71
Sang-Hoon Park5b7fd872020-01-09 15:27:51 +000072 if(align_corners)
73 {
74 // For bilinear method with aligned corners, the resize ratio will
75 // be calculated by (input_size - 1)/(output_size - 1). Belows are
76 // checking possible overflows.
77 const auto data_layout = input->data_layout();
78 const auto width_index = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
79 const auto height_index = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT);
80
81 const auto input_width = input->dimension(width_index);
82 const auto input_height = input->dimension(height_index);
83 const auto output_width = output->dimension(width_index);
84 const auto output_height = output->dimension(height_index);
85
86 ARM_COMPUTE_RETURN_ERROR_ON(input_width == 0 || input_height == 0 || output_width == 0 || output_height == 0);
87 ARM_COMPUTE_RETURN_ERROR_ON((output_width - 1 == 0) || (output_height - 1 == 0));
88 }
89
Michalis Spyrou46da23f2018-04-10 13:41:30 +010090 float wr = 0.f;
91 float hr = 0.f;
Sang-Hoon Park5b7fd872020-01-09 15:27:51 +000092 std::tie(wr, hr) = calculate_scale_factors(*input, *output, align_corners);
Michalis Spyrou46da23f2018-04-10 13:41:30 +010093
94 ARM_COMPUTE_RETURN_ERROR_ON(policy == InterpolationPolicy::AREA && (wr > 1.f || hr > 1.f));
95
96 return Status{};
97}
98
99std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input, ITensorInfo *output, InterpolationPolicy policy, BorderMode border_mode, SamplingPolicy sampling_policy, BorderSize &border)
100{
101 Window win{};
102 bool window_changed{};
103 unsigned int num_elems_processed_per_iteration = 0;
104 DataLayout data_layout = input->data_layout();
105
106 switch(data_layout)
107 {
108 case DataLayout::NCHW:
109 {
110 if(border_mode == BorderMode::UNDEFINED)
111 {
112 border = BorderSize(0);
113 }
114
115 num_elems_processed_per_iteration = 4;
116 // Configure kernel window
Michele Di Giorgio17a01a32019-01-03 15:12:27 +0000117 win = calculate_max_window(*output, Steps(num_elems_processed_per_iteration));
Michalis Spyrou46da23f2018-04-10 13:41:30 +0100118 AccessWindowStatic input_access(input,
Michele Di Giorgio17a01a32019-01-03 15:12:27 +0000119 -border.left, -border.top,
120 input->dimension(0) + border.right,
121 input->dimension(1) + border.bottom);
Michalis Spyrou46da23f2018-04-10 13:41:30 +0100122 AccessWindowHorizontal output_access(output, 0, num_elems_processed_per_iteration);
123
124 output_access.set_valid_region(win, calculate_valid_region_scale(*(input),
125 output->tensor_shape(),
126 policy,
127 sampling_policy,
128 border_mode == BorderMode::UNDEFINED));
129
130 window_changed = update_window_and_padding(win, input_access, output_access);
131 }
132 break;
133 case DataLayout::NHWC:
134 {
135 num_elems_processed_per_iteration = 1;
136 // Configure kernel window
137 win = calculate_max_window(*output, Steps(num_elems_processed_per_iteration));
Michele Di Giorgio17a01a32019-01-03 15:12:27 +0000138 AccessWindowStatic input_access(input, -border.left, -border.top,
139 input->dimension(0) + border.right,
140 input->dimension(1) + border.bottom);
Michalis Spyrou46da23f2018-04-10 13:41:30 +0100141 AccessWindowHorizontal output_access(output, 0, num_elems_processed_per_iteration);
142 window_changed = update_window_and_padding(win, input_access, output_access);
143 output_access.set_valid_region(win, ValidRegion(Coordinates(), output->tensor_shape()));
144 }
145 break;
146 default:
147 ARM_COMPUTE_ERROR("Data layout not supported");
148 }
149
150 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
151 return std::make_pair(err, win);
152}
153} // namespace
154
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100155BorderSize CLScaleKernel::border_size() const
156{
157 return BorderSize(1);
158}
159
Michalis Spyrou46da23f2018-04-10 13:41:30 +0100160Status CLScaleKernel::validate(const ITensorInfo *input, const ITensorInfo *output, InterpolationPolicy policy,
Sang-Hoon Park5b7fd872020-01-09 15:27:51 +0000161 BorderMode border_mode, SamplingPolicy sampling_policy, bool align_corners)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100162{
Sang-Hoon Park5b7fd872020-01-09 15:27:51 +0000163 BorderSize border = BorderSize(1);
164 const bool is_align_corners = policy == InterpolationPolicy::BILINEAR
165 && sampling_policy == SamplingPolicy::TOP_LEFT
166 && align_corners;
167 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output, policy, is_align_corners));
Michalis Spyrou46da23f2018-04-10 13:41:30 +0100168 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input->clone().get(), output->clone().get(), policy, border_mode, sampling_policy, border).first);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100169
Michalis Spyrou46da23f2018-04-10 13:41:30 +0100170 return Status{};
171}
172
Georgios Pinitas6c95c2d2018-08-20 16:06:58 +0100173const ICLTensor *CLScaleKernel::input() const
174{
175 return _input;
176}
177
178const ICLTensor *CLScaleKernel::output() const
179{
180 return _output;
181}
182
Sang-Hoon Park5b7fd872020-01-09 15:27:51 +0000183void CLScaleKernel::configure(const ICLTensor *input, ICLTensor *output, InterpolationPolicy policy, BorderMode border_mode, SamplingPolicy sampling_policy, bool align_corners)
Michalis Spyrou46da23f2018-04-10 13:41:30 +0100184{
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100185 configure(CLKernelLibrary::get().get_compile_context(), input, output, policy, border_mode, sampling_policy, align_corners);
186}
187
Manuel Bottini2803f702020-04-21 16:20:03 +0100188void CLScaleKernel::configure(const CLCompileContext &compile_context, const ICLTensor *input, ICLTensor *output, InterpolationPolicy policy, BorderMode border_mode, SamplingPolicy sampling_policy,
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100189 bool align_corners)
190{
Sang-Hoon Park5b7fd872020-01-09 15:27:51 +0000191 _align_corners = policy == InterpolationPolicy::BILINEAR
192 && sampling_policy == SamplingPolicy::TOP_LEFT
193 && align_corners;
194
195 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), output->info(), policy, _align_corners));
Georgios Pinitas14d9d982019-12-13 12:33:09 +0000196
Georgios Pinitas6c95c2d2018-08-20 16:06:58 +0100197 _input = input;
198 _output = output;
199 _interpolationPolicy = policy;
Georgios Pinitas14d9d982019-12-13 12:33:09 +0000200 _data_layout = input->info()->data_layout();
Michalis Spyrou46da23f2018-04-10 13:41:30 +0100201
202 float wr = 0.f;
203 float hr = 0.f;
Sang-Hoon Park5b7fd872020-01-09 15:27:51 +0000204 std::tie(wr, hr) = calculate_scale_factors(*input->info(), *output->info(), _align_corners);
Michalis Spyrou46da23f2018-04-10 13:41:30 +0100205
Michalis Spyrou17220e22018-09-12 13:35:38 +0100206 const bool call_quantized_kernel = is_data_type_quantized_asymmetric(input->info()->data_type()) && policy == InterpolationPolicy::BILINEAR;
207
Georgios Pinitas14d9d982019-12-13 12:33:09 +0000208 const int idx_width = get_data_layout_dimension_index(_data_layout, DataLayoutDimension::WIDTH);
209 const int idx_height = get_data_layout_dimension_index(_data_layout, DataLayoutDimension::HEIGHT);
210 const bool is_nhwc = _data_layout == DataLayout::NHWC;
Michalis Spyrou46da23f2018-04-10 13:41:30 +0100211
Daniil Efremov7a49c792017-11-14 21:25:34 +0700212 // Compute actual border size
Michalis Spyrou46da23f2018-04-10 13:41:30 +0100213 BorderSize border = border_size();
Daniil Efremov7a49c792017-11-14 21:25:34 +0700214
215 // Area interpolation behaves as Nearest Neighbour in case of up-sampling
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100216 if(policy == InterpolationPolicy::AREA && wr <= 1.f && hr <= 1.f)
217 {
218 policy = InterpolationPolicy::NEAREST_NEIGHBOR;
219 }
Michalis Spyrou46da23f2018-04-10 13:41:30 +0100220
221 // Configure kernel window
222 auto win_config = validate_and_configure_window(input->info(), output->info(), policy, border_mode, sampling_policy, border);
223 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100224 ICLKernel::configure_internal(win_config.second);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100225
226 // Create kernel
Daniil Efremov7a49c792017-11-14 21:25:34 +0700227 CLBuildOptions build_opts;
228 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(input->info()->data_type()));
229 build_opts.add_option("-DBORDER_SIZE=" + support::cpp11::to_string(border.right));
Michalis Spyrou46da23f2018-04-10 13:41:30 +0100230 build_opts.add_option_if(border_mode == BorderMode::REPLICATE, "-DBORDER_MODE_REPLICATE");
Michalis Spyrou1f8db2b2018-12-10 16:19:20 +0000231 build_opts.add_option_if(is_nhwc, "-DDEPTH_OUT=" + support::cpp11::to_string(output->info()->dimension(2)));
Daniil Efremov02bf80d2017-11-22 00:26:51 +0700232 build_opts.add_option_if_else(sampling_policy == SamplingPolicy::CENTER, "-DSAMPLING_POLICY_CENTER", "-DSAMPLING_POLICY_TOP_LEFT");
Michalis Spyrou17220e22018-09-12 13:35:38 +0100233 if(call_quantized_kernel)
234 {
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100235 const UniformQuantizationInfo qinfo = input->info()->quantization_info().uniform();
236 build_opts.add_option("-DSCALE=" + support::cpp11::to_string(qinfo.scale));
237 build_opts.add_option("-DOFFSET=" + support::cpp11::to_string(qinfo.offset));
Michalis Spyrou17220e22018-09-12 13:35:38 +0100238 }
Daniil Efremov7a49c792017-11-14 21:25:34 +0700239
240 std::string interpolation_name = string_from_interpolation_policy(policy);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100241 std::transform(interpolation_name.begin(), interpolation_name.end(), interpolation_name.begin(), ::tolower);
Michalis Spyrou17220e22018-09-12 13:35:38 +0100242 std::string kernel_name = "scale_" + interpolation_name;
243 kernel_name += call_quantized_kernel ? "_quantized_" : "_";
Georgios Pinitas14d9d982019-12-13 12:33:09 +0000244 kernel_name += lower_string(string_from_data_layout(_data_layout));
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100245 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100246
Michalis Spyrou1f8db2b2018-12-10 16:19:20 +0000247 unsigned int idx = is_nhwc ? 2 * num_arguments_per_4D_tensor() : 2 * num_arguments_per_2D_tensor(); //Skip the input and output parameters
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100248
Sang-Hoon Park5b7fd872020-01-09 15:27:51 +0000249 const unsigned int input_width = input->info()->dimension(idx_width);
250 const unsigned int input_height = input->info()->dimension(idx_height);
steniu01f81652d2017-09-11 15:29:12 +0100251
Michalis Spyrou46da23f2018-04-10 13:41:30 +0100252 _kernel.setArg<float>(idx++, input_width);
253 _kernel.setArg<float>(idx++, input_height);
Sang-Hoon Park5b7fd872020-01-09 15:27:51 +0000254 _kernel.setArg<float>(idx++, wr);
255 _kernel.setArg<float>(idx++, hr);
Vidhya Sudhan Loganathan7a63e792019-01-14 16:29:20 +0000256
257 // Set config_id for enabling LWS tuning
258 _config_id = "scale_";
Michele Di Giorgio17a01a32019-01-03 15:12:27 +0000259 _config_id += (border_mode == BorderMode::REPLICATE ? "Bord_rep" : "");
Vidhya Sudhan Loganathan7a63e792019-01-14 16:29:20 +0000260 _config_id += (sampling_policy == SamplingPolicy::CENTER ? "center" : "topleft");
Michele Di Giorgio17a01a32019-01-03 15:12:27 +0000261 _config_id += (is_nhwc ? "nhwc" : "nchw");
Vidhya Sudhan Loganathan7a63e792019-01-14 16:29:20 +0000262 _config_id += "_";
263 _config_id += support::cpp11::to_string(output->info()->dimension(0));
264 _config_id += "_";
265 _config_id += support::cpp11::to_string(output->info()->dimension(1));
266 _config_id += "_";
267 _config_id += support::cpp11::to_string(output->info()->dimension(2));
268 _config_id += "_";
269 _config_id += support::cpp11::to_string(output->info()->dimension(3));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100270}
Michalis Spyrou46da23f2018-04-10 13:41:30 +0100271
272void CLScaleKernel::run(const Window &window, cl::CommandQueue &queue)
273{
274 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
275 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
276
Georgios Pinitas14d9d982019-12-13 12:33:09 +0000277 switch(_data_layout)
Michalis Spyrou46da23f2018-04-10 13:41:30 +0100278 {
279 case DataLayout::NCHW:
280 {
281 Window slice = window.first_slice_window_2D();
282
283 do
284 {
285 unsigned int idx = 0;
286 add_2D_tensor_argument(idx, _input, slice);
287 add_2D_tensor_argument(idx, _output, slice);
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100288 enqueue(queue, *this, slice, lws_hint());
Michalis Spyrou46da23f2018-04-10 13:41:30 +0100289 }
290 while(window.slide_window_slice_2D(slice));
291 break;
292 }
293 case DataLayout::NHWC:
294 {
Michalis Spyrou1f8db2b2018-12-10 16:19:20 +0000295 Window collapsed = window.collapse(ICLKernel::window(), Window::DimZ);
296 Window slice = collapsed.first_slice_window_4D();
Michalis Spyrou46da23f2018-04-10 13:41:30 +0100297
Michalis Spyrou1f8db2b2018-12-10 16:19:20 +0000298 unsigned int idx = 0;
299 add_4D_tensor_argument(idx, _input, slice);
300 add_4D_tensor_argument(idx, _output, slice);
301 enqueue(queue, *this, slice, lws_hint());
Michalis Spyrou46da23f2018-04-10 13:41:30 +0100302 break;
303 }
304 default:
305 ARM_COMPUTE_ERROR("Data layout not supported");
306 }
307}