blob: 3d5377892a42dc8bf0cb982836c2c005d745b9ec [file] [log] [blame]
Pablo Telloc9564cb2019-09-13 10:20:25 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2019-2020 Arm Limited.
Pablo Telloc9564cb2019-09-13 10:20: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/runtime/NEON/functions/NEGenerateProposalsLayer.h"
25
26#include "arm_compute/core/Types.h"
27#include "arm_compute/runtime/NEON/NEScheduler.h"
Pablo Telloc9564cb2019-09-13 10:20:25 +010028
29namespace arm_compute
30{
31NEGenerateProposalsLayer::NEGenerateProposalsLayer(std::shared_ptr<IMemoryManager> memory_manager)
Michele Di Giorgio58c71ef2019-09-30 15:03:21 +010032 : _memory_group(memory_manager),
Pablo Telloc9564cb2019-09-13 10:20:25 +010033 _permute_deltas_kernel(),
Michalis Spyroubcd23522020-05-21 15:02:36 +010034 _flatten_deltas(),
Pablo Telloc9564cb2019-09-13 10:20:25 +010035 _permute_scores_kernel(),
Michalis Spyroubcd23522020-05-21 15:02:36 +010036 _flatten_scores(),
Pablo Telloc9564cb2019-09-13 10:20:25 +010037 _compute_anchors_kernel(),
38 _bounding_box_kernel(),
Michele Di Giorgio4c268b92019-09-20 14:01:48 +010039 _pad_kernel(),
Michele Di Giorgio58c71ef2019-09-30 15:03:21 +010040 _dequantize_anchors(),
41 _dequantize_deltas(),
42 _quantize_all_proposals(),
43 _cpp_nms(memory_manager),
Pablo Telloc9564cb2019-09-13 10:20:25 +010044 _is_nhwc(false),
Michele Di Giorgio58c71ef2019-09-30 15:03:21 +010045 _is_qasymm8(false),
Pablo Telloc9564cb2019-09-13 10:20:25 +010046 _deltas_permuted(),
47 _deltas_flattened(),
Michele Di Giorgio58c71ef2019-09-30 15:03:21 +010048 _deltas_flattened_f32(),
Pablo Telloc9564cb2019-09-13 10:20:25 +010049 _scores_permuted(),
50 _scores_flattened(),
51 _all_anchors(),
Michele Di Giorgio58c71ef2019-09-30 15:03:21 +010052 _all_anchors_f32(),
Pablo Telloc9564cb2019-09-13 10:20:25 +010053 _all_proposals(),
Michele Di Giorgio58c71ef2019-09-30 15:03:21 +010054 _all_proposals_quantized(),
Pablo Telloc9564cb2019-09-13 10:20:25 +010055 _keeps_nms_unused(),
56 _classes_nms_unused(),
57 _proposals_4_roi_values(),
Michele Di Giorgio58c71ef2019-09-30 15:03:21 +010058 _all_proposals_to_use(nullptr),
Pablo Telloc9564cb2019-09-13 10:20:25 +010059 _num_valid_proposals(nullptr),
60 _scores_out(nullptr)
61{
62}
63
64void NEGenerateProposalsLayer::configure(const ITensor *scores, const ITensor *deltas, const ITensor *anchors, ITensor *proposals, ITensor *scores_out, ITensor *num_valid_proposals,
65 const GenerateProposalsInfo &info)
66{
67 ARM_COMPUTE_ERROR_ON_NULLPTR(scores, deltas, anchors, proposals, scores_out, num_valid_proposals);
68 ARM_COMPUTE_ERROR_THROW_ON(NEGenerateProposalsLayer::validate(scores->info(), deltas->info(), anchors->info(), proposals->info(), scores_out->info(), num_valid_proposals->info(), info));
69
Michele Di Giorgio58c71ef2019-09-30 15:03:21 +010070 _is_nhwc = scores->info()->data_layout() == DataLayout::NHWC;
71 const DataType scores_data_type = scores->info()->data_type();
72 _is_qasymm8 = scores_data_type == DataType::QASYMM8;
73 const int num_anchors = scores->info()->dimension(get_data_layout_dimension_index(scores->info()->data_layout(), DataLayoutDimension::CHANNEL));
74 const int feat_width = scores->info()->dimension(get_data_layout_dimension_index(scores->info()->data_layout(), DataLayoutDimension::WIDTH));
75 const int feat_height = scores->info()->dimension(get_data_layout_dimension_index(scores->info()->data_layout(), DataLayoutDimension::HEIGHT));
76 const int total_num_anchors = num_anchors * feat_width * feat_height;
77 const int pre_nms_topN = info.pre_nms_topN();
78 const int post_nms_topN = info.post_nms_topN();
79 const size_t values_per_roi = info.values_per_roi();
80
81 const QuantizationInfo scores_qinfo = scores->info()->quantization_info();
82 const DataType rois_data_type = (_is_qasymm8) ? DataType::QASYMM16 : scores_data_type;
83 const QuantizationInfo rois_qinfo = (_is_qasymm8) ? QuantizationInfo(0.125f, 0) : scores->info()->quantization_info();
Pablo Telloc9564cb2019-09-13 10:20:25 +010084
85 // Compute all the anchors
86 _memory_group.manage(&_all_anchors);
87 _compute_anchors_kernel.configure(anchors, &_all_anchors, ComputeAnchorsInfo(feat_width, feat_height, info.spatial_scale()));
88
89 const TensorShape flatten_shape_deltas(values_per_roi, total_num_anchors);
Michele Di Giorgio58c71ef2019-09-30 15:03:21 +010090 _deltas_flattened.allocator()->init(TensorInfo(flatten_shape_deltas, 1, scores_data_type, deltas->info()->quantization_info()));
Pablo Telloc9564cb2019-09-13 10:20:25 +010091
92 // Permute and reshape deltas
Michele Di Giorgio58c71ef2019-09-30 15:03:21 +010093 _memory_group.manage(&_deltas_flattened);
Pablo Telloc9564cb2019-09-13 10:20:25 +010094 if(!_is_nhwc)
95 {
96 _memory_group.manage(&_deltas_permuted);
97 _permute_deltas_kernel.configure(deltas, &_deltas_permuted, PermutationVector{ 2, 0, 1 });
Michalis Spyroubcd23522020-05-21 15:02:36 +010098 _flatten_deltas.configure(&_deltas_permuted, &_deltas_flattened);
Pablo Telloc9564cb2019-09-13 10:20:25 +010099 _deltas_permuted.allocator()->allocate();
100 }
101 else
102 {
Michalis Spyroubcd23522020-05-21 15:02:36 +0100103 _flatten_deltas.configure(deltas, &_deltas_flattened);
Pablo Telloc9564cb2019-09-13 10:20:25 +0100104 }
105
106 const TensorShape flatten_shape_scores(1, total_num_anchors);
Michele Di Giorgio58c71ef2019-09-30 15:03:21 +0100107 _scores_flattened.allocator()->init(TensorInfo(flatten_shape_scores, 1, scores_data_type, scores_qinfo));
108
Pablo Telloc9564cb2019-09-13 10:20:25 +0100109 // Permute and reshape scores
Michele Di Giorgio58c71ef2019-09-30 15:03:21 +0100110 _memory_group.manage(&_scores_flattened);
Pablo Telloc9564cb2019-09-13 10:20:25 +0100111 if(!_is_nhwc)
112 {
113 _memory_group.manage(&_scores_permuted);
114 _permute_scores_kernel.configure(scores, &_scores_permuted, PermutationVector{ 2, 0, 1 });
Michalis Spyroubcd23522020-05-21 15:02:36 +0100115 _flatten_scores.configure(&_scores_permuted, &_scores_flattened);
Pablo Telloc9564cb2019-09-13 10:20:25 +0100116 _scores_permuted.allocator()->allocate();
117 }
118 else
119 {
Michalis Spyroubcd23522020-05-21 15:02:36 +0100120 _flatten_scores.configure(scores, &_scores_flattened);
Pablo Telloc9564cb2019-09-13 10:20:25 +0100121 }
122
Michele Di Giorgio58c71ef2019-09-30 15:03:21 +0100123 Tensor *anchors_to_use = &_all_anchors;
124 Tensor *deltas_to_use = &_deltas_flattened;
125 if(_is_qasymm8)
126 {
127 _all_anchors_f32.allocator()->init(TensorInfo(_all_anchors.info()->tensor_shape(), 1, DataType::F32));
128 _deltas_flattened_f32.allocator()->init(TensorInfo(_deltas_flattened.info()->tensor_shape(), 1, DataType::F32));
129 _memory_group.manage(&_all_anchors_f32);
130 _memory_group.manage(&_deltas_flattened_f32);
131 // Dequantize anchors to float
132 _dequantize_anchors.configure(&_all_anchors, &_all_anchors_f32);
133 _all_anchors.allocator()->allocate();
134 anchors_to_use = &_all_anchors_f32;
135 // Dequantize deltas to float
136 _dequantize_deltas.configure(&_deltas_flattened, &_deltas_flattened_f32);
137 _deltas_flattened.allocator()->allocate();
138 deltas_to_use = &_deltas_flattened_f32;
139 }
Pablo Telloc9564cb2019-09-13 10:20:25 +0100140 // Bounding box transform
141 _memory_group.manage(&_all_proposals);
142 BoundingBoxTransformInfo bbox_info(info.im_width(), info.im_height(), 1.f);
Michele Di Giorgio58c71ef2019-09-30 15:03:21 +0100143 _bounding_box_kernel.configure(anchors_to_use, &_all_proposals, deltas_to_use, bbox_info);
144 deltas_to_use->allocator()->allocate();
145 anchors_to_use->allocator()->allocate();
Pablo Telloc9564cb2019-09-13 10:20:25 +0100146
Michele Di Giorgio58c71ef2019-09-30 15:03:21 +0100147 _all_proposals_to_use = &_all_proposals;
148 if(_is_qasymm8)
149 {
150 _memory_group.manage(&_all_proposals_quantized);
151 // Requantize all_proposals to QASYMM16 with 0.125 scale and 0 offset
152 _all_proposals_quantized.allocator()->init(TensorInfo(_all_proposals.info()->tensor_shape(), 1, DataType::QASYMM16, QuantizationInfo(0.125f, 0)));
153 _quantize_all_proposals.configure(&_all_proposals, &_all_proposals_quantized);
154 _all_proposals.allocator()->allocate();
155 _all_proposals_to_use = &_all_proposals_quantized;
156 }
Pablo Telloc9564cb2019-09-13 10:20:25 +0100157 // The original layer implementation first selects the best pre_nms_topN anchors (thus having a lightweight sort)
158 // that are then transformed by bbox_transform. The boxes generated are then fed into a non-sorting NMS operation.
159 // Since we are reusing the NMS layer and we don't implement any CL/sort, we let NMS do the sorting (of all the input)
160 // and the filtering
161 const int scores_nms_size = std::min<int>(std::min<int>(post_nms_topN, pre_nms_topN), total_num_anchors);
162 const float min_size_scaled = info.min_size() * info.im_scale();
163 _memory_group.manage(&_classes_nms_unused);
164 _memory_group.manage(&_keeps_nms_unused);
165
166 // Note that NMS needs outputs preinitialized.
Michele Di Giorgio58c71ef2019-09-30 15:03:21 +0100167 auto_init_if_empty(*scores_out->info(), TensorShape(scores_nms_size), 1, scores_data_type, scores_qinfo);
168 auto_init_if_empty(*_proposals_4_roi_values.info(), TensorShape(values_per_roi, scores_nms_size), 1, rois_data_type, rois_qinfo);
169 auto_init_if_empty(*num_valid_proposals->info(), TensorShape(1), 1, DataType::U32);
Pablo Telloc9564cb2019-09-13 10:20:25 +0100170
171 // Initialize temporaries (unused) outputs
Michele Di Giorgio58c71ef2019-09-30 15:03:21 +0100172 _classes_nms_unused.allocator()->init(TensorInfo(TensorShape(scores_nms_size), 1, scores_data_type, scores_qinfo));
Pablo Telloc9564cb2019-09-13 10:20:25 +0100173 _keeps_nms_unused.allocator()->init(*scores_out->info());
174
175 // Save the output (to map and unmap them at run)
176 _scores_out = scores_out;
177 _num_valid_proposals = num_valid_proposals;
178
179 _memory_group.manage(&_proposals_4_roi_values);
180
181 const BoxNMSLimitInfo box_nms_info(0.0f, info.nms_thres(), scores_nms_size, false, NMSType::LINEAR, 0.5f, 0.001f, true, min_size_scaled, info.im_width(), info.im_height());
Michele Di Giorgio58c71ef2019-09-30 15:03:21 +0100182 _cpp_nms.configure(&_scores_flattened /*scores_in*/,
183 _all_proposals_to_use /*boxes_in,*/,
184 nullptr /* batch_splits_in*/,
185 scores_out /* scores_out*/,
186 &_proposals_4_roi_values /*boxes_out*/,
187 &_classes_nms_unused /*classes*/,
188 nullptr /*batch_splits_out*/,
189 &_keeps_nms_unused /*keeps*/,
190 num_valid_proposals /* keeps_size*/,
191 box_nms_info);
Pablo Telloc9564cb2019-09-13 10:20:25 +0100192
193 _keeps_nms_unused.allocator()->allocate();
194 _classes_nms_unused.allocator()->allocate();
Michele Di Giorgio58c71ef2019-09-30 15:03:21 +0100195 _all_proposals_to_use->allocator()->allocate();
Pablo Telloc9564cb2019-09-13 10:20:25 +0100196 _scores_flattened.allocator()->allocate();
197
198 // Add the first column that represents the batch id. This will be all zeros, as we don't support multiple images
Michele Di Giorgio4c268b92019-09-20 14:01:48 +0100199 _pad_kernel.configure(&_proposals_4_roi_values, proposals, PaddingList{ { 1, 0 } });
Pablo Telloc9564cb2019-09-13 10:20:25 +0100200 _proposals_4_roi_values.allocator()->allocate();
Pablo Telloc9564cb2019-09-13 10:20:25 +0100201}
202
203Status NEGenerateProposalsLayer::validate(const ITensorInfo *scores, const ITensorInfo *deltas, const ITensorInfo *anchors, const ITensorInfo *proposals, const ITensorInfo *scores_out,
204 const ITensorInfo *num_valid_proposals, const GenerateProposalsInfo &info)
205{
206 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(scores, deltas, anchors, proposals, scores_out, num_valid_proposals);
Michele Di Giorgio58c71ef2019-09-30 15:03:21 +0100207 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(scores, 1, DataType::QASYMM8, DataType::F16, DataType::F32);
Pablo Telloc9564cb2019-09-13 10:20:25 +0100208 ARM_COMPUTE_RETURN_ERROR_ON_DATA_LAYOUT_NOT_IN(scores, DataLayout::NCHW, DataLayout::NHWC);
209 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_LAYOUT(scores, deltas);
Michele Di Giorgio58c71ef2019-09-30 15:03:21 +0100210 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(scores, deltas);
Pablo Telloc9564cb2019-09-13 10:20:25 +0100211
212 const int num_anchors = scores->dimension(get_data_layout_dimension_index(scores->data_layout(), DataLayoutDimension::CHANNEL));
213 const int feat_width = scores->dimension(get_data_layout_dimension_index(scores->data_layout(), DataLayoutDimension::WIDTH));
214 const int feat_height = scores->dimension(get_data_layout_dimension_index(scores->data_layout(), DataLayoutDimension::HEIGHT));
215 const int num_images = scores->dimension(3);
216 const int total_num_anchors = num_anchors * feat_width * feat_height;
217 const int values_per_roi = info.values_per_roi();
218
Michele Di Giorgio58c71ef2019-09-30 15:03:21 +0100219 const bool is_qasymm8 = scores->data_type() == DataType::QASYMM8;
220
Pablo Telloc9564cb2019-09-13 10:20:25 +0100221 ARM_COMPUTE_RETURN_ERROR_ON(num_images > 1);
222
Michele Di Giorgio58c71ef2019-09-30 15:03:21 +0100223 if(is_qasymm8)
224 {
225 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(anchors, 1, DataType::QSYMM16);
226 const UniformQuantizationInfo anchors_qinfo = anchors->quantization_info().uniform();
227 ARM_COMPUTE_RETURN_ERROR_ON(anchors_qinfo.scale != 0.125f);
228 }
229
Pablo Telloc9564cb2019-09-13 10:20:25 +0100230 TensorInfo all_anchors_info(anchors->clone()->set_tensor_shape(TensorShape(values_per_roi, total_num_anchors)).set_is_resizable(true));
231 ARM_COMPUTE_RETURN_ON_ERROR(NEComputeAllAnchorsKernel::validate(anchors, &all_anchors_info, ComputeAnchorsInfo(feat_width, feat_height, info.spatial_scale())));
232
233 TensorInfo deltas_permuted_info = deltas->clone()->set_tensor_shape(TensorShape(values_per_roi * num_anchors, feat_width, feat_height)).set_is_resizable(true);
234 TensorInfo scores_permuted_info = scores->clone()->set_tensor_shape(TensorShape(num_anchors, feat_width, feat_height)).set_is_resizable(true);
235 if(scores->data_layout() == DataLayout::NHWC)
236 {
237 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(deltas, &deltas_permuted_info);
238 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(scores, &scores_permuted_info);
239 }
240 else
241 {
242 ARM_COMPUTE_RETURN_ON_ERROR(NEPermuteKernel::validate(deltas, &deltas_permuted_info, PermutationVector{ 2, 0, 1 }));
243 ARM_COMPUTE_RETURN_ON_ERROR(NEPermuteKernel::validate(scores, &scores_permuted_info, PermutationVector{ 2, 0, 1 }));
244 }
245
246 TensorInfo deltas_flattened_info(deltas->clone()->set_tensor_shape(TensorShape(values_per_roi, total_num_anchors)).set_is_resizable(true));
Michalis Spyroubcd23522020-05-21 15:02:36 +0100247 ARM_COMPUTE_RETURN_ON_ERROR(NEReshapeLayer::validate(&deltas_permuted_info, &deltas_flattened_info));
Pablo Telloc9564cb2019-09-13 10:20:25 +0100248
249 TensorInfo scores_flattened_info(scores->clone()->set_tensor_shape(TensorShape(1, total_num_anchors)).set_is_resizable(true));
250 TensorInfo proposals_4_roi_values(deltas->clone()->set_tensor_shape(TensorShape(values_per_roi, total_num_anchors)).set_is_resizable(true));
251
Michalis Spyroubcd23522020-05-21 15:02:36 +0100252 ARM_COMPUTE_RETURN_ON_ERROR(NEReshapeLayer::validate(&scores_permuted_info, &scores_flattened_info));
Pablo Telloc9564cb2019-09-13 10:20:25 +0100253
Michele Di Giorgio58c71ef2019-09-30 15:03:21 +0100254 TensorInfo *proposals_4_roi_values_to_use = &proposals_4_roi_values;
255 TensorInfo proposals_4_roi_values_quantized(deltas->clone()->set_tensor_shape(TensorShape(values_per_roi, total_num_anchors)).set_is_resizable(true));
256 proposals_4_roi_values_quantized.set_data_type(DataType::QASYMM16).set_quantization_info(QuantizationInfo(0.125f, 0));
257 if(is_qasymm8)
258 {
259 TensorInfo all_anchors_f32_info(anchors->clone()->set_tensor_shape(TensorShape(values_per_roi, total_num_anchors)).set_is_resizable(true).set_data_type(DataType::F32));
260 ARM_COMPUTE_RETURN_ON_ERROR(NEDequantizationLayerKernel::validate(&all_anchors_info, &all_anchors_f32_info));
261
262 TensorInfo deltas_flattened_f32_info(deltas->clone()->set_tensor_shape(TensorShape(values_per_roi, total_num_anchors)).set_is_resizable(true).set_data_type(DataType::F32));
263 ARM_COMPUTE_RETURN_ON_ERROR(NEDequantizationLayerKernel::validate(&deltas_flattened_info, &deltas_flattened_f32_info));
264
265 TensorInfo proposals_4_roi_values_f32(deltas->clone()->set_tensor_shape(TensorShape(values_per_roi, total_num_anchors)).set_is_resizable(true).set_data_type(DataType::F32));
266 ARM_COMPUTE_RETURN_ON_ERROR(NEBoundingBoxTransformKernel::validate(&all_anchors_f32_info, &proposals_4_roi_values_f32, &deltas_flattened_f32_info,
267 BoundingBoxTransformInfo(info.im_width(), info.im_height(), 1.f)));
268
269 ARM_COMPUTE_RETURN_ON_ERROR(NEQuantizationLayerKernel::validate(&proposals_4_roi_values_f32, &proposals_4_roi_values_quantized));
270 proposals_4_roi_values_to_use = &proposals_4_roi_values_quantized;
271 }
272 else
273 {
274 ARM_COMPUTE_RETURN_ON_ERROR(NEBoundingBoxTransformKernel::validate(&all_anchors_info, &proposals_4_roi_values, &deltas_flattened_info,
275 BoundingBoxTransformInfo(info.im_width(), info.im_height(), 1.f)));
276 }
277
278 ARM_COMPUTE_RETURN_ON_ERROR(NEPadLayerKernel::validate(proposals_4_roi_values_to_use, proposals, PaddingList{ { 1, 0 } }));
Pablo Telloc9564cb2019-09-13 10:20:25 +0100279
280 if(num_valid_proposals->total_size() > 0)
281 {
282 ARM_COMPUTE_RETURN_ERROR_ON(num_valid_proposals->num_dimensions() > 1);
283 ARM_COMPUTE_RETURN_ERROR_ON(num_valid_proposals->dimension(0) > 1);
284 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(num_valid_proposals, 1, DataType::U32);
285 }
286
287 if(proposals->total_size() > 0)
288 {
289 ARM_COMPUTE_RETURN_ERROR_ON(proposals->num_dimensions() > 2);
290 ARM_COMPUTE_RETURN_ERROR_ON(proposals->dimension(0) != size_t(values_per_roi) + 1);
291 ARM_COMPUTE_RETURN_ERROR_ON(proposals->dimension(1) != size_t(total_num_anchors));
Michele Di Giorgio58c71ef2019-09-30 15:03:21 +0100292 if(is_qasymm8)
293 {
294 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(proposals, 1, DataType::QASYMM16);
295 const UniformQuantizationInfo proposals_qinfo = proposals->quantization_info().uniform();
296 ARM_COMPUTE_RETURN_ERROR_ON(proposals_qinfo.scale != 0.125f);
297 ARM_COMPUTE_RETURN_ERROR_ON(proposals_qinfo.offset != 0);
298 }
299 else
300 {
301 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(proposals, scores);
302 }
Pablo Telloc9564cb2019-09-13 10:20:25 +0100303 }
304
305 if(scores_out->total_size() > 0)
306 {
307 ARM_COMPUTE_RETURN_ERROR_ON(scores_out->num_dimensions() > 1);
308 ARM_COMPUTE_RETURN_ERROR_ON(scores_out->dimension(0) != size_t(total_num_anchors));
309 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(scores_out, scores);
310 }
311
312 return Status{};
313}
314
315void NEGenerateProposalsLayer::run()
316{
317 // Acquire all the temporaries
318 MemoryGroupResourceScope scope_mg(_memory_group);
319
320 // Compute all the anchors
321 NEScheduler::get().schedule(&_compute_anchors_kernel, Window::DimY);
322
323 // Transpose and reshape the inputs
324 if(!_is_nhwc)
325 {
326 NEScheduler::get().schedule(&_permute_deltas_kernel, Window::DimY);
327 NEScheduler::get().schedule(&_permute_scores_kernel, Window::DimY);
328 }
329
Michalis Spyroubcd23522020-05-21 15:02:36 +0100330 _flatten_deltas.run();
331 _flatten_scores.run();
Pablo Telloc9564cb2019-09-13 10:20:25 +0100332
Michele Di Giorgio58c71ef2019-09-30 15:03:21 +0100333 if(_is_qasymm8)
334 {
335 NEScheduler::get().schedule(&_dequantize_anchors, Window::DimY);
336 NEScheduler::get().schedule(&_dequantize_deltas, Window::DimY);
337 }
338
Pablo Telloc9564cb2019-09-13 10:20:25 +0100339 // Build the boxes
340 NEScheduler::get().schedule(&_bounding_box_kernel, Window::DimY);
341
Michele Di Giorgio58c71ef2019-09-30 15:03:21 +0100342 if(_is_qasymm8)
343 {
344 NEScheduler::get().schedule(&_quantize_all_proposals, Window::DimY);
345 }
346
Pablo Telloc9564cb2019-09-13 10:20:25 +0100347 // Non maxima suppression
Michele Di Giorgio58c71ef2019-09-30 15:03:21 +0100348 _cpp_nms.run();
Pablo Telloc9564cb2019-09-13 10:20:25 +0100349
350 // Add dummy batch indexes
Michele Di Giorgio4c268b92019-09-20 14:01:48 +0100351 NEScheduler::get().schedule(&_pad_kernel, Window::DimY);
Pablo Telloc9564cb2019-09-13 10:20:25 +0100352}
353} // namespace arm_compute