blob: 8baac18bf631a3dbbe8073904a63deb90cec755b [file] [log] [blame]
Manuel Bottini5209be52019-02-13 16:34:56 +00001/*
Matthew Bentham758b5ba2020-03-05 23:37:48 +00002 * Copyright (c) 2019-2020 ARM Limited.
Manuel Bottini5209be52019-02-13 16:34:56 +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/CL/kernels/CLGenerateProposalsLayerKernel.h"
25
26#include "arm_compute/core/AccessWindowStatic.h"
27#include "arm_compute/core/CL/CLHelpers.h"
28#include "arm_compute/core/CL/CLKernelLibrary.h"
29#include "arm_compute/core/CL/CLValidate.h"
30#include "arm_compute/core/CL/ICLArray.h"
31#include "arm_compute/core/CL/ICLTensor.h"
32#include "arm_compute/core/CL/OpenCL.h"
33#include "arm_compute/core/Helpers.h"
34#include "arm_compute/core/TensorInfo.h"
35#include "arm_compute/core/Utils.h"
36#include "arm_compute/core/Window.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000037#include "support/StringSupport.h"
Manuel Bottini5209be52019-02-13 16:34:56 +000038
39namespace arm_compute
40{
41namespace
42{
43Status validate_arguments(const ITensorInfo *anchors, const ITensorInfo *all_anchors, const ComputeAnchorsInfo &info)
44{
45 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(anchors, all_anchors);
Georgios Pinitas8f5802f2019-02-22 11:08:32 +000046 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(anchors);
Manuel Bottini5209be52019-02-13 16:34:56 +000047 ARM_COMPUTE_RETURN_ERROR_ON(anchors->dimension(0) != info.values_per_roi());
Michele Di Giorgio6b612f52019-09-05 12:30:22 +010048 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_NOT_IN(anchors, DataType::QSYMM16, DataType::F16, DataType::F32);
Manuel Bottini5209be52019-02-13 16:34:56 +000049 ARM_COMPUTE_RETURN_ERROR_ON(anchors->num_dimensions() > 2);
50 if(all_anchors->total_size() > 0)
51 {
52 size_t feature_height = info.feat_height();
53 size_t feature_width = info.feat_width();
54 size_t num_anchors = anchors->dimension(1);
55 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(all_anchors, anchors);
56 ARM_COMPUTE_RETURN_ERROR_ON(all_anchors->num_dimensions() > 2);
57 ARM_COMPUTE_RETURN_ERROR_ON(all_anchors->dimension(0) != info.values_per_roi());
58 ARM_COMPUTE_RETURN_ERROR_ON(all_anchors->dimension(1) != feature_height * feature_width * num_anchors);
Michele Di Giorgio6b612f52019-09-05 12:30:22 +010059
60 if(is_data_type_quantized(anchors->data_type()))
61 {
62 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_QUANTIZATION_INFO(anchors, all_anchors);
63 }
Manuel Bottini5209be52019-02-13 16:34:56 +000064 }
65 return Status{};
66}
67} // namespace
68
69CLComputeAllAnchorsKernel::CLComputeAllAnchorsKernel()
70 : _anchors(nullptr), _all_anchors(nullptr)
71{
72}
73
74void CLComputeAllAnchorsKernel::configure(const ICLTensor *anchors, ICLTensor *all_anchors, const ComputeAnchorsInfo &info)
75{
Manuel Bottini4c6bd512020-04-08 10:15:51 +010076 configure(CLKernelLibrary::get().get_compile_context(), anchors, all_anchors, info);
77}
78
Manuel Bottini679fc962020-04-21 16:08:53 +010079void CLComputeAllAnchorsKernel::configure(const CLCompileContext &compile_context, const ICLTensor *anchors, ICLTensor *all_anchors, const ComputeAnchorsInfo &info)
Manuel Bottini4c6bd512020-04-08 10:15:51 +010080{
Manuel Bottini5209be52019-02-13 16:34:56 +000081 ARM_COMPUTE_ERROR_ON_NULLPTR(anchors, all_anchors);
82 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(anchors->info(), all_anchors->info(), info));
83
84 // Metadata
85 const size_t num_anchors = anchors->info()->dimension(1);
86 const DataType data_type = anchors->info()->data_type();
87 const float width = info.feat_width();
88 const float height = info.feat_height();
89
90 // Initialize the output if empty
91 const TensorShape output_shape(info.values_per_roi(), width * height * num_anchors);
Michele Di Giorgio6b612f52019-09-05 12:30:22 +010092 auto_init_if_empty(*all_anchors->info(), TensorInfo(output_shape, 1, data_type, anchors->info()->quantization_info()));
Manuel Bottini5209be52019-02-13 16:34:56 +000093
94 // Set instance variables
95 _anchors = anchors;
96 _all_anchors = all_anchors;
97
Michele Di Giorgio6b612f52019-09-05 12:30:22 +010098 const bool is_quantized = is_data_type_quantized(anchors->info()->data_type());
99
Manuel Bottini5209be52019-02-13 16:34:56 +0000100 // Set build options
101 CLBuildOptions build_opts;
102 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(data_type));
103 build_opts.add_option("-DWIDTH=" + float_to_string_with_full_precision(width));
104 build_opts.add_option("-DHEIGHT=" + float_to_string_with_full_precision(height));
105 build_opts.add_option("-DSTRIDE=" + float_to_string_with_full_precision(1.f / info.spatial_scale()));
106 build_opts.add_option("-DNUM_ANCHORS=" + support::cpp11::to_string(num_anchors));
107 build_opts.add_option("-DNUM_ROI_FIELDS=" + support::cpp11::to_string(info.values_per_roi()));
108
Michele Di Giorgio6b612f52019-09-05 12:30:22 +0100109 if(is_quantized)
110 {
111 const UniformQuantizationInfo qinfo = anchors->info()->quantization_info().uniform();
112 build_opts.add_option("-DSCALE=" + float_to_string_with_full_precision(qinfo.scale));
113 build_opts.add_option("-DOFFSET=" + float_to_string_with_full_precision(qinfo.offset));
114 }
115
Manuel Bottini5209be52019-02-13 16:34:56 +0000116 // Create kernel
Michele Di Giorgio6b612f52019-09-05 12:30:22 +0100117 const std::string kernel_name = (is_quantized) ? "generate_proposals_compute_all_anchors_quantized" : "generate_proposals_compute_all_anchors";
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100118 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Manuel Bottini5209be52019-02-13 16:34:56 +0000119
120 // The tensor all_anchors can be interpreted as an array of structs (each structs has values_per_roi fields).
121 // This means we don't need to pad on the X dimension, as we know in advance how many fields
122 // compose the struct.
123 Window win = calculate_max_window(*all_anchors->info(), Steps(info.values_per_roi()));
124 ICLKernel::configure_internal(win);
125}
126
127Status CLComputeAllAnchorsKernel::validate(const ITensorInfo *anchors, const ITensorInfo *all_anchors, const ComputeAnchorsInfo &info)
128{
129 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(anchors, all_anchors, info));
130 return Status{};
131}
132
133void CLComputeAllAnchorsKernel::run(const Window &window, cl::CommandQueue &queue)
134{
135 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
136 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IKernel::window(), window);
137
138 // Collapse everything on the first dimension
139 Window collapsed = window.collapse(ICLKernel::window(), Window::DimX);
140
141 // Set arguments
142 unsigned int idx = 0;
143 add_1D_tensor_argument(idx, _anchors, collapsed);
144 add_1D_tensor_argument(idx, _all_anchors, collapsed);
145
146 // Note that we don't need to loop over the slices, as we are launching exactly
147 // as many threads as all the anchors generated
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100148 enqueue(queue, *this, collapsed, lws_hint());
Manuel Bottini5209be52019-02-13 16:34:56 +0000149}
150} // namespace arm_compute