blob: 9662203b8280b6c7c4e7a167e2a023dd8562e0cc [file] [log] [blame]
Pablo Telloed0e35b2019-08-30 14:44:52 +01001/*
SiCongLib88272e2021-02-24 15:40:57 +00002 * Copyright (c) 2019-2021 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 */
Michalis Spyrouebcebf12020-10-21 00:04:14 +010024#include "src/core/NEON/kernels/NEBoundingBoxTransformKernel.h"
Pablo Telloed0e35b2019-08-30 14:44:52 +010025
Pablo Telloed0e35b2019-08-30 14:44:52 +010026#include "arm_compute/core/Helpers.h"
27#include "arm_compute/core/TensorInfo.h"
28#include "arm_compute/core/Utils.h"
29#include "arm_compute/core/Window.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010030#include "src/core/AccessWindowStatic.h"
31#include "src/core/CPP/Validate.h"
32#include "src/core/helpers/AutoConfiguration.h"
33#include "src/core/helpers/WindowHelpers.h"
Pablo Telloed0e35b2019-08-30 14:44:52 +010034
35#include <arm_neon.h>
36
37namespace arm_compute
38{
39namespace
40{
41Status validate_arguments(const ITensorInfo *boxes, const ITensorInfo *pred_boxes, const ITensorInfo *deltas, const BoundingBoxTransformInfo &info)
42{
43 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(boxes, pred_boxes, deltas);
44 ARM_COMPUTE_RETURN_ERROR_ON_CPU_F16_UNSUPPORTED(boxes);
Pablo Telloffd31de2019-09-04 13:38:14 +010045 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_NOT_IN(boxes, DataType::QASYMM16, DataType::F32, DataType::F16);
46 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_NOT_IN(deltas, DataType::QASYMM8, DataType::F32, DataType::F16);
Pablo Telloed0e35b2019-08-30 14:44:52 +010047 ARM_COMPUTE_RETURN_ERROR_ON(deltas->tensor_shape()[1] != boxes->tensor_shape()[1]);
48 ARM_COMPUTE_RETURN_ERROR_ON(deltas->tensor_shape()[0] % 4 != 0);
49 ARM_COMPUTE_RETURN_ERROR_ON(boxes->tensor_shape()[0] != 4);
50 ARM_COMPUTE_RETURN_ERROR_ON(deltas->num_dimensions() > 2);
51 ARM_COMPUTE_RETURN_ERROR_ON(boxes->num_dimensions() > 2);
Pablo Telloffd31de2019-09-04 13:38:14 +010052 ARM_COMPUTE_RETURN_ERROR_ON(info.scale() <= 0);
53
54 if(boxes->data_type() == DataType::QASYMM16)
55 {
56 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(deltas, 1, DataType::QASYMM8);
57 const UniformQuantizationInfo deltas_qinfo = deltas->quantization_info().uniform();
58 ARM_COMPUTE_RETURN_ERROR_ON(deltas_qinfo.scale != 0.125f);
59 ARM_COMPUTE_RETURN_ERROR_ON(deltas_qinfo.offset != 0);
60 }
61 else
62 {
63 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(boxes, deltas);
64 }
Pablo Telloed0e35b2019-08-30 14:44:52 +010065
66 if(pred_boxes->total_size() > 0)
67 {
68 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DIMENSIONS(pred_boxes->tensor_shape(), deltas->tensor_shape());
69 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(pred_boxes, deltas);
70 ARM_COMPUTE_RETURN_ERROR_ON(pred_boxes->num_dimensions() > 2);
Pablo Telloffd31de2019-09-04 13:38:14 +010071 if(pred_boxes->data_type() == DataType::QASYMM16)
72 {
73 const UniformQuantizationInfo pred_qinfo = pred_boxes->quantization_info().uniform();
74 ARM_COMPUTE_RETURN_ERROR_ON(pred_qinfo.scale != 0.125f);
75 ARM_COMPUTE_RETURN_ERROR_ON(pred_qinfo.offset != 0);
76 }
Pablo Telloed0e35b2019-08-30 14:44:52 +010077 }
Pablo Telloffd31de2019-09-04 13:38:14 +010078
Pablo Telloed0e35b2019-08-30 14:44:52 +010079 return Status{};
80}
Pablo Telloed0e35b2019-08-30 14:44:52 +010081} // namespace
82
83NEBoundingBoxTransformKernel::NEBoundingBoxTransformKernel()
84 : _boxes(nullptr), _pred_boxes(nullptr), _deltas(nullptr), _bbinfo(0, 0, 0)
85{
86}
87
88void NEBoundingBoxTransformKernel::configure(const ITensor *boxes, ITensor *pred_boxes, const ITensor *deltas, const BoundingBoxTransformInfo &info)
89{
Michalis Spyrou3bb75d62020-03-23 10:53:11 +000090 ARM_COMPUTE_ERROR_ON_NULLPTR(boxes, pred_boxes, deltas);
Pablo Telloed0e35b2019-08-30 14:44:52 +010091 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(boxes->info(), pred_boxes->info(), deltas->info(), info));
92
93 // Configure kernel window
Michalis Spyrou3bb75d62020-03-23 10:53:11 +000094 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 +010095
96 // Set instance variables
97 _boxes = boxes;
98 _pred_boxes = pred_boxes;
99 _deltas = deltas;
100 _bbinfo = info;
101
Michalis Spyrou3bb75d62020-03-23 10:53:11 +0000102 const unsigned int num_boxes = boxes->info()->dimension(1);
103 Window win = calculate_max_window(*pred_boxes->info(), Steps());
Michalis Spyrou3bb75d62020-03-23 10:53:11 +0000104 win.set(Window::DimX, Window::Dimension(0, 1u));
105 win.set(Window::DimY, Window::Dimension(0, num_boxes));
106
107 INEKernel::configure(win);
Pablo Telloed0e35b2019-08-30 14:44:52 +0100108}
109
110Status NEBoundingBoxTransformKernel::validate(const ITensorInfo *boxes, const ITensorInfo *pred_boxes, const ITensorInfo *deltas, const BoundingBoxTransformInfo &info)
111{
112 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(boxes, pred_boxes, deltas, info));
113 return Status{};
114}
115
Pablo Telloffd31de2019-09-04 13:38:14 +0100116template <>
Michalis Spyrou6bff1952019-10-02 17:22:11 +0100117void NEBoundingBoxTransformKernel::internal_run<uint16_t>(const Window &window)
Pablo Telloffd31de2019-09-04 13:38:14 +0100118{
119 const size_t num_classes = _deltas->info()->tensor_shape()[0] >> 2;
120 const size_t deltas_width = _deltas->info()->tensor_shape()[0];
121 const int img_h = std::floor(_bbinfo.img_height() / _bbinfo.scale() + 0.5f);
122 const int img_w = std::floor(_bbinfo.img_width() / _bbinfo.scale() + 0.5f);
123
124 const auto scale_after = (_bbinfo.apply_scale() ? _bbinfo.scale() : 1.f);
125 const auto scale_before = _bbinfo.scale();
126 const auto offset = (_bbinfo.correct_transform_coords() ? 1.f : 0.f);
127
128 auto pred_ptr = reinterpret_cast<uint16_t *>(_pred_boxes->buffer() + _pred_boxes->info()->offset_first_element_in_bytes());
129 auto delta_ptr = reinterpret_cast<uint8_t *>(_deltas->buffer() + _deltas->info()->offset_first_element_in_bytes());
130
131 const auto boxes_qinfo = _boxes->info()->quantization_info().uniform();
132 const auto deltas_qinfo = _deltas->info()->quantization_info().uniform();
133 const auto pred_qinfo = _pred_boxes->info()->quantization_info().uniform();
134
135 Iterator box_it(_boxes, window);
136 execute_window_loop(window, [&](const Coordinates & id)
137 {
138 const auto ptr = reinterpret_cast<uint16_t *>(box_it.ptr());
139 const auto b0 = dequantize_qasymm16(*ptr, boxes_qinfo);
140 const auto b1 = dequantize_qasymm16(*(ptr + 1), boxes_qinfo);
141 const auto b2 = dequantize_qasymm16(*(ptr + 2), boxes_qinfo);
142 const auto b3 = dequantize_qasymm16(*(ptr + 3), boxes_qinfo);
143 const float width = (b2 / scale_before) - (b0 / scale_before) + 1.f;
144 const float height = (b3 / scale_before) - (b1 / scale_before) + 1.f;
145 const float ctr_x = (b0 / scale_before) + 0.5f * width;
146 const float ctr_y = (b1 / scale_before) + 0.5f * height;
147 for(size_t j = 0; j < num_classes; ++j)
148 {
149 // Extract deltas
150 const size_t delta_id = id.y() * deltas_width + 4u * j;
151 const float dx = dequantize_qasymm8(delta_ptr[delta_id], deltas_qinfo) / _bbinfo.weights()[0];
152 const float dy = dequantize_qasymm8(delta_ptr[delta_id + 1], deltas_qinfo) / _bbinfo.weights()[1];
153 float dw = dequantize_qasymm8(delta_ptr[delta_id + 2], deltas_qinfo) / _bbinfo.weights()[2];
154 float dh = dequantize_qasymm8(delta_ptr[delta_id + 3], deltas_qinfo) / _bbinfo.weights()[3];
155 // Clip dw and dh
156 dw = std::min(dw, _bbinfo.bbox_xform_clip());
157 dh = std::min(dh, _bbinfo.bbox_xform_clip());
158 // Determine the predictions
159 const float pred_ctr_x = dx * width + ctr_x;
160 const float pred_ctr_y = dy * height + ctr_y;
161 const float pred_w = std::exp(dw) * width;
162 const float pred_h = std::exp(dh) * height;
163 // Store the prediction into the output tensor
164 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);
165 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);
166 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);
167 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);
168 }
169 },
170 box_it);
171}
172
Pablo Telloed0e35b2019-08-30 14:44:52 +0100173template <typename T>
Michalis Spyrou6bff1952019-10-02 17:22:11 +0100174void NEBoundingBoxTransformKernel::internal_run(const Window &window)
Pablo Telloed0e35b2019-08-30 14:44:52 +0100175{
176 const size_t num_classes = _deltas->info()->tensor_shape()[0] >> 2;
177 const size_t deltas_width = _deltas->info()->tensor_shape()[0];
Pablo Telloffd31de2019-09-04 13:38:14 +0100178 const int img_h = std::floor(_bbinfo.img_height() / _bbinfo.scale() + 0.5f);
179 const int img_w = std::floor(_bbinfo.img_width() / _bbinfo.scale() + 0.5f);
Pablo Telloed0e35b2019-08-30 14:44:52 +0100180
181 const auto scale_after = (_bbinfo.apply_scale() ? T(_bbinfo.scale()) : T(1));
182 const auto scale_before = T(_bbinfo.scale());
183 ARM_COMPUTE_ERROR_ON(scale_before <= 0);
184 const auto offset = (_bbinfo.correct_transform_coords() ? T(1.f) : T(0.f));
185
186 auto pred_ptr = reinterpret_cast<T *>(_pred_boxes->buffer() + _pred_boxes->info()->offset_first_element_in_bytes());
187 auto delta_ptr = reinterpret_cast<T *>(_deltas->buffer() + _deltas->info()->offset_first_element_in_bytes());
188
189 Iterator box_it(_boxes, window);
190 execute_window_loop(window, [&](const Coordinates & id)
191 {
192 const auto ptr = reinterpret_cast<T *>(box_it.ptr());
193 const auto b0 = *ptr;
194 const auto b1 = *(ptr + 1);
195 const auto b2 = *(ptr + 2);
196 const auto b3 = *(ptr + 3);
197 const T width = (b2 / scale_before) - (b0 / scale_before) + T(1.f);
198 const T height = (b3 / scale_before) - (b1 / scale_before) + T(1.f);
199 const T ctr_x = (b0 / scale_before) + T(0.5f) * width;
200 const T ctr_y = (b1 / scale_before) + T(0.5f) * height;
201 for(size_t j = 0; j < num_classes; ++j)
202 {
203 // Extract deltas
204 const size_t delta_id = id.y() * deltas_width + 4u * j;
205 const T dx = delta_ptr[delta_id] / T(_bbinfo.weights()[0]);
206 const T dy = delta_ptr[delta_id + 1] / T(_bbinfo.weights()[1]);
207 T dw = delta_ptr[delta_id + 2] / T(_bbinfo.weights()[2]);
208 T dh = delta_ptr[delta_id + 3] / T(_bbinfo.weights()[3]);
209 // Clip dw and dh
210 dw = std::min(dw, T(_bbinfo.bbox_xform_clip()));
211 dh = std::min(dh, T(_bbinfo.bbox_xform_clip()));
212 // Determine the predictions
213 const T pred_ctr_x = dx * width + ctr_x;
214 const T pred_ctr_y = dy * height + ctr_y;
Pablo Telloffd31de2019-09-04 13:38:14 +0100215 const T pred_w = std::exp(dw) * width;
216 const T pred_h = std::exp(dh) * height;
Pablo Telloed0e35b2019-08-30 14:44:52 +0100217 // Store the prediction into the output tensor
218 pred_ptr[delta_id] = scale_after * utility::clamp<T>(pred_ctr_x - T(0.5f) * pred_w, T(0), T(img_w - 1));
219 pred_ptr[delta_id + 1] = scale_after * utility::clamp<T>(pred_ctr_y - T(0.5f) * pred_h, T(0), T(img_h - 1));
220 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));
221 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));
222 }
223 },
224 box_it);
225}
226
227void NEBoundingBoxTransformKernel::run(const Window &window, const ThreadInfo &info)
228{
Michalis Spyrou6bff1952019-10-02 17:22:11 +0100229 ARM_COMPUTE_UNUSED(info);
Pablo Telloed0e35b2019-08-30 14:44:52 +0100230 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
231 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(INEKernel::window(), window);
232 switch(_boxes->info()->data_type())
233 {
234 case DataType::F32:
235 {
Michalis Spyrou6bff1952019-10-02 17:22:11 +0100236 internal_run<float>(window);
Pablo Telloed0e35b2019-08-30 14:44:52 +0100237 break;
238 }
Pablo Telloffd31de2019-09-04 13:38:14 +0100239 case DataType::QASYMM16:
240 {
Michalis Spyrou6bff1952019-10-02 17:22:11 +0100241 internal_run<uint16_t>(window);
Pablo Telloffd31de2019-09-04 13:38:14 +0100242 break;
243 }
Pablo Telloed0e35b2019-08-30 14:44:52 +0100244#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
245 case DataType::F16:
246 {
Michalis Spyrou6bff1952019-10-02 17:22:11 +0100247 internal_run<float16_t>(window);
Pablo Telloed0e35b2019-08-30 14:44:52 +0100248 break;
249 }
250#endif // __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
251 default:
252 {
253 ARM_COMPUTE_ERROR("Data type not supported");
254 }
255 }
256}
257} // namespace arm_compute