blob: 21a8436289c6808cdd4318a87590b835bba2ce35 [file] [log] [blame]
George Wort05398a92019-01-25 15:38:33 +00001/*
Michalis Spyroua1b8bab2020-05-07 12:13:44 +01002 * Copyright (c) 2019-2020 ARM Limited.
George Wort05398a92019-01-25 15:38:33 +00003 *
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/NECropKernel.h"
25
26#include "arm_compute/core/CPP/Validate.h"
27#include "arm_compute/core/IAccessWindow.h"
28#include "arm_compute/core/ITensor.h"
29#include "arm_compute/core/TensorInfo.h"
30#include "arm_compute/core/Window.h"
31
32#include "arm_compute/core/NEON/wrapper/wrapper.h"
33#include "arm_compute/core/Types.h"
34#include "arm_compute/core/utils/helpers/bit_ops.h"
35#include "arm_compute/core/utils/helpers/tensor_transform.h"
36#include "arm_compute/core/utils/misc/ShapeCalculator.h"
37
George Wort05398a92019-01-25 15:38:33 +000038namespace arm_compute
39{
40namespace
41{
42template <typename T>
43inline float32x4_t load_as_f32(T *ptr)
44{
45 ARM_COMPUTE_UNUSED(ptr);
46 ARM_COMPUTE_ERROR("Type not supported.");
47}
48
49template <>
50inline float32x4_t load_as_f32(float *ptr)
51{
52 return wrapper::vloadq(ptr);
53}
54
55template <>
56inline float32x4_t load_as_f32(int32_t *ptr)
57{
58 return vcvtq_f32_s32(wrapper::vloadq(ptr));
59}
60
61template <>
62inline float32x4_t load_as_f32(uint32_t *ptr)
63{
64 return vcvtq_f32_u32(wrapper::vloadq(ptr));
65}
66
67template <>
68inline float32x4_t load_as_f32(int16_t *ptr)
69{
70 return vcvtq_f32_s32(vmovl_s16(wrapper::vload(ptr)));
71}
72
73template <>
74inline float32x4_t load_as_f32(uint16_t *ptr)
75{
76 return vcvtq_f32_u32(vmovl_u16(wrapper::vload(ptr)));
77}
78
Michele Di Giorgio17101332020-06-01 12:07:50 +010079template <>
80inline float32x4_t load_as_f32(uint8_t *ptr)
81{
82 return vcvtq_f32_u32(vmovl_u16(vget_low_u16(vmovl_u8(wrapper::vload(ptr)))));
83}
84
George Wort05398a92019-01-25 15:38:33 +000085#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
86template <>
87inline float32x4_t load_as_f32(float16_t *ptr)
88{
89 return vcvt_f32_f16(wrapper::vload(ptr));
90}
91#endif /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
92
Michalis Spyroua1b8bab2020-05-07 12:13:44 +010093template <typename T>
George Wort05398a92019-01-25 15:38:33 +000094inline void in_bounds_crop_window(const ITensor *input, const ITensor *output, float *output_ptr, Coordinates input_offset,
Michalis Spyroua1b8bab2020-05-07 12:13:44 +010095 int32_t window_step_x, int32_t output_width_start, int32_t output_width_limit, bool input_has_single_channel, bool is_width_flipped)
George Wort05398a92019-01-25 15:38:33 +000096{
97 // Reverse elements if width flipped.
98 if(is_width_flipped)
99 {
100 // Collapse first dimension if possible.
101 if(input_has_single_channel)
102 {
103 int32_t x = output_width_start;
104 Coordinates negative_offset(input_offset);
105 negative_offset.set(1, negative_offset[1] - window_step_x + 1);
106 for(; x <= output_width_limit - window_step_x; x += window_step_x, negative_offset[1] -= window_step_x)
107 {
108 auto in = load_as_f32(reinterpret_cast<T *>(input->ptr_to_element(negative_offset)));
109
110 in = wrapper::vrev64(in);
111 in = wrapper::vcombine(wrapper::vgethigh(in), wrapper::vgetlow(in));
112
113 wrapper::vstore(output_ptr + x, in);
114 }
115 input_offset[1] = negative_offset[1] + window_step_x - 1;
116 for(; x < output_width_limit; ++x, --input_offset[1])
117 {
118 *(output_ptr + x) = static_cast<float>(*reinterpret_cast<T *>(input->ptr_to_element(input_offset)));
119 }
120 }
121 else
122 {
123 for(int32_t x = output_width_start; x < output_width_limit; ++x, --input_offset[1])
124 {
125 input_offset.set(0, 0);
126 int32_t c = 0;
127 for(; c <= static_cast<int32_t>(input->info()->dimension(0)) - window_step_x; c += window_step_x, input_offset[0] += window_step_x)
128 {
129 auto in = load_as_f32(reinterpret_cast<T *>(input->ptr_to_element(input_offset)));
130 wrapper::vstore(output_ptr + x * output->info()->dimension(0) + c, in);
131 }
132 for(; c < static_cast<int32_t>(input->info()->dimension(0)); ++c, ++input_offset[0])
133 {
134 *(output_ptr + x * output->info()->dimension(0) + c) = static_cast<float>(*reinterpret_cast<T *>(input->ptr_to_element(input_offset)));
135 }
136 }
137 }
138 }
139 else
140 {
141 // Use memcpy if the elements don't need converting to float.
142 if(std::is_same<T, float>::value)
143 {
144 memcpy(static_cast<void *>(output_ptr + output_width_start * output->info()->dimension(0)),
145 reinterpret_cast<const void *>(input->ptr_to_element(input_offset)),
146 (output_width_limit - output_width_start) * output->info()->dimension(0) * output->info()->element_size());
147 }
148 else
149 {
150 int32_t x = 0;
151 int32_t limit = (output_width_limit - output_width_start) * static_cast<int32_t>(output->info()->dimension(0));
152 float *output_start_ptr = output_ptr + output_width_start * output->info()->dimension(0);
153 for(; x <= limit - window_step_x; x += window_step_x, input_offset[0] += window_step_x)
154 {
155 auto in = load_as_f32(reinterpret_cast<T *>(input->ptr_to_element(input_offset)));
156 wrapper::vstore(output_start_ptr + x, in);
157 }
158 for(; x < limit; ++x, ++input_offset[0])
159 {
160 *(output_start_ptr + x) = static_cast<float>(*reinterpret_cast<T *>(input->ptr_to_element(input_offset)));
161 }
162 }
163 }
164}
165
166inline void out_of_bounds_crop_window(const ITensor *output, float *output_ptr, float extrapolation_value,
167 int32_t window_step_x, int32_t output_width_start, int32_t output_width_limit)
168{
169 auto in = wrapper::vdup_n(extrapolation_value, wrapper::traits::vector_128_tag());
170 int32_t x = 0;
171 int32_t limit = (output_width_limit - output_width_start) * static_cast<int32_t>(output->info()->dimension(0));
172 float *output_start_ptr = output_ptr + output_width_start * output->info()->dimension(0);
173 for(; x <= limit - window_step_x; x += window_step_x)
174 {
175 wrapper::vstore(output_start_ptr + x, in);
176 }
177 for(; x < limit; ++x)
178 {
179 *(output_start_ptr + x) = extrapolation_value;
180 }
181}
182
George Wort05398a92019-01-25 15:38:33 +0000183inline void execute_window(const ITensor *input, const ITensor *output, Coordinates input_offset, float extrapolation_value,
Michalis Spyroua1b8bab2020-05-07 12:13:44 +0100184 const std::array<uint32_t, 2> &rows_out_of_bounds, const std::array<uint32_t, 2> &cols_out_of_bounds, NECropKernel::InBoundsCropFunction *in_bounds_crop_function,
185 bool is_height_flipped, bool has_cols_in_bounds, bool has_cols_out_of_bounds_before, bool has_cols_out_of_bounds_after, bool input_has_single_channel, bool is_width_flipped)
George Wort05398a92019-01-25 15:38:33 +0000186{
187 // Output is always float.
188 const int window_step_x = 16 / sizeof(float);
189 auto *output_ptr = reinterpret_cast<float *>(output->buffer());
190 // Output window:
191 // --------------------------------
192 // | Out of bounds |
193 // | rows before |
194 // |------------------------------|
195 // | Out of | In | Out of |
196 // | bounds | bounds | bounds |
197 // | cols | elements | cols |
198 // | before | copied | after |
199 // | | from input | |
200 // --------------------------------
201 // | Out of bounds |
202 // | rows after |
203 // |------------------------------|
204 // Fill all output rows that have no elements that are within the input bounds with the extrapolation value.
205 // First for the rows before the in bounds rows.
206 out_of_bounds_crop_window(output, output_ptr, extrapolation_value, window_step_x, 0, rows_out_of_bounds[0] * output->info()->dimension(1));
207 output_ptr += rows_out_of_bounds[0] * output->info()->dimension(1) * output->info()->dimension(0);
208 // Iterate through each row that has any elements within the input bounds.
209 for(uint32_t row = rows_out_of_bounds[0]; static_cast<int32_t>(row) < static_cast<int32_t>(output->info()->dimension(2) - rows_out_of_bounds[1]);
210 ++row, is_height_flipped ? --input_offset[2] : ++input_offset[2])
211 {
212 // Fill all elements in the row that are out of bounds with the extrapolation value.
213 // First for the elements before the in bounds elements.
214 if(has_cols_out_of_bounds_before)
215 {
216 out_of_bounds_crop_window(output, output_ptr, extrapolation_value, window_step_x, 0, cols_out_of_bounds[0]);
217 }
218 // Copy all elements within the input bounds from the input tensor.
219 if(has_cols_in_bounds)
220 {
Michalis Spyroua1b8bab2020-05-07 12:13:44 +0100221 (*in_bounds_crop_function)(input, output, output_ptr, input_offset, window_step_x, cols_out_of_bounds[0],
222 output->info()->dimension(1) - cols_out_of_bounds[1], input_has_single_channel, is_width_flipped);
George Wort05398a92019-01-25 15:38:33 +0000223 }
224 // Fill all elements after the in bounds elements with the extrapolation value.
225 if(has_cols_out_of_bounds_after)
226 {
227 out_of_bounds_crop_window(output, output_ptr, extrapolation_value, window_step_x, output->info()->dimension(1) - cols_out_of_bounds[1], output->info()->dimension(1));
228 }
229 output_ptr += output->info()->dimension(1) * output->info()->dimension(0);
230 }
231 // Fill all rows after the in bounds elements with the extrapolation value.
232 out_of_bounds_crop_window(output, output_ptr, extrapolation_value, window_step_x, 0, rows_out_of_bounds[1] * output->info()->dimension(1));
233}
234} // namespace
235
236NECropKernel::NECropKernel()
237 : _input(nullptr), _crop_boxes(nullptr), _box_ind(nullptr), _output(nullptr), _start(), _end(), _crop_box_ind(0), _extrapolation_value(0), _rows_out_of_bounds(), _cols_out_of_bounds(),
Michalis Spyroua1b8bab2020-05-07 12:13:44 +0100238 _in_bounds_crop_function(nullptr)
George Wort05398a92019-01-25 15:38:33 +0000239{
240}
241
242void NECropKernel::configure(const ITensor *input, const ITensor *crop_boxes, const ITensor *box_ind, ITensor *output, uint32_t crop_box_ind, float extrapolation_value)
243{
244 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
245 ARM_COMPUTE_ERROR_THROW_ON(validate(input->info(), crop_boxes->info(), box_ind->info(), output->info(), crop_box_ind, extrapolation_value));
246
247 _input = input;
248 _crop_boxes = crop_boxes;
249 _box_ind = box_ind;
250 _output = output;
251 _crop_box_ind = crop_box_ind;
252 _extrapolation_value = extrapolation_value;
253
Michalis Spyroua1b8bab2020-05-07 12:13:44 +0100254 switch(input->info()->data_type())
George Wort05398a92019-01-25 15:38:33 +0000255 {
Michalis Spyroua1b8bab2020-05-07 12:13:44 +0100256 case DataType::F32:
257 _in_bounds_crop_function = &in_bounds_crop_window<float>;
258 break;
George Wort05398a92019-01-25 15:38:33 +0000259#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
Michalis Spyroua1b8bab2020-05-07 12:13:44 +0100260 case DataType::F16:
261 _in_bounds_crop_function = &in_bounds_crop_window<float16_t>;
262 break;
George Wort05398a92019-01-25 15:38:33 +0000263#endif /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
Michalis Spyroua1b8bab2020-05-07 12:13:44 +0100264 case DataType::U32:
265 _in_bounds_crop_function = &in_bounds_crop_window<uint32_t>;
266 break;
267 case DataType::S32:
268 _in_bounds_crop_function = &in_bounds_crop_window<int32_t>;
269 break;
270 case DataType::U16:
271 _in_bounds_crop_function = &in_bounds_crop_window<uint16_t>;
272 break;
273 case DataType::S16:
274 _in_bounds_crop_function = &in_bounds_crop_window<int16_t>;
275 break;
Michele Di Giorgio17101332020-06-01 12:07:50 +0100276 case DataType::U8:
277 _in_bounds_crop_function = &in_bounds_crop_window<uint8_t>;
278 break;
Michalis Spyroua1b8bab2020-05-07 12:13:44 +0100279 default:
280 ARM_COMPUTE_ERROR("Datatype not supported");
George Wort05398a92019-01-25 15:38:33 +0000281 }
282}
283
284Status NECropKernel::validate(const ITensorInfo *input, const ITensorInfo *crop_boxes, const ITensorInfo *box_ind, const ITensorInfo *output, uint32_t crop_box_ind, float extrapolation_value)
285{
286 ARM_COMPUTE_UNUSED(extrapolation_value);
287 ARM_COMPUTE_RETURN_ERROR_ON_CPU_F16_UNSUPPORTED(input);
Michele Di Giorgio17101332020-06-01 12:07:50 +0100288 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::U8, DataType::U16, DataType::S16, DataType::F16, DataType::U32, DataType::S32, DataType::F32);
George Wort05398a92019-01-25 15:38:33 +0000289 ARM_COMPUTE_RETURN_ERROR_ON_DATA_LAYOUT_NOT_IN(input, DataLayout::NHWC);
290 ARM_COMPUTE_RETURN_ERROR_ON(input->tensor_shape().num_dimensions() > 4);
291 ARM_COMPUTE_RETURN_ERROR_ON(crop_boxes->tensor_shape()[0] != 4);
292 ARM_COMPUTE_RETURN_ERROR_ON(crop_boxes->tensor_shape()[1] != box_ind->tensor_shape()[0]);
293 ARM_COMPUTE_RETURN_ERROR_ON(crop_boxes->tensor_shape()[1] <= crop_box_ind);
294 ARM_COMPUTE_RETURN_ERROR_ON(box_ind->tensor_shape()[0] <= crop_box_ind);
295 if(output->total_size() > 0)
296 {
297 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_NOT_IN(output, DataType::F32);
298 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_LAYOUT(input, output);
299 ARM_COMPUTE_RETURN_ERROR_ON(output->num_dimensions() != 3);
300 ARM_COMPUTE_RETURN_ERROR_ON(output->has_padding());
301 }
302 return Status{};
303}
304
305void NECropKernel::configure_output_shape()
306{
307 // _crop_box_ind is used to index _crop_boxes and retrieve the appropriate crop box.
308 // The crop box is specified by normalized coordinates [y0, x0, y1, x1].
309 const float x0 = *reinterpret_cast<const float *>(_crop_boxes->ptr_to_element(Coordinates(1, _crop_box_ind)));
310 const float y0 = *reinterpret_cast<const float *>(_crop_boxes->ptr_to_element(Coordinates(0, _crop_box_ind)));
311 const float x1 = *reinterpret_cast<const float *>(_crop_boxes->ptr_to_element(Coordinates(3, _crop_box_ind)));
312 const float y1 = *reinterpret_cast<const float *>(_crop_boxes->ptr_to_element(Coordinates(2, _crop_box_ind)));
313 // The normalized coordiantes are scaled to retrieve the floating point image coordinates which are rounded to integers.
314 _start = Coordinates(std::floor(x0 * (_input->info()->tensor_shape()[1] - 1) + 0.5f),
315 std::floor(y0 * (_input->info()->tensor_shape()[2] - 1) + 0.5f));
316 _end = Coordinates(std::floor(x1 * (_input->info()->tensor_shape()[1] - 1) + 0.5f),
317 std::floor(y1 * (_input->info()->tensor_shape()[2] - 1) + 0.5f));
318 const TensorShape out_shape(_input->info()->tensor_shape()[0], abs(_end[0] - _start[0]) + 1, abs(_end[1] - _start[1]) + 1);
319 _output->info()->set_tensor_shape(out_shape);
320
George Wort05398a92019-01-25 15:38:33 +0000321 bool is_width_flipped = _end[0] < _start[0];
322 bool is_height_flipped = _end[1] < _start[1];
323 if(is_height_flipped)
324 {
325 _rows_out_of_bounds[0] = _start[1] >= static_cast<int32_t>(_input->info()->dimension(2)) ? std::min(static_cast<uint32_t>(_start[1] - _input->info()->dimension(2) + 1),
326 static_cast<uint32_t>(_output->info()->dimension(2))) :
327 0;
328 _rows_out_of_bounds[1] = _end[1] < 0 ? std::min(static_cast<uint32_t>(-_end[1]),
329 static_cast<uint32_t>(_output->info()->dimension(2))) :
330 0;
331 }
332 else
333 {
334 _rows_out_of_bounds[0] = _start[1] < 0 ? std::min(static_cast<uint32_t>(-_start[1]),
335 static_cast<uint32_t>(_output->info()->dimension(2))) :
336 0;
337 _rows_out_of_bounds[1] = _end[1] >= static_cast<int32_t>(_input->info()->dimension(2)) ? std::min(static_cast<uint32_t>(_end[1] - _input->info()->dimension(2) + 1),
338 static_cast<uint32_t>(_output->info()->dimension(2))) :
339 0;
340 }
341 if(is_width_flipped)
342 {
343 _cols_out_of_bounds[0] = _start[0] >= static_cast<int32_t>(_input->info()->dimension(1)) ? std::min(static_cast<uint32_t>(_start[0] - _input->info()->dimension(1) + 1),
344 static_cast<uint32_t>(_output->info()->dimension(1))) :
345 0;
346 _cols_out_of_bounds[1] = _end[0] < 0 ? std::min(static_cast<uint32_t>(-_end[0]),
347 static_cast<uint32_t>(_output->info()->dimension(1))) :
348 0;
349 }
350 else
351 {
352 _cols_out_of_bounds[0] = _start[0] < 0 ? std::min(static_cast<uint32_t>(-_start[0]),
353 static_cast<uint32_t>(_output->info()->dimension(1))) :
354 0;
355 _cols_out_of_bounds[1] = _end[0] >= static_cast<int32_t>(_input->info()->dimension(1)) ? std::min(static_cast<uint32_t>(_end[0] - _input->info()->dimension(1) + 1),
356 static_cast<uint32_t>(_output->info()->dimension(1))) :
357 0;
358 }
359
George Wort05398a92019-01-25 15:38:33 +0000360 INEKernel::configure(calculate_max_window(*_output->info()));
361}
362
363void NECropKernel::run(const Window &window, const ThreadInfo &info)
364{
365 ARM_COMPUTE_UNUSED(window, info);
366 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
367 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(INEKernel::window(), window);
368
369 ARM_COMPUTE_ERROR_ON(_input->info()->has_padding());
370 ARM_COMPUTE_ERROR_ON(_output->info()->has_padding());
371
372 uint32_t batch_index = *(reinterpret_cast<int32_t *>(_box_ind->ptr_to_element(Coordinates(_crop_box_ind))));
373 Coordinates input_offset(0, _end[0] < _start[0] ? _start[0] - _cols_out_of_bounds[0] : _start[0] + _cols_out_of_bounds[0],
374 _end[1] < _start[1] ? _start[1] - _rows_out_of_bounds[0] : _start[1] + _rows_out_of_bounds[0], batch_index);
Michalis Spyroua1b8bab2020-05-07 12:13:44 +0100375 execute_window(_input, _output, input_offset, _extrapolation_value, _rows_out_of_bounds, _cols_out_of_bounds, _in_bounds_crop_function, _end[1] < _start[1],
376 _cols_out_of_bounds[0] + _cols_out_of_bounds[1] < _output->info()->dimension(1), _cols_out_of_bounds[0] > 0, _cols_out_of_bounds[1] > 0,
377 _start[0] <= _end[0], _end[0] < _start[0]);
George Wort05398a92019-01-25 15:38:33 +0000378}
379} // namespace arm_compute