blob: ca6c6fad1a4cb08d03b2570c514acb9eeec0ac1e [file] [log] [blame]
giuros0118870812018-09-13 09:31:40 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2018-2020 Arm Limited.
giuros0118870812018-09-13 09:31:40 +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/CLROIAlignLayerKernel.h"
25
giuros0118870812018-09-13 09:31:40 +010026#include "arm_compute/core/CL/CLHelpers.h"
27#include "arm_compute/core/CL/CLKernelLibrary.h"
giuros0118870812018-09-13 09:31:40 +010028#include "arm_compute/core/CL/ICLArray.h"
29#include "arm_compute/core/CL/ICLTensor.h"
30#include "arm_compute/core/CL/OpenCL.h"
31#include "arm_compute/core/Helpers.h"
32#include "arm_compute/core/TensorInfo.h"
33#include "arm_compute/core/Utils.h"
George Wort44b4e972019-01-08 11:41:54 +000034#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010035#include "src/core/AccessWindowStatic.h"
36#include "src/core/CL/CLValidate.h"
37#include "src/core/helpers/AutoConfiguration.h"
38#include "src/core/helpers/WindowHelpers.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000039#include "support/StringSupport.h"
George Wort44b4e972019-01-08 11:41:54 +000040
41using namespace arm_compute::misc::shape_calculator;
giuros0118870812018-09-13 09:31:40 +010042
43namespace arm_compute
44{
45namespace
46{
Manuel Bottini60f0a412018-10-24 17:27:02 +010047Status validate_arguments(const ITensorInfo *input, const ITensorInfo *rois, ITensorInfo *output, const ROIPoolingLayerInfo &pool_info)
giuros0118870812018-09-13 09:31:40 +010048{
Manuel Bottini60f0a412018-10-24 17:27:02 +010049 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, rois, output);
Manuel Bottini60f0a412018-10-24 17:27:02 +010050 ARM_COMPUTE_RETURN_ERROR_ON(rois->dimension(0) != 5);
51 ARM_COMPUTE_RETURN_ERROR_ON(rois->num_dimensions() > 2);
giuros0118870812018-09-13 09:31:40 +010052 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input);
Manuel Bottini8481d832019-12-10 15:28:40 +000053 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::QASYMM8, DataType::QASYMM8_SIGNED, DataType::F32, DataType::F16);
George Wort44b4e972019-01-08 11:41:54 +000054 ARM_COMPUTE_RETURN_ERROR_ON_DATA_LAYOUT_NOT_IN(input, DataLayout::NHWC, DataLayout::NCHW);
giuros0118870812018-09-13 09:31:40 +010055 ARM_COMPUTE_RETURN_ERROR_ON((pool_info.pooled_width() == 0) || (pool_info.pooled_height() == 0));
giuros0118870812018-09-13 09:31:40 +010056
57 if(output->total_size() != 0)
58 {
59 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
Michele Di Giorgioc8df89f2018-11-16 10:02:26 +000060 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_LAYOUT(input, output);
George Wort44b4e972019-01-08 11:41:54 +000061 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DIMENSIONS(compute_roi_align_shape(*input, *rois, pool_info), output->tensor_shape());
giuros0118870812018-09-13 09:31:40 +010062 }
Michele Di Giorgio578a9fc2019-08-23 11:49:04 +010063
Manuel Bottini8481d832019-12-10 15:28:40 +000064 if(is_data_type_quantized_asymmetric(input->data_type()))
Michele Di Giorgio578a9fc2019-08-23 11:49:04 +010065 {
66 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(rois, 1, DataType::QASYMM16);
67
68 const UniformQuantizationInfo rois_qinfo = rois->quantization_info().uniform();
69 ARM_COMPUTE_RETURN_ERROR_ON(rois_qinfo.scale != 0.125f);
70 ARM_COMPUTE_RETURN_ERROR_ON(rois_qinfo.offset != 0);
71 }
72 else
73 {
74 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, rois);
75 }
giuros0118870812018-09-13 09:31:40 +010076 return Status{};
77}
Manuel Bottini60f0a412018-10-24 17:27:02 +010078
79std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input, ITensorInfo *rois, ITensorInfo *output, const ROIPoolingLayerInfo &pool_info)
80{
81 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
82
83 // Output auto inizialitation if not yet initialized
George Wort44b4e972019-01-08 11:41:54 +000084 const TensorShape output_shape = compute_roi_align_shape(*input, *rois, pool_info);
Manuel Bottini60f0a412018-10-24 17:27:02 +010085 auto_init_if_empty((*output), output_shape, 1, input->data_type());
George Wort44b4e972019-01-08 11:41:54 +000086 output->set_data_layout(input->data_layout());
Manuel Bottini60f0a412018-10-24 17:27:02 +010087
88 // Configure kernel window
Michele Di Giorgio4646d2e2019-06-19 12:28:47 +010089 constexpr unsigned int num_elems_processed_per_iteration = 1;
90 Window win = calculate_max_window(*output, Steps(num_elems_processed_per_iteration));
Manuel Bottini60f0a412018-10-24 17:27:02 +010091
92 AccessWindowHorizontal output_access(output, 0, num_elems_processed_per_iteration);
93 AccessWindowHorizontal input_access(input, input->valid_region().start(0), num_elems_processed_per_iteration);
94
95 bool window_changed = update_window_and_padding(win, input_access, output_access);
96 output_access.set_valid_region(win, ValidRegion(Coordinates(), output->tensor_shape()));
97 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
98 return std::make_pair(err, win);
99}
giuros0118870812018-09-13 09:31:40 +0100100} // namespace
101
102CLROIAlignLayerKernel::CLROIAlignLayerKernel()
103 : _input(nullptr), _output(nullptr), _rois(nullptr), _pool_info(0, 0, 0.f)
104{
105}
106
Manuel Bottini60f0a412018-10-24 17:27:02 +0100107void CLROIAlignLayerKernel::configure(const ICLTensor *input, const ICLTensor *rois, ICLTensor *output, const ROIPoolingLayerInfo &pool_info)
giuros0118870812018-09-13 09:31:40 +0100108{
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100109 configure(CLKernelLibrary::get().get_compile_context(), input, rois, output, pool_info);
110}
111
Manuel Bottini679fc962020-04-21 16:08:53 +0100112void CLROIAlignLayerKernel::configure(const CLCompileContext &compile_context, const ICLTensor *input, const ICLTensor *rois, ICLTensor *output, const ROIPoolingLayerInfo &pool_info)
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100113{
giuros0118870812018-09-13 09:31:40 +0100114 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output, rois);
Manuel Bottini60f0a412018-10-24 17:27:02 +0100115 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), rois->info(), output->info(), pool_info));
giuros0118870812018-09-13 09:31:40 +0100116
Manuel Bottini60f0a412018-10-24 17:27:02 +0100117 // Configure kernel window
118 auto win_config = validate_and_configure_window(input->info(), rois->info(), output->info(), pool_info);
119 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
giuros0118870812018-09-13 09:31:40 +0100120
121 _input = input;
122 _output = output;
123 _rois = rois;
124 _pool_info = pool_info;
125
Michele Di Giorgio578a9fc2019-08-23 11:49:04 +0100126 const DataType data_type = input->info()->data_type();
127 const bool is_qasymm = is_data_type_quantized_asymmetric(data_type);
128
giuros0118870812018-09-13 09:31:40 +0100129 // Set build options
Manuel Bottini60f0a412018-10-24 17:27:02 +0100130 CLBuildOptions build_opts;
Michele Di Giorgio578a9fc2019-08-23 11:49:04 +0100131 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(data_type));
Manuel Bottini60f0a412018-10-24 17:27:02 +0100132 build_opts.add_option("-DDATA_SIZE=" + get_data_size_from_data_type(input->info()->data_type()));
George Wort44b4e972019-01-08 11:41:54 +0000133 build_opts.add_option("-DMAX_DIM_X=" + support::cpp11::to_string(_input->info()->dimension(get_data_layout_dimension_index(input->info()->data_layout(), DataLayoutDimension::WIDTH))));
134 build_opts.add_option("-DMAX_DIM_Y=" + support::cpp11::to_string(_input->info()->dimension(get_data_layout_dimension_index(input->info()->data_layout(), DataLayoutDimension::HEIGHT))));
135 build_opts.add_option("-DMAX_DIM_Z=" + support::cpp11::to_string(_input->info()->dimension(get_data_layout_dimension_index(input->info()->data_layout(), DataLayoutDimension::CHANNEL))));
Manuel Bottini60f0a412018-10-24 17:27:02 +0100136 build_opts.add_option("-DPOOLED_DIM_X=" + support::cpp11::to_string(pool_info.pooled_width()));
137 build_opts.add_option("-DPOOLED_DIM_Y=" + support::cpp11::to_string(pool_info.pooled_height()));
138 build_opts.add_option("-DSPATIAL_SCALE=" + float_to_string_with_full_precision(pool_info.spatial_scale()));
George Wort44b4e972019-01-08 11:41:54 +0000139 build_opts.add_option_if(input->info()->data_layout() == DataLayout::NHWC, "-DNHWC");
Manuel Bottini60f0a412018-10-24 17:27:02 +0100140 build_opts.add_option_if(pool_info.sampling_ratio() > 0, "-DSAMPLING_RATIO=" + support::cpp11::to_string(pool_info.sampling_ratio()));
giuros0118870812018-09-13 09:31:40 +0100141
Michele Di Giorgio578a9fc2019-08-23 11:49:04 +0100142 if(is_qasymm)
143 {
144 const UniformQuantizationInfo iq_info = input->info()->quantization_info().uniform();
145 const UniformQuantizationInfo roisq_info = rois->info()->quantization_info().uniform();
146 const UniformQuantizationInfo oq_info = output->info()->quantization_info().uniform();
147
148 build_opts.add_option("-DOFFSET_IN=" + float_to_string_with_full_precision(iq_info.offset));
149 build_opts.add_option("-DSCALE_IN=" + float_to_string_with_full_precision(iq_info.scale));
150 build_opts.add_option("-DOFFSET_ROIS=" + float_to_string_with_full_precision(roisq_info.offset));
151 build_opts.add_option("-DSCALE_ROIS=" + float_to_string_with_full_precision(roisq_info.scale));
152 build_opts.add_option("-DOFFSET_OUT=" + float_to_string_with_full_precision(oq_info.offset));
153 build_opts.add_option("-DSCALE_OUT=" + float_to_string_with_full_precision(oq_info.scale));
154 }
155
giuros0118870812018-09-13 09:31:40 +0100156 // Create kernel
Michele Di Giorgio578a9fc2019-08-23 11:49:04 +0100157 const std::string kernel_name = (is_qasymm) ? "roi_align_layer_quantized" : "roi_align_layer";
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100158 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
giuros0118870812018-09-13 09:31:40 +0100159
Manuel Bottini60f0a412018-10-24 17:27:02 +0100160 ICLKernel::configure_internal(win_config.second);
giuros0118870812018-09-13 09:31:40 +0100161}
162
Manuel Bottini60f0a412018-10-24 17:27:02 +0100163Status CLROIAlignLayerKernel::validate(const ITensorInfo *input, const ITensorInfo *rois, ITensorInfo *output, const ROIPoolingLayerInfo &pool_info)
giuros0118870812018-09-13 09:31:40 +0100164{
Manuel Bottini60f0a412018-10-24 17:27:02 +0100165 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, rois, output, pool_info));
giuros0118870812018-09-13 09:31:40 +0100166 return Status{};
167}
168
169void CLROIAlignLayerKernel::run(const Window &window, cl::CommandQueue &queue)
170{
171 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
172 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IKernel::window(), window);
173
Manuel Bottini60f0a412018-10-24 17:27:02 +0100174 Window slice = window.first_slice_window_3D();
175 Window slice_rois = slice;
176 // Parallelize spatially and across the fourth dimension of the output tensor (also across ROITensor)
177 slice_rois.set_dimension_step(Window::DimX, _rois->info()->dimension(0));
George Wort44b4e972019-01-08 11:41:54 +0000178 slice.set(get_data_layout_dimension_index(_input->info()->data_layout(), DataLayoutDimension::CHANNEL), window[3]);
giuros0118870812018-09-13 09:31:40 +0100179
180 // Set arguments
181 unsigned int idx = 0;
182 add_3D_tensor_argument(idx, _input, slice);
Manuel Bottini60f0a412018-10-24 17:27:02 +0100183 add_2D_tensor_argument(idx, _rois, slice_rois);
giuros0118870812018-09-13 09:31:40 +0100184 add_3D_tensor_argument(idx, _output, slice);
Manuel Bottini60f0a412018-10-24 17:27:02 +0100185 add_argument<cl_uint>(idx, _input->info()->strides_in_bytes()[3]);
186 add_argument<cl_uint>(idx, _output->info()->strides_in_bytes()[3]);
187
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100188 enqueue(queue, *this, slice, lws_hint());
giuros0118870812018-09-13 09:31:40 +0100189}
giuros0118870812018-09-13 09:31:40 +0100190} // namespace arm_compute