blob: 202e9fbb37e50e9ff50380f2de005c258c2e77db [file] [log] [blame]
Michalis Spyrou6c7c38e2018-08-29 16:28:11 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2018-2020 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 */
24#include "arm_compute/core/CL/kernels/CLPriorBoxLayerKernel.h"
25
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"
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"
Michalis Spyrou6c7c38e2018-08-29 16:28:11 +010036
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{
45Status validate_arguments(const ITensorInfo *input1, const ITensorInfo *input2, const ITensorInfo *output, const PriorBoxLayerInfo &info)
46{
47 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input1, input2, output);
48 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input1, 1, DataType::F32);
49 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_LAYOUT(input1, input2);
50 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input1, input2);
51
52 // Check variances
53 const int var_size = info.variances().size();
54 if(var_size > 1)
55 {
56 ARM_COMPUTE_RETURN_ERROR_ON_MSG(var_size != 4, "Must provide 4 variance values");
57 for(int i = 0; i < var_size; ++i)
58 {
59 ARM_COMPUTE_RETURN_ERROR_ON_MSG(var_size <= 0, "Must be greater than 0");
60 }
61 }
62 ARM_COMPUTE_RETURN_ERROR_ON_MSG(info.steps()[0] < 0.f, "Step x should be greater or equal to 0");
63 ARM_COMPUTE_RETURN_ERROR_ON_MSG(info.steps()[1] < 0.f, "Step y should be greater or equal to 0");
64
65 if(!info.max_sizes().empty())
66 {
67 ARM_COMPUTE_RETURN_ERROR_ON_MSG(info.max_sizes().size() != info.min_sizes().size(), "Max and min sizes dimensions should match");
68 }
69
70 for(unsigned int i = 0; i < info.max_sizes().size(); ++i)
71 {
72 ARM_COMPUTE_RETURN_ERROR_ON_MSG(info.max_sizes()[i] < info.min_sizes()[i], "Max size should be greater than min size");
73 }
74
75 if(output != nullptr && output->total_size() != 0)
76 {
Michalis Spyrou3112e332018-11-21 15:44:55 +000077 ARM_COMPUTE_RETURN_ERROR_ON(output->dimension(1) != 2);
Michalis Spyrou6c7c38e2018-08-29 16:28:11 +010078 }
79
80 return Status{};
81}
82
83std::pair<Status, Window> validate_and_configure_window(const ITensorInfo *input1, const ITensorInfo *input2, ITensorInfo *output, const PriorBoxLayerInfo &info, int num_priors)
84{
85 ARM_COMPUTE_UNUSED(input2);
86 // Output tensor auto initialization if not yet initialized
87 TensorShape output_shape = compute_prior_box_shape(*input1, info);
88 auto_init_if_empty(*output, output_shape, 1, input1->data_type());
89
Michalis Spyrou3112e332018-11-21 15:44:55 +000090 const unsigned int num_elems_processed_per_iteration = 4 * num_priors;
91 Window win = calculate_max_window(*output, Steps(num_elems_processed_per_iteration));
92 AccessWindowHorizontal output_access(output, 0, num_elems_processed_per_iteration);
93 bool window_changed = update_window_and_padding(win, output_access);
94 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
Michalis Spyrou6c7c38e2018-08-29 16:28:11 +010095 return std::make_pair(err, win);
96}
97} // namespace
98
99CLPriorBoxLayerKernel::CLPriorBoxLayerKernel()
100 : _input1(nullptr), _input2(nullptr), _output(nullptr), _info(), _num_priors(), _min(), _max(), _aspect_ratios()
101{
102}
103
104void CLPriorBoxLayerKernel::configure(const ICLTensor *input1, const ICLTensor *input2, ICLTensor *output, const PriorBoxLayerInfo &info, cl::Buffer *min, cl::Buffer *max, cl::Buffer *aspect_ratios)
105{
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100106 configure(CLKernelLibrary::get().get_compile_context(), input1, input2, output, info, min, max, aspect_ratios);
107}
108
Manuel Bottini679fc962020-04-21 16:08:53 +0100109void CLPriorBoxLayerKernel::configure(const CLCompileContext &compile_context, const ICLTensor *input1, const ICLTensor *input2, ICLTensor *output, const PriorBoxLayerInfo &info, cl::Buffer *min,
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100110 cl::Buffer *max, cl::Buffer *aspect_ratios)
111{
Michalis Spyrou6c7c38e2018-08-29 16:28:11 +0100112 ARM_COMPUTE_ERROR_ON_NULLPTR(input1, input2, output);
113
114 _input1 = input1;
115 _input2 = input2;
116 _output = output;
117 _info = info;
118 _min = min;
119 _max = max;
120 _aspect_ratios = aspect_ratios;
121
122 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input1->info(), input2->info(), output->info(), info));
123
124 // Calculate number of aspect ratios
125 _num_priors = info.aspect_ratios().size() * info.min_sizes().size() + info.max_sizes().size();
126
127 const DataLayout data_layout = input1->info()->data_layout();
128
129 const int width_idx = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
130 const int height_idx = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT);
131
132 const int layer_width = input1->info()->dimension(width_idx);
133 const int layer_height = input1->info()->dimension(height_idx);
134
135 int img_width = info.img_size().x;
136 int img_height = info.img_size().y;
137 if(img_width == 0 || img_height == 0)
138 {
139 img_width = input2->info()->dimension(width_idx);
140 img_height = input2->info()->dimension(height_idx);
141 }
142
143 float step_x = info.steps()[0];
144 float step_y = info.steps()[0];
145 if(step_x == 0.f || step_y == 0.f)
146 {
147 step_x = static_cast<float>(img_width) / layer_width;
148 step_y = static_cast<float>(img_height) / layer_height;
149 }
150
151 // Set build options
152 CLBuildOptions build_opts;
153 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(input1->info()->data_type()));
154 build_opts.add_option("-DWIDTH=" + support::cpp11::to_string(img_width));
155 build_opts.add_option("-DHEIGHT=" + support::cpp11::to_string(img_height));
156 build_opts.add_option("-DLAYER_WIDTH=" + support::cpp11::to_string(layer_width));
157 build_opts.add_option("-DLAYER_HEIGHT=" + support::cpp11::to_string(layer_height));
158 build_opts.add_option("-DSTEP_X=" + support::cpp11::to_string(step_x));
159 build_opts.add_option("-DSTEP_Y=" + support::cpp11::to_string(step_y));
160 build_opts.add_option("-DNUM_PRIORS=" + support::cpp11::to_string(_num_priors));
161 build_opts.add_option("-DOFFSET=" + support::cpp11::to_string(info.offset()));
162 build_opts.add_option_if(info.clip(), "-DIN_PLACE");
163
164 if(info.variances().size() > 1)
165 {
166 for(unsigned int i = 0; i < info.variances().size(); ++i)
167 {
168 build_opts.add_option("-DVARIANCE_" + support::cpp11::to_string(i) + "=" + support::cpp11::to_string(info.variances().at(i)));
169 }
170 }
171 else
172 {
173 for(unsigned int i = 0; i < 4; ++i)
174 {
175 build_opts.add_option("-DVARIANCE_" + support::cpp11::to_string(i) + "=" + support::cpp11::to_string(info.variances().at(0)));
176 }
177 }
178
Michalis Spyrou3112e332018-11-21 15:44:55 +0000179 unsigned int idx = num_arguments_per_2D_tensor();
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100180 _kernel = create_kernel(compile_context, "prior_box_layer_nchw", build_opts.options());
Michalis Spyrou6c7c38e2018-08-29 16:28:11 +0100181
182 _kernel.setArg(idx++, *_min);
183 _kernel.setArg(idx++, *_max);
184 _kernel.setArg(idx++, *_aspect_ratios);
185 _kernel.setArg<unsigned int>(idx++, info.min_sizes().size());
186 _kernel.setArg<unsigned int>(idx++, info.max_sizes().size());
187 _kernel.setArg<unsigned int>(idx++, info.aspect_ratios().size());
188
189 // Configure kernel window
190 auto win_config = validate_and_configure_window(input1->info(), input2->info(), output->info(), info, _num_priors);
191
192 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
193 ICLKernel::configure_internal(win_config.second);
194}
195
196Status CLPriorBoxLayerKernel::validate(const ITensorInfo *input1, const ITensorInfo *input2, const ITensorInfo *output, const PriorBoxLayerInfo &info)
197{
198 ARM_COMPUTE_ERROR_ON_NULLPTR(input1, input2, output);
199 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input1, input2, output, info));
200 const int num_priors = info.aspect_ratios().size() * info.min_sizes().size() + info.max_sizes().size();
201 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input1->clone().get(), input2->clone().get(), output->clone().get(), info, num_priors)
202 .first);
203
204 return Status{};
205}
206
207void CLPriorBoxLayerKernel::run(const Window &window, cl::CommandQueue &queue)
208{
209 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
210 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IKernel::window(), window);
211
212 queue.enqueueWriteBuffer(*_min, CL_TRUE, 0, _info.min_sizes().size() * sizeof(float), _info.min_sizes().data());
213 queue.enqueueWriteBuffer(*_aspect_ratios, CL_TRUE, 0, _info.aspect_ratios().size() * sizeof(float), _info.aspect_ratios().data());
214 if(!_info.max_sizes().empty())
215 {
216 queue.enqueueWriteBuffer(*_max, CL_TRUE, 0, _info.max_sizes().size() * sizeof(float), _info.max_sizes().data());
217 }
218
Michalis Spyrou3112e332018-11-21 15:44:55 +0000219 Window slice = window.first_slice_window_2D();
220 slice.set(Window::DimY, Window::Dimension(0, _output->info()->dimension(1), 2));
Michalis Spyrou6c7c38e2018-08-29 16:28:11 +0100221
Michalis Spyrou3112e332018-11-21 15:44:55 +0000222 unsigned int idx = 0;
223 add_2D_tensor_argument(idx, _output, slice);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100224 enqueue(queue, *this, slice, lws_hint());
Michalis Spyrou6c7c38e2018-08-29 16:28:11 +0100225}
226} // namespace arm_compute