blob: d830d0db673fc2d5945bb7daf2c30c0c70e9d226 [file] [log] [blame]
Michalis Spyrou721c4cb2018-09-04 15:27:25 +01001/*
Michalis Spyrou83dea962020-02-27 15:06:10 +00002 * Copyright (c) 2018-2020 ARM Limited.
Michalis Spyrou721c4cb2018-09-04 15:27:25 +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/NEON/kernels/NEPriorBoxLayerKernel.h"
25
26#include "arm_compute/core/Helpers.h"
27#include "arm_compute/core/ITensor.h"
28#include "arm_compute/core/Types.h"
29#include "arm_compute/core/Validate.h"
30
31#include <arm_neon.h>
32#include <cstdint>
33
34namespace arm_compute
35{
36namespace
37{
38Status validate_arguments(const ITensorInfo *input1, const ITensorInfo *input2, const ITensorInfo *output, const PriorBoxLayerInfo &info)
39{
40 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input1, input2, output);
41 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input1, 1, DataType::F32);
42 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_LAYOUT(input1, input2);
43 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input1, input2);
44
45 // Check variances
46 const int var_size = info.variances().size();
47 if(var_size > 1)
48 {
49 ARM_COMPUTE_RETURN_ERROR_ON_MSG(var_size != 4, "Must provide 4 variance values");
50 for(int i = 0; i < var_size; ++i)
51 {
52 ARM_COMPUTE_RETURN_ERROR_ON_MSG(var_size <= 0, "Must be greater than 0");
53 }
54 }
55 ARM_COMPUTE_RETURN_ERROR_ON_MSG(info.steps()[0] < 0.f, "Step x should be greater or equal to 0");
56 ARM_COMPUTE_RETURN_ERROR_ON_MSG(info.steps()[1] < 0.f, "Step y should be greater or equal to 0");
57
58 if(!info.max_sizes().empty())
59 {
60 ARM_COMPUTE_RETURN_ERROR_ON_MSG(info.max_sizes().size() != info.min_sizes().size(), "Max and min sizes dimensions should match");
61 }
62
63 for(unsigned int i = 0; i < info.max_sizes().size(); ++i)
64 {
65 ARM_COMPUTE_RETURN_ERROR_ON_MSG(info.max_sizes()[i] < info.min_sizes()[i], "Max size should be greater than min size");
66 }
67
68 if(output != nullptr && output->total_size() != 0)
69 {
Michalis Spyrou3112e332018-11-21 15:44:55 +000070 ARM_COMPUTE_RETURN_ERROR_ON(output->dimension(1) != 2);
Michalis Spyrou721c4cb2018-09-04 15:27:25 +010071 }
72
73 return Status{};
74}
Michalis Spyrou721c4cb2018-09-04 15:27:25 +010075} // namespace
76
77NEPriorBoxLayerKernel::NEPriorBoxLayerKernel()
Michalis Spyrou3112e332018-11-21 15:44:55 +000078 : _input1(nullptr), _input2(nullptr), _output(nullptr), _info()
Michalis Spyrou721c4cb2018-09-04 15:27:25 +010079{
80}
81
Michalis Spyrou721c4cb2018-09-04 15:27:25 +010082void NEPriorBoxLayerKernel::store_coordinates(float *out, const int offset, const float center_x, const float center_y, const float box_width, const float box_height, const int width,
83 const int height)
84{
85 float xmin = (center_x - box_width / 2.f) / width;
86 float ymin = (center_y - box_height / 2.f) / height;
87 float xmax = (center_x + box_width / 2.f) / width;
88 float ymax = (center_y + box_height / 2.f) / height;
89
Michalis Spyrou3112e332018-11-21 15:44:55 +000090 float32x4_t vec_elements = { xmin, ymin, xmax, ymax };
91 if(_info.clip())
Michalis Spyrou721c4cb2018-09-04 15:27:25 +010092 {
Michalis Spyrou3112e332018-11-21 15:44:55 +000093 static const float32x4_t CONST_0 = vdupq_n_f32(0.f);
94 static const float32x4_t CONST_1 = vdupq_n_f32(1.f);
95 vec_elements = vmaxq_f32(vminq_f32(vec_elements, CONST_1), CONST_0);
Michalis Spyrou721c4cb2018-09-04 15:27:25 +010096 }
Michalis Spyrou3112e332018-11-21 15:44:55 +000097 vst1q_f32(out + offset, vec_elements);
Michalis Spyrou721c4cb2018-09-04 15:27:25 +010098}
99
Michalis Spyrou721c4cb2018-09-04 15:27:25 +0100100void NEPriorBoxLayerKernel::calculate_prior_boxes(const Window &window)
101{
102 const int num_priors = _info.aspect_ratios().size() * _info.min_sizes().size() + _info.max_sizes().size();
103
Michalis Spyrou3112e332018-11-21 15:44:55 +0000104 const DataLayout data_layout = _input1->info()->data_layout();
105 const int width_idx = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
106 const int height_idx = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT);
Michalis Spyrou721c4cb2018-09-04 15:27:25 +0100107
108 const int layer_width = _input1->info()->dimension(width_idx);
109 const int layer_height = _input1->info()->dimension(height_idx);
110
111 int img_width = _info.img_size().x;
112 int img_height = _info.img_size().y;
113 if(img_width == 0 || img_height == 0)
114 {
115 img_width = _input2->info()->dimension(width_idx);
116 img_height = _input2->info()->dimension(height_idx);
117 }
118
119 float step_x = _info.steps()[0];
120 float step_y = _info.steps()[1];
121 if(step_x == 0.f || step_y == 0.f)
122 {
123 step_x = static_cast<float>(img_width) / layer_width;
124 step_y = static_cast<float>(img_height) / layer_height;
125 }
126
Michalis Spyrou3112e332018-11-21 15:44:55 +0000127 Window slice = window.first_slice_window_2D();
128 slice.set(Window::DimY, Window::Dimension(0, _output->info()->dimension(1), 2));
Michalis Spyrou721c4cb2018-09-04 15:27:25 +0100129
130 Iterator output(_output, slice);
131 execute_window_loop(slice, [&](const Coordinates & id)
132 {
133 float center_x = 0;
134 float center_y = 0;
Michalis Spyrou3112e332018-11-21 15:44:55 +0000135 int idx = id.x() / (4 * num_priors);
136 center_x = (static_cast<float>(idx % layer_width) + _info.offset()) * step_x;
137 center_y = (static_cast<float>(idx / layer_width) + _info.offset()) * step_y;
Michalis Spyrou721c4cb2018-09-04 15:27:25 +0100138
139 float box_width;
140 float box_height;
141 int offset = 0;
142
143 auto out = reinterpret_cast<float *>(output.ptr());
144 for(unsigned int i = 0; i < _info.min_sizes().size(); ++i)
145 {
146 const float min_size = _info.min_sizes().at(i);
147 box_width = min_size;
148 box_height = min_size;
Michalis Spyrou3112e332018-11-21 15:44:55 +0000149 store_coordinates(out, offset, center_x, center_y, box_width, box_height, img_width, img_height);
Michalis Spyrou721c4cb2018-09-04 15:27:25 +0100150 offset += 4;
151
152 if(!_info.max_sizes().empty())
153 {
154 const float max_size = _info.max_sizes().at(i);
155 box_width = std::sqrt(min_size * max_size);
156 box_height = box_width;
157
Michalis Spyrou3112e332018-11-21 15:44:55 +0000158 store_coordinates(out, offset, center_x, center_y, box_width, box_height, img_width, img_height);
Michalis Spyrou721c4cb2018-09-04 15:27:25 +0100159 offset += 4;
160 }
161
162 // rest of priors
163 for(auto ar : _info.aspect_ratios())
164 {
165 if(fabs(ar - 1.) < 1e-6)
166 {
167 continue;
168 }
169
170 box_width = min_size * sqrt(ar);
171 box_height = min_size / sqrt(ar);
172
Michalis Spyrou3112e332018-11-21 15:44:55 +0000173 store_coordinates(out, offset, center_x, center_y, box_width, box_height, img_width, img_height);
Michalis Spyrou721c4cb2018-09-04 15:27:25 +0100174 offset += 4;
175 }
176 }
177
178 // set the variance
Michalis Spyrou3112e332018-11-21 15:44:55 +0000179 out = reinterpret_cast<float *>(_output->ptr_to_element(Coordinates(id.x(), 1)));
180 float32x4_t var;
181 if(_info.variances().size() == 1)
Michalis Spyrou721c4cb2018-09-04 15:27:25 +0100182 {
Michalis Spyrou3112e332018-11-21 15:44:55 +0000183 var = vdupq_n_f32(_info.variances().at(0));
Michalis Spyrou721c4cb2018-09-04 15:27:25 +0100184 }
Michalis Spyrou3112e332018-11-21 15:44:55 +0000185 else
186 {
187 const float32x4_t vars = { _info.variances().at(0), _info.variances().at(1), _info.variances().at(2), _info.variances().at(3) };
188 var = vars;
189 }
190 for(int i = 0; i < num_priors; ++i)
191 {
192 vst1q_f32(out + 4 * i, var);
193 }
Michalis Spyrou721c4cb2018-09-04 15:27:25 +0100194 },
195 output);
196}
197
198void NEPriorBoxLayerKernel::configure(const ITensor *input1, const ITensor *input2, ITensor *output, const PriorBoxLayerInfo &info)
199{
200 ARM_COMPUTE_ERROR_ON_NULLPTR(input1, input2, output);
201
202 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input1->info(), input2->info(), output->info(), info));
203
204 _input1 = input1;
205 _input2 = input2;
206 _info = info;
207 _output = output;
208
Michalis Spyrou721c4cb2018-09-04 15:27:25 +0100209 // Configure kernel window
Michalis Spyrou83dea962020-02-27 15:06:10 +0000210 const int num_priors = info.aspect_ratios().size() * info.min_sizes().size() + info.max_sizes().size();
211 Window win = calculate_max_window(*output->info(), Steps(num_priors * 4));
212 Coordinates coord;
213 coord.set_num_dimensions(output->info()->num_dimensions());
214 output->info()->set_valid_region(ValidRegion(coord, output->info()->tensor_shape()));
215
216 INEKernel::configure(win);
Michalis Spyrou721c4cb2018-09-04 15:27:25 +0100217}
218
219Status NEPriorBoxLayerKernel::validate(const ITensorInfo *input1, const ITensorInfo *input2, const ITensorInfo *output, const PriorBoxLayerInfo &info)
220{
221 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input1, input2, output);
222 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input1, input2, output, info));
Michalis Spyrou721c4cb2018-09-04 15:27:25 +0100223
224 return Status{};
225}
226void NEPriorBoxLayerKernel::run(const Window &window, const ThreadInfo &info)
227{
228 ARM_COMPUTE_UNUSED(info);
229 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
230 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(INEKernel::window(), window);
Michalis Spyrou721c4cb2018-09-04 15:27:25 +0100231
232 // Run function
Michalis Spyrou3112e332018-11-21 15:44:55 +0000233 calculate_prior_boxes(window);
Michalis Spyrou721c4cb2018-09-04 15:27:25 +0100234}
235} // namespace arm_compute