blob: 5dd120277ae435e47ad8f984e746fce4157f9778 [file] [log] [blame]
giuros01cd96a262018-10-03 12:44:35 +01001/*
2 * Copyright (c) 2018 ARM Limited.
3 *
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/CL/functions/CLGenerateProposalsLayer.h"
25
26#include "arm_compute/core/CL/ICLTensor.h"
27#include "arm_compute/core/Types.h"
28#include "support/ToolchainSupport.h"
29
30namespace arm_compute
31{
32CLGenerateProposalsLayer::CLGenerateProposalsLayer(std::shared_ptr<IMemoryManager> memory_manager)
33 : _memory_group(std::move(memory_manager)),
34 _permute_deltas_kernel(),
35 _flatten_deltas_kernel(),
36 _permute_scores_kernel(),
37 _flatten_scores_kernel(),
38 _compute_anchors_kernel(),
39 _bounding_box_kernel(),
40 _memset_kernel(),
41 _padded_copy_kernel(),
42 _cpp_nms_kernel(),
43 _deltas_permuted(),
44 _deltas_flattened(),
45 _scores_permuted(),
46 _scores_flattened(),
47 _all_anchors(),
48 _all_proposals(),
49 _keeps_nms_unused(),
50 _classes_nms_unused(),
51 _proposals_4_roi_values(),
52 _num_valid_proposals(nullptr),
53 _scores_out(nullptr)
54{
55}
56
57void CLGenerateProposalsLayer::configure(const ICLTensor *scores, const ICLTensor *deltas, const ICLTensor *anchors, ICLTensor *proposals, ICLTensor *scores_out, ICLTensor *num_valid_proposals,
58 const GenerateProposalsInfo &info)
59{
Michele Di Giorgioc8df89f2018-11-16 10:02:26 +000060 ARM_COMPUTE_ERROR_ON_NULLPTR(scores, deltas, anchors, proposals, scores_out, num_valid_proposals);
61 ARM_COMPUTE_ERROR_THROW_ON(CLGenerateProposalsLayer::validate(scores->info(), deltas->info(), anchors->info(), proposals->info(), scores_out->info(), num_valid_proposals->info(), info));
62
giuros01cd96a262018-10-03 12:44:35 +010063 const DataType data_type = deltas->info()->data_type();
64 const int num_anchors = scores->info()->dimension(2);
65 const int feat_width = scores->info()->dimension(0);
66 const int feat_height = scores->info()->dimension(1);
67 const int total_num_anchors = num_anchors * feat_width * feat_height;
68 const int pre_nms_topN = info.pre_nms_topN();
69 const int post_nms_topN = info.post_nms_topN();
70 const size_t values_per_roi = info.values_per_roi();
71
72 // Compute all the anchors
73 _memory_group.manage(&_all_anchors);
74 _compute_anchors_kernel.configure(anchors, &_all_anchors, ComputeAnchorsInfo(feat_width, feat_height, info.spatial_scale()));
75
76 const TensorShape flatten_shape_deltas(values_per_roi, total_num_anchors);
77 _deltas_flattened.allocator()->init(TensorInfo(flatten_shape_deltas, 1, data_type));
78
79 // Permute and reshape deltas
80 _memory_group.manage(&_deltas_permuted);
81 _memory_group.manage(&_deltas_flattened);
82 _permute_deltas_kernel.configure(deltas, &_deltas_permuted, PermutationVector{ 2, 0, 1 });
83 _flatten_deltas_kernel.configure(&_deltas_permuted, &_deltas_flattened);
84 _deltas_permuted.allocator()->allocate();
85
86 const TensorShape flatten_shape_scores(1, total_num_anchors);
87 _scores_flattened.allocator()->init(TensorInfo(flatten_shape_scores, 1, data_type));
88
89 // Permute and reshape scores
90 _memory_group.manage(&_scores_permuted);
91 _memory_group.manage(&_scores_flattened);
92 _permute_scores_kernel.configure(scores, &_scores_permuted, PermutationVector{ 2, 0, 1 });
93 _flatten_scores_kernel.configure(&_scores_permuted, &_scores_flattened);
94 _scores_permuted.allocator()->allocate();
95
96 // Bounding box transform
97 _memory_group.manage(&_all_proposals);
98 BoundingBoxTransformInfo bbox_info(info.im_width(), info.im_height(), 1.f);
99 _bounding_box_kernel.configure(&_all_anchors, &_all_proposals, &_deltas_flattened, bbox_info);
100 _deltas_flattened.allocator()->allocate();
101 _all_anchors.allocator()->allocate();
102
103 // The original layer implementation first selects the best pre_nms_topN anchors (thus having a lightweight sort)
104 // that are then transformed by bbox_transform. The boxes generated are then fed into a non-sorting NMS operation.
105 // 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)
106 // and the filtering
107 const int scores_nms_size = std::min<int>(std::min<int>(post_nms_topN, pre_nms_topN), total_num_anchors);
108 const float min_size_scaled = info.min_size() * info.im_scale();
109 _memory_group.manage(&_classes_nms_unused);
110 _memory_group.manage(&_keeps_nms_unused);
111
112 // Note that NMS needs outputs preinitialized.
113 auto_init_if_empty(*scores_out->info(), TensorShape(scores_nms_size), 1, data_type);
114 auto_init_if_empty(*_proposals_4_roi_values.info(), TensorShape(values_per_roi, scores_nms_size), 1, data_type);
Michele Di Giorgioc8df89f2018-11-16 10:02:26 +0000115 auto_init_if_empty(*num_valid_proposals->info(), TensorShape(1), 1, DataType::U32);
giuros01cd96a262018-10-03 12:44:35 +0100116
117 // Initialize temporaries (unused) outputs
118 _classes_nms_unused.allocator()->init(TensorInfo(TensorShape(1, 1), 1, data_type));
119 _keeps_nms_unused.allocator()->init(*scores_out->info());
120
121 // Save the output (to map and unmap them at run)
122 _scores_out = scores_out;
123 _num_valid_proposals = num_valid_proposals;
124
125 _memory_group.manage(&_proposals_4_roi_values);
126 _cpp_nms_kernel.configure(&_scores_flattened, &_all_proposals, nullptr, scores_out, &_proposals_4_roi_values, &_classes_nms_unused, nullptr, &_keeps_nms_unused, num_valid_proposals,
127 BoxNMSLimitInfo(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()));
128 _keeps_nms_unused.allocator()->allocate();
129 _classes_nms_unused.allocator()->allocate();
130 _all_proposals.allocator()->allocate();
131 _scores_flattened.allocator()->allocate();
132
133 // Add the first column that represents the batch id. This will be all zeros, as we don't support multiple images
134 _padded_copy_kernel.configure(&_proposals_4_roi_values, proposals, PaddingList{ { 1, 0 } });
135 _proposals_4_roi_values.allocator()->allocate();
136
137 _memset_kernel.configure(proposals, PixelValue());
138}
139
140Status CLGenerateProposalsLayer::validate(const ITensorInfo *scores, const ITensorInfo *deltas, const ITensorInfo *anchors, const ITensorInfo *proposals, const ITensorInfo *scores_out,
141 const ITensorInfo *num_valid_proposals, const GenerateProposalsInfo &info)
142{
Michele Di Giorgioc8df89f2018-11-16 10:02:26 +0000143 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(scores, deltas, anchors, proposals, scores_out, num_valid_proposals);
144 ARM_COMPUTE_RETURN_ERROR_ON_DATA_LAYOUT_NOT_IN(scores, DataLayout::NCHW);
giuros01cd96a262018-10-03 12:44:35 +0100145
146 const int num_anchors = scores->dimension(2);
147 const int feat_width = scores->dimension(0);
148 const int feat_height = scores->dimension(1);
149 const int num_images = scores->dimension(3);
150 const int total_num_anchors = num_anchors * feat_width * feat_height;
151 const int values_per_roi = info.values_per_roi();
152
153 ARM_COMPUTE_RETURN_ERROR_ON(num_images > 1);
154
155 TensorInfo all_anchors_info(anchors->clone()->set_tensor_shape(TensorShape(values_per_roi, total_num_anchors)).set_is_resizable(true));
156 ARM_COMPUTE_RETURN_ON_ERROR(CLComputeAllAnchorsKernel::validate(anchors, &all_anchors_info, ComputeAnchorsInfo(feat_width, feat_height, info.spatial_scale())));
157
158 TensorInfo deltas_permuted_info = deltas->clone()->set_tensor_shape(TensorShape(values_per_roi * num_anchors, feat_width, feat_height)).set_is_resizable(true);
159 ARM_COMPUTE_RETURN_ON_ERROR(CLPermuteKernel::validate(deltas, &deltas_permuted_info, PermutationVector{ 2, 0, 1 }));
160
161 TensorInfo deltas_flattened_info(deltas->clone()->set_tensor_shape(TensorShape(values_per_roi, total_num_anchors)).set_is_resizable(true));
162 ARM_COMPUTE_RETURN_ON_ERROR(CLReshapeLayerKernel::validate(&deltas_permuted_info, &deltas_flattened_info));
163
164 TensorInfo scores_permuted_info = scores->clone()->set_tensor_shape(TensorShape(num_anchors, feat_width, feat_height)).set_is_resizable(true);
165 ARM_COMPUTE_RETURN_ON_ERROR(CLPermuteKernel::validate(scores, &scores_permuted_info, PermutationVector{ 2, 0, 1 }));
166
167 TensorInfo scores_flattened_info(deltas->clone()->set_tensor_shape(TensorShape(1, total_num_anchors)).set_is_resizable(true));
Michele Di Giorgioc8df89f2018-11-16 10:02:26 +0000168 TensorInfo proposals_4_roi_values(deltas->clone()->set_tensor_shape(TensorShape(values_per_roi, total_num_anchors)).set_is_resizable(true));
giuros01cd96a262018-10-03 12:44:35 +0100169
170 ARM_COMPUTE_RETURN_ON_ERROR(CLReshapeLayerKernel::validate(&scores_permuted_info, &scores_flattened_info));
171 ARM_COMPUTE_RETURN_ON_ERROR(CLBoundingBoxTransformKernel::validate(&all_anchors_info, &proposals_4_roi_values, &deltas_flattened_info, BoundingBoxTransformInfo(info.im_width(), info.im_height(),
172 1.f)));
173
174 ARM_COMPUTE_RETURN_ON_ERROR(CLCopyKernel::validate(&proposals_4_roi_values, proposals, PaddingList{ { 0, 1 } }));
175 ARM_COMPUTE_RETURN_ON_ERROR(CLMemsetKernel::validate(proposals, PixelValue()));
176
177 if(num_valid_proposals->total_size() > 0)
178 {
179 ARM_COMPUTE_RETURN_ERROR_ON(num_valid_proposals->num_dimensions() > 1);
180 ARM_COMPUTE_RETURN_ERROR_ON(num_valid_proposals->dimension(0) > 1);
Michele Di Giorgioc8df89f2018-11-16 10:02:26 +0000181 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(num_valid_proposals, 1, DataType::U32);
giuros01cd96a262018-10-03 12:44:35 +0100182 }
183
184 if(proposals->total_size() > 0)
185 {
186 ARM_COMPUTE_RETURN_ERROR_ON(proposals->num_dimensions() > 2);
187 ARM_COMPUTE_RETURN_ERROR_ON(proposals->dimension(0) != size_t(values_per_roi) + 1);
188 ARM_COMPUTE_RETURN_ERROR_ON(proposals->dimension(1) != size_t(total_num_anchors));
189 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(proposals, deltas);
190 }
191
192 if(scores_out->total_size() > 0)
193 {
194 ARM_COMPUTE_RETURN_ERROR_ON(scores_out->num_dimensions() > 1);
195 ARM_COMPUTE_RETURN_ERROR_ON(scores_out->dimension(0) != size_t(total_num_anchors));
196 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(scores_out, scores);
197 }
198
199 return Status{};
200}
201
202void CLGenerateProposalsLayer::run_cpp_nms_kernel()
203{
204 // Map inputs
205 _scores_flattened.map(true);
206 _all_proposals.map(true);
207
208 // Map outputs
209 _scores_out->map(CLScheduler::get().queue(), true);
210 _proposals_4_roi_values.map(CLScheduler::get().queue(), true);
211 _num_valid_proposals->map(CLScheduler::get().queue(), true);
212 _keeps_nms_unused.map(true);
213 _classes_nms_unused.map(true);
214
215 // Run nms
216 CPPScheduler::get().schedule(&_cpp_nms_kernel, Window::DimX);
217
218 // Unmap outputs
219 _keeps_nms_unused.unmap();
220 _classes_nms_unused.unmap();
221 _scores_out->unmap(CLScheduler::get().queue());
222 _proposals_4_roi_values.unmap(CLScheduler::get().queue());
223 _num_valid_proposals->unmap(CLScheduler::get().queue());
224
225 // Unmap inputs
226 _scores_flattened.unmap();
227 _all_proposals.unmap();
228}
229
230void CLGenerateProposalsLayer::run()
231{
232 // Acquire all the temporaries
233 _memory_group.acquire();
234
235 // Compute all the anchors
236 CLScheduler::get().enqueue(_compute_anchors_kernel, false);
237
238 // Transpose and reshape the inputs
239 CLScheduler::get().enqueue(_permute_deltas_kernel, false);
240 CLScheduler::get().enqueue(_flatten_deltas_kernel, false);
241 CLScheduler::get().enqueue(_permute_scores_kernel, false);
242 CLScheduler::get().enqueue(_flatten_scores_kernel, false);
243
244 // Build the boxes
245 CLScheduler::get().enqueue(_bounding_box_kernel, false);
246 // Non maxima suppression
247 run_cpp_nms_kernel();
248 // Add dummy batch indexes
249 CLScheduler::get().enqueue(_memset_kernel, true);
250 CLScheduler::get().enqueue(_padded_copy_kernel, true);
251
252 // Release all the temporaries
253 _memory_group.release();
254}
255} // namespace arm_compute