blob: 7dcdf1de6f11d5b0b13c5e56b46e130ea7a463d5 [file] [log] [blame]
Michalis Spyrou6c7c38e2018-08-29 16:28:11 +01001/*
Giorgio Arena4a95bba2021-06-28 11:00:27 +01002 * Copyright (c) 2018-2021 Arm Limited.
Michalis Spyrou6c7c38e2018-08-29 16:28:11 +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/CLPriorBoxLayerKernel.h"
Michalis Spyrou6c7c38e2018-08-29 16:28:11 +010025
26#include "arm_compute/core/CL/CLHelpers.h"
27#include "arm_compute/core/CL/CLKernelLibrary.h"
Michalis Spyrou6c7c38e2018-08-29 16:28:11 +010028#include "arm_compute/core/CL/ICLTensor.h"
29#include "arm_compute/core/Helpers.h"
30#include "arm_compute/core/TensorInfo.h"
31#include "arm_compute/core/Utils.h"
Michalis Spyrou6c7c38e2018-08-29 16:28:11 +010032#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010033
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"
Michalis Spyrou6c7c38e2018-08-29 16:28:11 +010038
39using namespace arm_compute::misc::shape_calculator;
40
41namespace arm_compute
42{
43namespace
44{
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010045Status validate_arguments(const ITensorInfo *input1,
46 const ITensorInfo *input2,
47 const ITensorInfo *output,
48 const PriorBoxLayerInfo &info)
Michalis Spyrou6c7c38e2018-08-29 16:28:11 +010049{
50 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input1, input2, output);
51 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input1, 1, DataType::F32);
52 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_LAYOUT(input1, input2);
53 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input1, input2);
54
55 // Check variances
56 const int var_size = info.variances().size();
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010057 if (var_size > 1)
Michalis Spyrou6c7c38e2018-08-29 16:28:11 +010058 {
59 ARM_COMPUTE_RETURN_ERROR_ON_MSG(var_size != 4, "Must provide 4 variance values");
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010060 for (int i = 0; i < var_size; ++i)
Michalis Spyrou6c7c38e2018-08-29 16:28:11 +010061 {
62 ARM_COMPUTE_RETURN_ERROR_ON_MSG(var_size <= 0, "Must be greater than 0");
63 }
64 }
65 ARM_COMPUTE_RETURN_ERROR_ON_MSG(info.steps()[0] < 0.f, "Step x should be greater or equal to 0");
66 ARM_COMPUTE_RETURN_ERROR_ON_MSG(info.steps()[1] < 0.f, "Step y should be greater or equal to 0");
67
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010068 if (!info.max_sizes().empty())
Michalis Spyrou6c7c38e2018-08-29 16:28:11 +010069 {
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010070 ARM_COMPUTE_RETURN_ERROR_ON_MSG(info.max_sizes().size() != info.min_sizes().size(),
71 "Max and min sizes dimensions should match");
Michalis Spyrou6c7c38e2018-08-29 16:28:11 +010072 }
73
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010074 for (unsigned int i = 0; i < info.max_sizes().size(); ++i)
Michalis Spyrou6c7c38e2018-08-29 16:28:11 +010075 {
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010076 ARM_COMPUTE_RETURN_ERROR_ON_MSG(info.max_sizes()[i] < info.min_sizes()[i],
77 "Max size should be greater than min size");
Michalis Spyrou6c7c38e2018-08-29 16:28:11 +010078 }
79
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010080 if (output != nullptr && output->total_size() != 0)
Michalis Spyrou6c7c38e2018-08-29 16:28:11 +010081 {
Michalis Spyrou3112e332018-11-21 15:44:55 +000082 ARM_COMPUTE_RETURN_ERROR_ON(output->dimension(1) != 2);
Michalis Spyrou6c7c38e2018-08-29 16:28:11 +010083 }
84
85 return Status{};
86}
87
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010088std::pair<Status, Window> validate_and_configure_window(const ITensorInfo *input1,
89 const ITensorInfo *input2,
90 ITensorInfo *output,
91 const PriorBoxLayerInfo &info,
92 int num_priors)
Michalis Spyrou6c7c38e2018-08-29 16:28:11 +010093{
94 ARM_COMPUTE_UNUSED(input2);
95 // Output tensor auto initialization if not yet initialized
96 TensorShape output_shape = compute_prior_box_shape(*input1, info);
97 auto_init_if_empty(*output, output_shape, 1, input1->data_type());
98
Michalis Spyrou3112e332018-11-21 15:44:55 +000099 const unsigned int num_elems_processed_per_iteration = 4 * num_priors;
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100100 Window win = calculate_max_window(*output, Steps(num_elems_processed_per_iteration));
Michalis Spyrou3112e332018-11-21 15:44:55 +0000101 AccessWindowHorizontal output_access(output, 0, num_elems_processed_per_iteration);
102 bool window_changed = update_window_and_padding(win, output_access);
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100103 Status err =
104 (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
Michalis Spyrou6c7c38e2018-08-29 16:28:11 +0100105 return std::make_pair(err, win);
106}
107} // namespace
108
109CLPriorBoxLayerKernel::CLPriorBoxLayerKernel()
110 : _input1(nullptr), _input2(nullptr), _output(nullptr), _info(), _num_priors(), _min(), _max(), _aspect_ratios()
111{
Giorgio Arena4a95bba2021-06-28 11:00:27 +0100112 _type = CLKernelType::ELEMENTWISE;
Michalis Spyrou6c7c38e2018-08-29 16:28:11 +0100113}
114
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100115void CLPriorBoxLayerKernel::configure(const ICLTensor *input1,
116 const ICLTensor *input2,
117 ICLTensor *output,
118 const PriorBoxLayerInfo &info,
119 cl::Buffer *min,
120 cl::Buffer *max,
121 cl::Buffer *aspect_ratios)
Michalis Spyrou6c7c38e2018-08-29 16:28:11 +0100122{
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100123 configure(CLKernelLibrary::get().get_compile_context(), input1, input2, output, info, min, max, aspect_ratios);
124}
125
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100126void CLPriorBoxLayerKernel::configure(const CLCompileContext &compile_context,
127 const ICLTensor *input1,
128 const ICLTensor *input2,
129 ICLTensor *output,
130 const PriorBoxLayerInfo &info,
131 cl::Buffer *min,
132 cl::Buffer *max,
133 cl::Buffer *aspect_ratios)
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100134{
Michalis Spyrou6c7c38e2018-08-29 16:28:11 +0100135 ARM_COMPUTE_ERROR_ON_NULLPTR(input1, input2, output);
136
137 _input1 = input1;
138 _input2 = input2;
139 _output = output;
140 _info = info;
141 _min = min;
142 _max = max;
143 _aspect_ratios = aspect_ratios;
144
145 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input1->info(), input2->info(), output->info(), info));
146
147 // Calculate number of aspect ratios
148 _num_priors = info.aspect_ratios().size() * info.min_sizes().size() + info.max_sizes().size();
149
150 const DataLayout data_layout = input1->info()->data_layout();
151
152 const int width_idx = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
153 const int height_idx = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT);
154
155 const int layer_width = input1->info()->dimension(width_idx);
156 const int layer_height = input1->info()->dimension(height_idx);
157
158 int img_width = info.img_size().x;
159 int img_height = info.img_size().y;
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100160 if (img_width == 0 || img_height == 0)
Michalis Spyrou6c7c38e2018-08-29 16:28:11 +0100161 {
162 img_width = input2->info()->dimension(width_idx);
163 img_height = input2->info()->dimension(height_idx);
164 }
165
166 float step_x = info.steps()[0];
167 float step_y = info.steps()[0];
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100168 if (step_x == 0.f || step_y == 0.f)
Michalis Spyrou6c7c38e2018-08-29 16:28:11 +0100169 {
170 step_x = static_cast<float>(img_width) / layer_width;
171 step_y = static_cast<float>(img_height) / layer_height;
172 }
173
174 // Set build options
175 CLBuildOptions build_opts;
176 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(input1->info()->data_type()));
177 build_opts.add_option("-DWIDTH=" + support::cpp11::to_string(img_width));
178 build_opts.add_option("-DHEIGHT=" + support::cpp11::to_string(img_height));
179 build_opts.add_option("-DLAYER_WIDTH=" + support::cpp11::to_string(layer_width));
180 build_opts.add_option("-DLAYER_HEIGHT=" + support::cpp11::to_string(layer_height));
181 build_opts.add_option("-DSTEP_X=" + support::cpp11::to_string(step_x));
182 build_opts.add_option("-DSTEP_Y=" + support::cpp11::to_string(step_y));
183 build_opts.add_option("-DNUM_PRIORS=" + support::cpp11::to_string(_num_priors));
184 build_opts.add_option("-DOFFSET=" + support::cpp11::to_string(info.offset()));
185 build_opts.add_option_if(info.clip(), "-DIN_PLACE");
186
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100187 if (info.variances().size() > 1)
Michalis Spyrou6c7c38e2018-08-29 16:28:11 +0100188 {
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100189 for (unsigned int i = 0; i < info.variances().size(); ++i)
Michalis Spyrou6c7c38e2018-08-29 16:28:11 +0100190 {
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100191 build_opts.add_option("-DVARIANCE_" + support::cpp11::to_string(i) + "=" +
192 support::cpp11::to_string(info.variances().at(i)));
Michalis Spyrou6c7c38e2018-08-29 16:28:11 +0100193 }
194 }
195 else
196 {
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100197 for (unsigned int i = 0; i < 4; ++i)
Michalis Spyrou6c7c38e2018-08-29 16:28:11 +0100198 {
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100199 build_opts.add_option("-DVARIANCE_" + support::cpp11::to_string(i) + "=" +
200 support::cpp11::to_string(info.variances().at(0)));
Michalis Spyrou6c7c38e2018-08-29 16:28:11 +0100201 }
202 }
203
Michalis Spyrou3112e332018-11-21 15:44:55 +0000204 unsigned int idx = num_arguments_per_2D_tensor();
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100205 _kernel = create_kernel(compile_context, "prior_box_layer_nchw", build_opts.options());
Michalis Spyrou6c7c38e2018-08-29 16:28:11 +0100206
207 _kernel.setArg(idx++, *_min);
208 _kernel.setArg(idx++, *_max);
209 _kernel.setArg(idx++, *_aspect_ratios);
210 _kernel.setArg<unsigned int>(idx++, info.min_sizes().size());
211 _kernel.setArg<unsigned int>(idx++, info.max_sizes().size());
212 _kernel.setArg<unsigned int>(idx++, info.aspect_ratios().size());
213
214 // Configure kernel window
215 auto win_config = validate_and_configure_window(input1->info(), input2->info(), output->info(), info, _num_priors);
216
217 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
218 ICLKernel::configure_internal(win_config.second);
219}
220
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100221Status CLPriorBoxLayerKernel::validate(const ITensorInfo *input1,
222 const ITensorInfo *input2,
223 const ITensorInfo *output,
224 const PriorBoxLayerInfo &info)
Michalis Spyrou6c7c38e2018-08-29 16:28:11 +0100225{
226 ARM_COMPUTE_ERROR_ON_NULLPTR(input1, input2, output);
227 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input1, input2, output, info));
228 const int num_priors = info.aspect_ratios().size() * info.min_sizes().size() + info.max_sizes().size();
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100229 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input1->clone().get(), input2->clone().get(),
230 output->clone().get(), info, num_priors)
231 .first);
Michalis Spyrou6c7c38e2018-08-29 16:28:11 +0100232
233 return Status{};
234}
235
236void CLPriorBoxLayerKernel::run(const Window &window, cl::CommandQueue &queue)
237{
238 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
239 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IKernel::window(), window);
240
241 queue.enqueueWriteBuffer(*_min, CL_TRUE, 0, _info.min_sizes().size() * sizeof(float), _info.min_sizes().data());
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100242 queue.enqueueWriteBuffer(*_aspect_ratios, CL_TRUE, 0, _info.aspect_ratios().size() * sizeof(float),
243 _info.aspect_ratios().data());
244 if (!_info.max_sizes().empty())
Michalis Spyrou6c7c38e2018-08-29 16:28:11 +0100245 {
246 queue.enqueueWriteBuffer(*_max, CL_TRUE, 0, _info.max_sizes().size() * sizeof(float), _info.max_sizes().data());
247 }
248
Michalis Spyrou3112e332018-11-21 15:44:55 +0000249 Window slice = window.first_slice_window_2D();
250 slice.set(Window::DimY, Window::Dimension(0, _output->info()->dimension(1), 2));
Michalis Spyrou6c7c38e2018-08-29 16:28:11 +0100251
Michalis Spyrou3112e332018-11-21 15:44:55 +0000252 unsigned int idx = 0;
253 add_2D_tensor_argument(idx, _output, slice);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100254 enqueue(queue, *this, slice, lws_hint());
Michalis Spyrou6c7c38e2018-08-29 16:28:11 +0100255}
256} // namespace arm_compute