blob: ea8d47d57e986066d651b1732ae2ee59e800ff04 [file] [log] [blame]
Pablo Telloed0e35b2019-08-30 14:44:52 +01001/*
Michalis Spyrou3bb75d62020-03-23 10:53:11 +00002 * Copyright (c) 2019-2020 ARM Limited.
Pablo Telloed0e35b2019-08-30 14:44:52 +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/NEBoundingBoxTransformKernel.h"
25
26#include "arm_compute/core/AccessWindowStatic.h"
27#include "arm_compute/core/CPP/Validate.h"
28#include "arm_compute/core/Helpers.h"
29#include "arm_compute/core/TensorInfo.h"
30#include "arm_compute/core/Utils.h"
31#include "arm_compute/core/Window.h"
32
33#include <arm_neon.h>
34
35namespace arm_compute
36{
37namespace
38{
39Status validate_arguments(const ITensorInfo *boxes, const ITensorInfo *pred_boxes, const ITensorInfo *deltas, const BoundingBoxTransformInfo &info)
40{
41 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(boxes, pred_boxes, deltas);
42 ARM_COMPUTE_RETURN_ERROR_ON_CPU_F16_UNSUPPORTED(boxes);
Pablo Telloffd31de2019-09-04 13:38:14 +010043 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_NOT_IN(boxes, DataType::QASYMM16, DataType::F32, DataType::F16);
44 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_NOT_IN(deltas, DataType::QASYMM8, DataType::F32, DataType::F16);
Pablo Telloed0e35b2019-08-30 14:44:52 +010045 ARM_COMPUTE_RETURN_ERROR_ON(deltas->tensor_shape()[1] != boxes->tensor_shape()[1]);
46 ARM_COMPUTE_RETURN_ERROR_ON(deltas->tensor_shape()[0] % 4 != 0);
47 ARM_COMPUTE_RETURN_ERROR_ON(boxes->tensor_shape()[0] != 4);
48 ARM_COMPUTE_RETURN_ERROR_ON(deltas->num_dimensions() > 2);
49 ARM_COMPUTE_RETURN_ERROR_ON(boxes->num_dimensions() > 2);
Pablo Telloffd31de2019-09-04 13:38:14 +010050 ARM_COMPUTE_RETURN_ERROR_ON(info.scale() <= 0);
51
52 if(boxes->data_type() == DataType::QASYMM16)
53 {
54 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(deltas, 1, DataType::QASYMM8);
55 const UniformQuantizationInfo deltas_qinfo = deltas->quantization_info().uniform();
56 ARM_COMPUTE_RETURN_ERROR_ON(deltas_qinfo.scale != 0.125f);
57 ARM_COMPUTE_RETURN_ERROR_ON(deltas_qinfo.offset != 0);
58 }
59 else
60 {
61 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(boxes, deltas);
62 }
Pablo Telloed0e35b2019-08-30 14:44:52 +010063
64 if(pred_boxes->total_size() > 0)
65 {
66 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DIMENSIONS(pred_boxes->tensor_shape(), deltas->tensor_shape());
67 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(pred_boxes, deltas);
68 ARM_COMPUTE_RETURN_ERROR_ON(pred_boxes->num_dimensions() > 2);
Pablo Telloffd31de2019-09-04 13:38:14 +010069 if(pred_boxes->data_type() == DataType::QASYMM16)
70 {
71 const UniformQuantizationInfo pred_qinfo = pred_boxes->quantization_info().uniform();
72 ARM_COMPUTE_RETURN_ERROR_ON(pred_qinfo.scale != 0.125f);
73 ARM_COMPUTE_RETURN_ERROR_ON(pred_qinfo.offset != 0);
74 }
Pablo Telloed0e35b2019-08-30 14:44:52 +010075 }
Pablo Telloffd31de2019-09-04 13:38:14 +010076
Pablo Telloed0e35b2019-08-30 14:44:52 +010077 return Status{};
78}
Pablo Telloed0e35b2019-08-30 14:44:52 +010079} // namespace
80
81NEBoundingBoxTransformKernel::NEBoundingBoxTransformKernel()
82 : _boxes(nullptr), _pred_boxes(nullptr), _deltas(nullptr), _bbinfo(0, 0, 0)
83{
84}
85
86void NEBoundingBoxTransformKernel::configure(const ITensor *boxes, ITensor *pred_boxes, const ITensor *deltas, const BoundingBoxTransformInfo &info)
87{
Michalis Spyrou3bb75d62020-03-23 10:53:11 +000088 ARM_COMPUTE_ERROR_ON_NULLPTR(boxes, pred_boxes, deltas);
Pablo Telloed0e35b2019-08-30 14:44:52 +010089 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(boxes->info(), pred_boxes->info(), deltas->info(), info));
90
91 // Configure kernel window
Michalis Spyrou3bb75d62020-03-23 10:53:11 +000092 auto_init_if_empty(*pred_boxes->info(), deltas->info()->clone()->set_data_type(boxes->info()->data_type()).set_quantization_info(boxes->info()->quantization_info()));
Pablo Telloed0e35b2019-08-30 14:44:52 +010093
94 // Set instance variables
95 _boxes = boxes;
96 _pred_boxes = pred_boxes;
97 _deltas = deltas;
98 _bbinfo = info;
99
Michalis Spyrou3bb75d62020-03-23 10:53:11 +0000100 const unsigned int num_boxes = boxes->info()->dimension(1);
101 Window win = calculate_max_window(*pred_boxes->info(), Steps());
102 Coordinates coord;
103 coord.set_num_dimensions(pred_boxes->info()->num_dimensions());
104 pred_boxes->info()->set_valid_region(ValidRegion(coord, pred_boxes->info()->tensor_shape()));
105 win.set(Window::DimX, Window::Dimension(0, 1u));
106 win.set(Window::DimY, Window::Dimension(0, num_boxes));
107
108 INEKernel::configure(win);
Pablo Telloed0e35b2019-08-30 14:44:52 +0100109}
110
111Status NEBoundingBoxTransformKernel::validate(const ITensorInfo *boxes, const ITensorInfo *pred_boxes, const ITensorInfo *deltas, const BoundingBoxTransformInfo &info)
112{
113 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(boxes, pred_boxes, deltas, info));
114 return Status{};
115}
116
Pablo Telloffd31de2019-09-04 13:38:14 +0100117template <>
Michalis Spyrou6bff1952019-10-02 17:22:11 +0100118void NEBoundingBoxTransformKernel::internal_run<uint16_t>(const Window &window)
Pablo Telloffd31de2019-09-04 13:38:14 +0100119{
120 const size_t num_classes = _deltas->info()->tensor_shape()[0] >> 2;
121 const size_t deltas_width = _deltas->info()->tensor_shape()[0];
122 const int img_h = std::floor(_bbinfo.img_height() / _bbinfo.scale() + 0.5f);
123 const int img_w = std::floor(_bbinfo.img_width() / _bbinfo.scale() + 0.5f);
124
125 const auto scale_after = (_bbinfo.apply_scale() ? _bbinfo.scale() : 1.f);
126 const auto scale_before = _bbinfo.scale();
127 const auto offset = (_bbinfo.correct_transform_coords() ? 1.f : 0.f);
128
129 auto pred_ptr = reinterpret_cast<uint16_t *>(_pred_boxes->buffer() + _pred_boxes->info()->offset_first_element_in_bytes());
130 auto delta_ptr = reinterpret_cast<uint8_t *>(_deltas->buffer() + _deltas->info()->offset_first_element_in_bytes());
131
132 const auto boxes_qinfo = _boxes->info()->quantization_info().uniform();
133 const auto deltas_qinfo = _deltas->info()->quantization_info().uniform();
134 const auto pred_qinfo = _pred_boxes->info()->quantization_info().uniform();
135
136 Iterator box_it(_boxes, window);
137 execute_window_loop(window, [&](const Coordinates & id)
138 {
139 const auto ptr = reinterpret_cast<uint16_t *>(box_it.ptr());
140 const auto b0 = dequantize_qasymm16(*ptr, boxes_qinfo);
141 const auto b1 = dequantize_qasymm16(*(ptr + 1), boxes_qinfo);
142 const auto b2 = dequantize_qasymm16(*(ptr + 2), boxes_qinfo);
143 const auto b3 = dequantize_qasymm16(*(ptr + 3), boxes_qinfo);
144 const float width = (b2 / scale_before) - (b0 / scale_before) + 1.f;
145 const float height = (b3 / scale_before) - (b1 / scale_before) + 1.f;
146 const float ctr_x = (b0 / scale_before) + 0.5f * width;
147 const float ctr_y = (b1 / scale_before) + 0.5f * height;
148 for(size_t j = 0; j < num_classes; ++j)
149 {
150 // Extract deltas
151 const size_t delta_id = id.y() * deltas_width + 4u * j;
152 const float dx = dequantize_qasymm8(delta_ptr[delta_id], deltas_qinfo) / _bbinfo.weights()[0];
153 const float dy = dequantize_qasymm8(delta_ptr[delta_id + 1], deltas_qinfo) / _bbinfo.weights()[1];
154 float dw = dequantize_qasymm8(delta_ptr[delta_id + 2], deltas_qinfo) / _bbinfo.weights()[2];
155 float dh = dequantize_qasymm8(delta_ptr[delta_id + 3], deltas_qinfo) / _bbinfo.weights()[3];
156 // Clip dw and dh
157 dw = std::min(dw, _bbinfo.bbox_xform_clip());
158 dh = std::min(dh, _bbinfo.bbox_xform_clip());
159 // Determine the predictions
160 const float pred_ctr_x = dx * width + ctr_x;
161 const float pred_ctr_y = dy * height + ctr_y;
162 const float pred_w = std::exp(dw) * width;
163 const float pred_h = std::exp(dh) * height;
164 // Store the prediction into the output tensor
165 pred_ptr[delta_id] = quantize_qasymm16(scale_after * utility::clamp<float>(pred_ctr_x - 0.5f * pred_w, 0.f, img_w - 1.f), pred_qinfo);
166 pred_ptr[delta_id + 1] = quantize_qasymm16(scale_after * utility::clamp<float>(pred_ctr_y - 0.5f * pred_h, 0.f, img_h - 1.f), pred_qinfo);
167 pred_ptr[delta_id + 2] = quantize_qasymm16(scale_after * utility::clamp<float>(pred_ctr_x + 0.5f * pred_w - offset, 0.f, img_w - 1.f), pred_qinfo);
168 pred_ptr[delta_id + 3] = quantize_qasymm16(scale_after * utility::clamp<float>(pred_ctr_y + 0.5f * pred_h - offset, 0.f, img_h - 1.f), pred_qinfo);
169 }
170 },
171 box_it);
172}
173
Pablo Telloed0e35b2019-08-30 14:44:52 +0100174template <typename T>
Michalis Spyrou6bff1952019-10-02 17:22:11 +0100175void NEBoundingBoxTransformKernel::internal_run(const Window &window)
Pablo Telloed0e35b2019-08-30 14:44:52 +0100176{
177 const size_t num_classes = _deltas->info()->tensor_shape()[0] >> 2;
178 const size_t deltas_width = _deltas->info()->tensor_shape()[0];
Pablo Telloffd31de2019-09-04 13:38:14 +0100179 const int img_h = std::floor(_bbinfo.img_height() / _bbinfo.scale() + 0.5f);
180 const int img_w = std::floor(_bbinfo.img_width() / _bbinfo.scale() + 0.5f);
Pablo Telloed0e35b2019-08-30 14:44:52 +0100181
182 const auto scale_after = (_bbinfo.apply_scale() ? T(_bbinfo.scale()) : T(1));
183 const auto scale_before = T(_bbinfo.scale());
184 ARM_COMPUTE_ERROR_ON(scale_before <= 0);
185 const auto offset = (_bbinfo.correct_transform_coords() ? T(1.f) : T(0.f));
186
187 auto pred_ptr = reinterpret_cast<T *>(_pred_boxes->buffer() + _pred_boxes->info()->offset_first_element_in_bytes());
188 auto delta_ptr = reinterpret_cast<T *>(_deltas->buffer() + _deltas->info()->offset_first_element_in_bytes());
189
190 Iterator box_it(_boxes, window);
191 execute_window_loop(window, [&](const Coordinates & id)
192 {
193 const auto ptr = reinterpret_cast<T *>(box_it.ptr());
194 const auto b0 = *ptr;
195 const auto b1 = *(ptr + 1);
196 const auto b2 = *(ptr + 2);
197 const auto b3 = *(ptr + 3);
198 const T width = (b2 / scale_before) - (b0 / scale_before) + T(1.f);
199 const T height = (b3 / scale_before) - (b1 / scale_before) + T(1.f);
200 const T ctr_x = (b0 / scale_before) + T(0.5f) * width;
201 const T ctr_y = (b1 / scale_before) + T(0.5f) * height;
202 for(size_t j = 0; j < num_classes; ++j)
203 {
204 // Extract deltas
205 const size_t delta_id = id.y() * deltas_width + 4u * j;
206 const T dx = delta_ptr[delta_id] / T(_bbinfo.weights()[0]);
207 const T dy = delta_ptr[delta_id + 1] / T(_bbinfo.weights()[1]);
208 T dw = delta_ptr[delta_id + 2] / T(_bbinfo.weights()[2]);
209 T dh = delta_ptr[delta_id + 3] / T(_bbinfo.weights()[3]);
210 // Clip dw and dh
211 dw = std::min(dw, T(_bbinfo.bbox_xform_clip()));
212 dh = std::min(dh, T(_bbinfo.bbox_xform_clip()));
213 // Determine the predictions
214 const T pred_ctr_x = dx * width + ctr_x;
215 const T pred_ctr_y = dy * height + ctr_y;
Pablo Telloffd31de2019-09-04 13:38:14 +0100216 const T pred_w = std::exp(dw) * width;
217 const T pred_h = std::exp(dh) * height;
Pablo Telloed0e35b2019-08-30 14:44:52 +0100218 // Store the prediction into the output tensor
219 pred_ptr[delta_id] = scale_after * utility::clamp<T>(pred_ctr_x - T(0.5f) * pred_w, T(0), T(img_w - 1));
220 pred_ptr[delta_id + 1] = scale_after * utility::clamp<T>(pred_ctr_y - T(0.5f) * pred_h, T(0), T(img_h - 1));
221 pred_ptr[delta_id + 2] = scale_after * utility::clamp<T>(pred_ctr_x + T(0.5f) * pred_w - offset, T(0), T(img_w - 1));
222 pred_ptr[delta_id + 3] = scale_after * utility::clamp<T>(pred_ctr_y + T(0.5f) * pred_h - offset, T(0), T(img_h - 1));
223 }
224 },
225 box_it);
226}
227
228void NEBoundingBoxTransformKernel::run(const Window &window, const ThreadInfo &info)
229{
Michalis Spyrou6bff1952019-10-02 17:22:11 +0100230 ARM_COMPUTE_UNUSED(info);
Pablo Telloed0e35b2019-08-30 14:44:52 +0100231 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
232 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(INEKernel::window(), window);
233 switch(_boxes->info()->data_type())
234 {
235 case DataType::F32:
236 {
Michalis Spyrou6bff1952019-10-02 17:22:11 +0100237 internal_run<float>(window);
Pablo Telloed0e35b2019-08-30 14:44:52 +0100238 break;
239 }
Pablo Telloffd31de2019-09-04 13:38:14 +0100240 case DataType::QASYMM16:
241 {
Michalis Spyrou6bff1952019-10-02 17:22:11 +0100242 internal_run<uint16_t>(window);
Pablo Telloffd31de2019-09-04 13:38:14 +0100243 break;
244 }
Pablo Telloed0e35b2019-08-30 14:44:52 +0100245#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
246 case DataType::F16:
247 {
Michalis Spyrou6bff1952019-10-02 17:22:11 +0100248 internal_run<float16_t>(window);
Pablo Telloed0e35b2019-08-30 14:44:52 +0100249 break;
250 }
251#endif // __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
252 default:
253 {
254 ARM_COMPUTE_ERROR("Data type not supported");
255 }
256 }
257}
258} // namespace arm_compute