blob: f6933c6cfd241dbfa2e08756b0043cbb484f268a [file] [log] [blame]
SiCong Li3e363692017-07-04 15:02:10 +01001/*
Matthew Bentham314d3e22023-06-23 10:53:52 +00002 * Copyright (c) 2017-2021, 2023 Arm Limited.
SiCong Li3e363692017-07-04 15:02:10 +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 */
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010024#include "src/core/CL/kernels/CLROIPoolingLayerKernel.h"
SiCong Li3e363692017-07-04 15:02:10 +010025
SiCong Li3e363692017-07-04 15:02:10 +010026#include "arm_compute/core/CL/CLHelpers.h"
27#include "arm_compute/core/CL/CLKernelLibrary.h"
SiCong Li3e363692017-07-04 15:02:10 +010028#include "arm_compute/core/CL/ICLTensor.h"
29#include "arm_compute/core/CL/OpenCL.h"
30#include "arm_compute/core/Helpers.h"
31#include "arm_compute/core/TensorInfo.h"
32#include "arm_compute/core/Utils.h"
Matthew Bentham314d3e22023-06-23 10:53:52 +000033#include "arm_compute/core/utils/StringUtils.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010034#include "src/core/CL/CLValidate.h"
35#include "src/core/helpers/AutoConfiguration.h"
36#include "src/core/helpers/WindowHelpers.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000037#include "support/StringSupport.h"
SiCong Li3e363692017-07-04 15:02:10 +010038
Gian Marco Iodice3eb5d292021-04-23 10:30:43 +010039#include <cfloat>
SiCong Li3e363692017-07-04 15:02:10 +010040#include <cmath>
SiCong Li3e363692017-07-04 15:02:10 +010041#include <string>
42
Manuel Bottinicc5171b2019-01-09 17:04:39 +000043namespace arm_compute
44{
SiCong Li3e363692017-07-04 15:02:10 +010045CLROIPoolingLayerKernel::CLROIPoolingLayerKernel()
46 : _input(nullptr), _rois(nullptr), _output(nullptr), _pool_info(0, 0, 0.f)
47{
Giorgio Arena4a95bba2021-06-28 11:00:27 +010048 _type = CLKernelType::ELEMENTWISE;
SiCong Li3e363692017-07-04 15:02:10 +010049}
50
Suhail Munshi4ed7b392021-03-22 13:13:55 +000051Status CLROIPoolingLayerKernel::validate(const ITensorInfo *input, const ITensorInfo *rois, const ITensorInfo *output, const ROIPoolingLayerInfo &pool_info)
52{
53 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, rois, output);
54
55 //Validate arguments
56 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, rois, output);
57 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(rois, 1, DataType::U16);
58 ARM_COMPUTE_RETURN_ERROR_ON(rois->dimension(0) != 5);
59 ARM_COMPUTE_RETURN_ERROR_ON(rois->num_dimensions() > 2);
60 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input);
61 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::F32, DataType::F16, DataType::QASYMM8);
62 ARM_COMPUTE_RETURN_ERROR_ON((pool_info.pooled_width() == 0) || (pool_info.pooled_height() == 0));
63
64 if(output->total_size() != 0)
65 {
66 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
67 ARM_COMPUTE_RETURN_ERROR_ON((output->dimension(0) != pool_info.pooled_width()) || (output->dimension(1) != pool_info.pooled_height()));
68 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(2) != output->dimension(2));
69 ARM_COMPUTE_RETURN_ERROR_ON(rois->dimension(1) != output->dimension(3));
70 }
71
72 return Status{};
73}
74
Manuel Bottinicc5171b2019-01-09 17:04:39 +000075void CLROIPoolingLayerKernel::configure(const ICLTensor *input, const ICLTensor *rois, ICLTensor *output, const ROIPoolingLayerInfo &pool_info)
SiCong Li3e363692017-07-04 15:02:10 +010076{
Manuel Bottini4c6bd512020-04-08 10:15:51 +010077 configure(CLKernelLibrary::get().get_compile_context(), input, rois, output, pool_info);
78}
79
Suhail Munshi4ed7b392021-03-22 13:13:55 +000080void CLROIPoolingLayerKernel::configure(const CLCompileContext &compile_context, const ICLTensor *input, const ICLTensor *rois, const ICLTensor *output, const ROIPoolingLayerInfo &pool_info)
Manuel Bottini4c6bd512020-04-08 10:15:51 +010081{
Suhail Munshi4ed7b392021-03-22 13:13:55 +000082 ARM_COMPUTE_ERROR_THROW_ON(CLROIPoolingLayerKernel::validate(input->info(), rois->info(), output->info(), pool_info));
SiCong Li3e363692017-07-04 15:02:10 +010083
Gian Marco Iodice3eb5d292021-04-23 10:30:43 +010084 auto padding_info = get_padding_info({ input, rois, output });
85
86 // Output auto initialization if not yet initialized
87 TensorShape output_shape(pool_info.pooled_width(), pool_info.pooled_height(), input->info()->dimension(2), rois->info()->dimension(1));
88 auto_init_if_empty(*(output->info()), output_shape, 1, input->info()->data_type(), output->info()->quantization_info());
SiCong Li3e363692017-07-04 15:02:10 +010089
90 // Set instance variables
91 _input = input;
92 _rois = rois;
93 _output = output;
94 _pool_info = pool_info;
95
Suhail Munshi4ed7b392021-03-22 13:13:55 +000096 const DataType data_type = input->info()->data_type();
97 const bool is_qasymm = is_data_type_quantized_asymmetric(data_type);
98
SiCong Li3e363692017-07-04 15:02:10 +010099 // Set build options
Suhail Munshi4ed7b392021-03-22 13:13:55 +0000100 CLBuildOptions build_opts;
101 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(data_type));
102 build_opts.add_option("-DDATA_SIZE=" + get_data_size_from_data_type(data_type));
103 build_opts.add_option("-DMAX_DIM_X=" + support::cpp11::to_string(_input->info()->dimension(Window::DimX)));
104 build_opts.add_option("-DMAX_DIM_Y=" + support::cpp11::to_string(_input->info()->dimension(Window::DimY)));
105 build_opts.add_option("-DMAX_DIM_Z=" + support::cpp11::to_string(_input->info()->dimension(Window::DimZ)));
106 build_opts.add_option("-DPOOLED_DIM_X=" + support::cpp11::to_string(pool_info.pooled_width()));
107 build_opts.add_option("-DPOOLED_DIM_Y=" + support::cpp11::to_string(pool_info.pooled_height()));
108 build_opts.add_option("-DSPATIAL_SCALE=" + support::cpp11::to_string(pool_info.spatial_scale()));
109
110 if(is_qasymm)
111 {
112 // Determine quantization info scale, offset
113 UniformQuantizationInfo uqinfo = UniformQuantizationInfo();
114 uqinfo = compute_requantization_scale_offset(_input->info()->quantization_info().uniform(), _output->info()->quantization_info().uniform());
115 build_opts.add_option("-DOFFSET_OUT=" + float_to_string_with_full_precision(uqinfo.offset));
116 build_opts.add_option("-DSCALE_OUT=" + float_to_string_with_full_precision(uqinfo.scale));
117
118 // Specify minimum possible value of datatype
119 build_opts.add_option("-DMIN_VALUE=" + support::cpp11::to_string(0));
120 }
Gian Marco Iodice3eb5d292021-04-23 10:30:43 +0100121 else
122 {
Suhail Munshi4ed7b392021-03-22 13:13:55 +0000123 // Specify min value of F32 datatype
124 build_opts.add_option("-DMIN_VALUE=" + support::cpp11::to_string(-FLT_MAX));
125 }
SiCong Li3e363692017-07-04 15:02:10 +0100126
Gian Marco Iodice3eb5d292021-04-23 10:30:43 +0100127 Window win = calculate_max_window(*(output->info()), Steps());
128 ICLKernel::configure_internal(win);
129
SiCong Li3e363692017-07-04 15:02:10 +0100130 // Create kernel
131 std::string kernel_name = "roi_pooling_layer";
Suhail Munshi4ed7b392021-03-22 13:13:55 +0000132 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
SiCong Li3e363692017-07-04 15:02:10 +0100133
Gian Marco Iodice3eb5d292021-04-23 10:30:43 +0100134 ARM_COMPUTE_ERROR_ON(has_padding_changed(padding_info));
SiCong Li3e363692017-07-04 15:02:10 +0100135}
136
137void CLROIPoolingLayerKernel::run(const Window &window, cl::CommandQueue &queue)
138{
139 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
140 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IKernel::window(), window);
141
Manuel Bottinicc5171b2019-01-09 17:04:39 +0000142 Window slice = window.first_slice_window_3D();
143 Window slice_rois = slice;
144 // Parallelize spatially and across the fourth dimension of the output tensor (also across ROITensor)
145 slice_rois.set_dimension_step(Window::DimX, _rois->info()->dimension(0));
SiCong Li3e363692017-07-04 15:02:10 +0100146 slice.set(Window::DimZ, window[3]);
147
148 // Set arguments
149 unsigned int idx = 0;
150 add_3D_tensor_argument(idx, _input, slice);
Manuel Bottinicc5171b2019-01-09 17:04:39 +0000151 add_2D_tensor_argument(idx, _rois, slice_rois);
SiCong Li3e363692017-07-04 15:02:10 +0100152 add_3D_tensor_argument(idx, _output, slice);
Manuel Bottinicc5171b2019-01-09 17:04:39 +0000153 add_argument<cl_uint>(idx, _input->info()->strides_in_bytes()[3]);
154 add_argument<cl_uint>(idx, _output->info()->strides_in_bytes()[3]);
155
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100156 enqueue(queue, *this, slice, lws_hint());
SiCong Li3e363692017-07-04 15:02:10 +0100157}
Michele Di Giorgio4646d2e2019-06-19 12:28:47 +0100158} // namespace arm_compute