blob: 7a843d65a2c6674a7b23e45fc3b43de3a3982983 [file] [log] [blame]
SiCong Li3e363692017-07-04 15:02:10 +01001/*
Michalis Spyrou702dc0c2021-03-19 15:06:07 +00002 * Copyright (c) 2017-2021 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"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010033#include "src/core/CL/CLValidate.h"
34#include "src/core/helpers/AutoConfiguration.h"
35#include "src/core/helpers/WindowHelpers.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000036#include "support/StringSupport.h"
SiCong Li3e363692017-07-04 15:02:10 +010037
Gian Marco Iodice3eb5d292021-04-23 10:30:43 +010038#include <cfloat>
SiCong Li3e363692017-07-04 15:02:10 +010039#include <cmath>
SiCong Li3e363692017-07-04 15:02:10 +010040#include <string>
41
Manuel Bottinicc5171b2019-01-09 17:04:39 +000042namespace arm_compute
43{
SiCong Li3e363692017-07-04 15:02:10 +010044CLROIPoolingLayerKernel::CLROIPoolingLayerKernel()
45 : _input(nullptr), _rois(nullptr), _output(nullptr), _pool_info(0, 0, 0.f)
46{
47}
48
Suhail Munshi4ed7b392021-03-22 13:13:55 +000049Status CLROIPoolingLayerKernel::validate(const ITensorInfo *input, const ITensorInfo *rois, const ITensorInfo *output, const ROIPoolingLayerInfo &pool_info)
50{
51 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, rois, output);
52
53 //Validate arguments
54 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, rois, output);
55 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(rois, 1, DataType::U16);
56 ARM_COMPUTE_RETURN_ERROR_ON(rois->dimension(0) != 5);
57 ARM_COMPUTE_RETURN_ERROR_ON(rois->num_dimensions() > 2);
58 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input);
59 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::F32, DataType::F16, DataType::QASYMM8);
60 ARM_COMPUTE_RETURN_ERROR_ON((pool_info.pooled_width() == 0) || (pool_info.pooled_height() == 0));
61
62 if(output->total_size() != 0)
63 {
64 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
65 ARM_COMPUTE_RETURN_ERROR_ON((output->dimension(0) != pool_info.pooled_width()) || (output->dimension(1) != pool_info.pooled_height()));
66 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(2) != output->dimension(2));
67 ARM_COMPUTE_RETURN_ERROR_ON(rois->dimension(1) != output->dimension(3));
68 }
69
70 return Status{};
71}
72
Manuel Bottinicc5171b2019-01-09 17:04:39 +000073void CLROIPoolingLayerKernel::configure(const ICLTensor *input, const ICLTensor *rois, ICLTensor *output, const ROIPoolingLayerInfo &pool_info)
SiCong Li3e363692017-07-04 15:02:10 +010074{
Manuel Bottini4c6bd512020-04-08 10:15:51 +010075 configure(CLKernelLibrary::get().get_compile_context(), input, rois, output, pool_info);
76}
77
Suhail Munshi4ed7b392021-03-22 13:13:55 +000078void 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 +010079{
Suhail Munshi4ed7b392021-03-22 13:13:55 +000080 ARM_COMPUTE_ERROR_THROW_ON(CLROIPoolingLayerKernel::validate(input->info(), rois->info(), output->info(), pool_info));
SiCong Li3e363692017-07-04 15:02:10 +010081
Gian Marco Iodice3eb5d292021-04-23 10:30:43 +010082 auto padding_info = get_padding_info({ input, rois, output });
83
84 // Output auto initialization if not yet initialized
85 TensorShape output_shape(pool_info.pooled_width(), pool_info.pooled_height(), input->info()->dimension(2), rois->info()->dimension(1));
86 auto_init_if_empty(*(output->info()), output_shape, 1, input->info()->data_type(), output->info()->quantization_info());
SiCong Li3e363692017-07-04 15:02:10 +010087
88 // Set instance variables
89 _input = input;
90 _rois = rois;
91 _output = output;
92 _pool_info = pool_info;
93
Suhail Munshi4ed7b392021-03-22 13:13:55 +000094 const DataType data_type = input->info()->data_type();
95 const bool is_qasymm = is_data_type_quantized_asymmetric(data_type);
96
SiCong Li3e363692017-07-04 15:02:10 +010097 // Set build options
Suhail Munshi4ed7b392021-03-22 13:13:55 +000098 CLBuildOptions build_opts;
99 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(data_type));
100 build_opts.add_option("-DDATA_SIZE=" + get_data_size_from_data_type(data_type));
101 build_opts.add_option("-DMAX_DIM_X=" + support::cpp11::to_string(_input->info()->dimension(Window::DimX)));
102 build_opts.add_option("-DMAX_DIM_Y=" + support::cpp11::to_string(_input->info()->dimension(Window::DimY)));
103 build_opts.add_option("-DMAX_DIM_Z=" + support::cpp11::to_string(_input->info()->dimension(Window::DimZ)));
104 build_opts.add_option("-DPOOLED_DIM_X=" + support::cpp11::to_string(pool_info.pooled_width()));
105 build_opts.add_option("-DPOOLED_DIM_Y=" + support::cpp11::to_string(pool_info.pooled_height()));
106 build_opts.add_option("-DSPATIAL_SCALE=" + support::cpp11::to_string(pool_info.spatial_scale()));
107
108 if(is_qasymm)
109 {
110 // Determine quantization info scale, offset
111 UniformQuantizationInfo uqinfo = UniformQuantizationInfo();
112 uqinfo = compute_requantization_scale_offset(_input->info()->quantization_info().uniform(), _output->info()->quantization_info().uniform());
113 build_opts.add_option("-DOFFSET_OUT=" + float_to_string_with_full_precision(uqinfo.offset));
114 build_opts.add_option("-DSCALE_OUT=" + float_to_string_with_full_precision(uqinfo.scale));
115
116 // Specify minimum possible value of datatype
117 build_opts.add_option("-DMIN_VALUE=" + support::cpp11::to_string(0));
118 }
Gian Marco Iodice3eb5d292021-04-23 10:30:43 +0100119 else
120 {
Suhail Munshi4ed7b392021-03-22 13:13:55 +0000121 // Specify min value of F32 datatype
122 build_opts.add_option("-DMIN_VALUE=" + support::cpp11::to_string(-FLT_MAX));
123 }
SiCong Li3e363692017-07-04 15:02:10 +0100124
Gian Marco Iodice3eb5d292021-04-23 10:30:43 +0100125 Window win = calculate_max_window(*(output->info()), Steps());
126 ICLKernel::configure_internal(win);
127
SiCong Li3e363692017-07-04 15:02:10 +0100128 // Create kernel
129 std::string kernel_name = "roi_pooling_layer";
Suhail Munshi4ed7b392021-03-22 13:13:55 +0000130 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
SiCong Li3e363692017-07-04 15:02:10 +0100131
Gian Marco Iodice3eb5d292021-04-23 10:30:43 +0100132 ARM_COMPUTE_ERROR_ON(has_padding_changed(padding_info));
SiCong Li3e363692017-07-04 15:02:10 +0100133}
134
135void CLROIPoolingLayerKernel::run(const Window &window, cl::CommandQueue &queue)
136{
137 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
138 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IKernel::window(), window);
139
Manuel Bottinicc5171b2019-01-09 17:04:39 +0000140 Window slice = window.first_slice_window_3D();
141 Window slice_rois = slice;
142 // Parallelize spatially and across the fourth dimension of the output tensor (also across ROITensor)
143 slice_rois.set_dimension_step(Window::DimX, _rois->info()->dimension(0));
SiCong Li3e363692017-07-04 15:02:10 +0100144 slice.set(Window::DimZ, window[3]);
145
146 // Set arguments
147 unsigned int idx = 0;
148 add_3D_tensor_argument(idx, _input, slice);
Manuel Bottinicc5171b2019-01-09 17:04:39 +0000149 add_2D_tensor_argument(idx, _rois, slice_rois);
SiCong Li3e363692017-07-04 15:02:10 +0100150 add_3D_tensor_argument(idx, _output, slice);
Manuel Bottinicc5171b2019-01-09 17:04:39 +0000151 add_argument<cl_uint>(idx, _input->info()->strides_in_bytes()[3]);
152 add_argument<cl_uint>(idx, _output->info()->strides_in_bytes()[3]);
153
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100154 enqueue(queue, *this, slice, lws_hint());
SiCong Li3e363692017-07-04 15:02:10 +0100155}
Michele Di Giorgio4646d2e2019-06-19 12:28:47 +0100156} // namespace arm_compute