xref: /aosp_15_r20/external/ComputeLibrary/src/runtime/CL/functions/CLArgMinMaxLayer.cpp (revision c217d954acce2dbc11938adb493fc0abd69584f3)
1*c217d954SCole Faust /*
2*c217d954SCole Faust  * Copyright (c) 2018-2021 Arm Limited.
3*c217d954SCole Faust  *
4*c217d954SCole Faust  * SPDX-License-Identifier: MIT
5*c217d954SCole Faust  *
6*c217d954SCole Faust  * Permission is hereby granted, free of charge, to any person obtaining a copy
7*c217d954SCole Faust  * of this software and associated documentation files (the "Software"), to
8*c217d954SCole Faust  * deal in the Software without restriction, including without limitation the
9*c217d954SCole Faust  * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10*c217d954SCole Faust  * sell copies of the Software, and to permit persons to whom the Software is
11*c217d954SCole Faust  * furnished to do so, subject to the following conditions:
12*c217d954SCole Faust  *
13*c217d954SCole Faust  * The above copyright notice and this permission notice shall be included in all
14*c217d954SCole Faust  * copies or substantial portions of the Software.
15*c217d954SCole Faust  *
16*c217d954SCole Faust  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17*c217d954SCole Faust  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18*c217d954SCole Faust  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19*c217d954SCole Faust  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20*c217d954SCole Faust  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21*c217d954SCole Faust  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22*c217d954SCole Faust  * SOFTWARE.
23*c217d954SCole Faust  */
24*c217d954SCole Faust 
25*c217d954SCole Faust #include "arm_compute/runtime/CL/functions/CLArgMinMaxLayer.h"
26*c217d954SCole Faust 
27*c217d954SCole Faust #include "arm_compute/core/Error.h"
28*c217d954SCole Faust #include "arm_compute/core/TensorInfo.h"
29*c217d954SCole Faust #include "arm_compute/core/Types.h"
30*c217d954SCole Faust #include "arm_compute/core/Validate.h"
31*c217d954SCole Faust #include "arm_compute/core/utils/misc/ShapeCalculator.h"
32*c217d954SCole Faust #include "src/core/CL/CLValidate.h"
33*c217d954SCole Faust #include "src/core/CL/kernels/CLArgMinMaxLayerKernel.h"
34*c217d954SCole Faust #include "src/core/helpers/AutoConfiguration.h"
35*c217d954SCole Faust #include "src/runtime/Utils.h"
36*c217d954SCole Faust 
37*c217d954SCole Faust #include "src/common/utils/Log.h"
38*c217d954SCole Faust 
39*c217d954SCole Faust namespace arm_compute
40*c217d954SCole Faust {
CLArgMinMaxLayer(std::shared_ptr<IMemoryManager> memory_manager)41*c217d954SCole Faust CLArgMinMaxLayer::CLArgMinMaxLayer(std::shared_ptr<IMemoryManager> memory_manager)
42*c217d954SCole Faust     : _memory_group(std::move(memory_manager)), _results_vector(), _not_reshaped_output(), _reduction_kernels_vector(), _reshape(), _num_of_stages(), _reduction_axis()
43*c217d954SCole Faust {
44*c217d954SCole Faust }
45*c217d954SCole Faust 
46*c217d954SCole Faust CLArgMinMaxLayer::~CLArgMinMaxLayer() = default;
47*c217d954SCole Faust 
validate(const ITensorInfo * input,int axis,const ITensorInfo * output,const ReductionOperation & op)48*c217d954SCole Faust Status CLArgMinMaxLayer::validate(const ITensorInfo *input, int axis, const ITensorInfo *output, const ReductionOperation &op)
49*c217d954SCole Faust {
50*c217d954SCole Faust     ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
51*c217d954SCole Faust     ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input);
52*c217d954SCole Faust     ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::QASYMM8, DataType::QASYMM8_SIGNED, DataType::S32, DataType::F16, DataType::F32);
53*c217d954SCole Faust     ARM_COMPUTE_RETURN_ERROR_ON_MSG(op != ReductionOperation::ARG_IDX_MAX && op != ReductionOperation::ARG_IDX_MIN, "Invalid reduction operation");
54*c217d954SCole Faust     ARM_COMPUTE_RETURN_ERROR_ON_MSG(axis >= static_cast<int>(TensorShape::num_max_dimensions), "Reduction axis greater than max number of dimensions");
55*c217d954SCole Faust     ARM_COMPUTE_RETURN_ERROR_ON_MSG(axis > 3, "Unsupported reduction axis");
56*c217d954SCole Faust     const unsigned int num_of_stages = utils::calculate_number_of_stages_only_x_axis(input->dimension(0), axis);
57*c217d954SCole Faust 
58*c217d954SCole Faust     DataType   output_data_type = DataType::S32;
59*c217d954SCole Faust     TensorInfo not_reshaped_output;
60*c217d954SCole Faust     const auto input_num_channles = input->num_channels();
61*c217d954SCole Faust     const auto input_qinfo        = input->quantization_info();
62*c217d954SCole Faust 
63*c217d954SCole Faust     if(output->total_size() != 0)
64*c217d954SCole Faust     {
65*c217d954SCole Faust         output_data_type                       = output->data_type();
66*c217d954SCole Faust         const TensorInfo expected_output_shape = output->clone()->set_tensor_shape(arm_compute::misc::shape_calculator::compute_reduced_shape(input->tensor_shape(), axis, false));
67*c217d954SCole Faust         ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(&expected_output_shape, output);
68*c217d954SCole Faust     }
69*c217d954SCole Faust 
70*c217d954SCole Faust     auto shape_before_reshape = input->tensor_shape();
71*c217d954SCole Faust     shape_before_reshape.set(axis, 1);
72*c217d954SCole Faust     auto initialize_tensorinfo = [](TensorInfo & ti, TensorShape shape, DataType data_type, int num_channels, QuantizationInfo qinfo)
73*c217d954SCole Faust     {
74*c217d954SCole Faust         ti.set_data_type(data_type).set_tensor_shape(shape).set_num_channels(num_channels).set_quantization_info(qinfo);
75*c217d954SCole Faust     };
76*c217d954SCole Faust 
77*c217d954SCole Faust     initialize_tensorinfo(not_reshaped_output, shape_before_reshape, output_data_type, input_num_channles, input_qinfo);
78*c217d954SCole Faust 
79*c217d954SCole Faust     if(num_of_stages == 1)
80*c217d954SCole Faust     {
81*c217d954SCole Faust         ARM_COMPUTE_RETURN_ON_ERROR(CLArgMinMaxLayerKernel::validate(input, nullptr, &not_reshaped_output, axis, op));
82*c217d954SCole Faust     }
83*c217d954SCole Faust     else
84*c217d954SCole Faust     {
85*c217d954SCole Faust         // Create temporary tensor infos
86*c217d954SCole Faust         std::vector<TensorInfo> sums_vector(num_of_stages - 1);
87*c217d954SCole Faust 
88*c217d954SCole Faust         // Create intermediate tensor info
89*c217d954SCole Faust         TensorShape shape{ input->tensor_shape() };
90*c217d954SCole Faust 
91*c217d954SCole Faust         for(unsigned int i = 0; i < num_of_stages - 1; i++)
92*c217d954SCole Faust         {
93*c217d954SCole Faust             shape.set(0, ceil(shape.x() / 128.f));
94*c217d954SCole Faust             sums_vector[i].set_data_type(input->data_type());
95*c217d954SCole Faust             sums_vector[i].set_tensor_shape(shape);
96*c217d954SCole Faust             sums_vector[i].set_num_channels(input->num_channels());
97*c217d954SCole Faust         }
98*c217d954SCole Faust 
99*c217d954SCole Faust         // Validate ReductionOperation only on first kernel
100*c217d954SCole Faust         ARM_COMPUTE_RETURN_ON_ERROR(CLArgMinMaxLayerKernel::validate(input, nullptr, &sums_vector[0], axis, op));
101*c217d954SCole Faust 
102*c217d954SCole Faust         // Validate ReductionOperation on intermediate stages
103*c217d954SCole Faust         for(unsigned int i = 1; i < num_of_stages - 1; ++i)
104*c217d954SCole Faust         {
105*c217d954SCole Faust             ARM_COMPUTE_RETURN_ON_ERROR(CLArgMinMaxLayerKernel::validate(input, &sums_vector[i - 1], &sums_vector[i], axis, op));
106*c217d954SCole Faust         }
107*c217d954SCole Faust 
108*c217d954SCole Faust         // Validate ReductionOperation on the last stage
109*c217d954SCole Faust         const unsigned int last_stage = num_of_stages - 1;
110*c217d954SCole Faust         ARM_COMPUTE_RETURN_ON_ERROR(CLArgMinMaxLayerKernel::validate(input, &sums_vector[last_stage - 1], &not_reshaped_output, axis, op));
111*c217d954SCole Faust     }
112*c217d954SCole Faust     ARM_COMPUTE_RETURN_ON_ERROR(CLReshapeLayer::validate(&not_reshaped_output, output));
113*c217d954SCole Faust     return Status{};
114*c217d954SCole Faust }
115*c217d954SCole Faust 
configure(const ICLTensor * input,int axis,ICLTensor * output,const ReductionOperation & op)116*c217d954SCole Faust void CLArgMinMaxLayer::configure(const ICLTensor *input, int axis, ICLTensor *output, const ReductionOperation &op)
117*c217d954SCole Faust {
118*c217d954SCole Faust     configure(CLKernelLibrary::get().get_compile_context(), input, axis, output, op);
119*c217d954SCole Faust }
120*c217d954SCole Faust 
configure(const CLCompileContext & compile_context,const ICLTensor * input,int axis,ICLTensor * output,const ReductionOperation & op)121*c217d954SCole Faust void CLArgMinMaxLayer::configure(const CLCompileContext &compile_context, const ICLTensor *input, int axis, ICLTensor *output, const ReductionOperation &op)
122*c217d954SCole Faust {
123*c217d954SCole Faust     ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
124*c217d954SCole Faust     ARM_COMPUTE_LOG_PARAMS(input, axis, output, op);
125*c217d954SCole Faust 
126*c217d954SCole Faust     _num_of_stages  = utils::calculate_number_of_stages_only_x_axis(input->info()->dimension(0), axis);
127*c217d954SCole Faust     _reduction_axis = axis;
128*c217d954SCole Faust 
129*c217d954SCole Faust     const TensorShape output_shape     = arm_compute::misc::shape_calculator::compute_reduced_shape(input->info()->tensor_shape(), axis, false);
130*c217d954SCole Faust     DataType          output_data_type = (output->info()->data_type() == DataType::UNKNOWN) ? DataType::S32 : output->info()->data_type();
131*c217d954SCole Faust     auto_init_if_empty(*output->info(), input->info()->clone()->set_tensor_shape(output_shape).set_data_type(output_data_type).reset_padding().set_is_resizable(true));
132*c217d954SCole Faust 
133*c217d954SCole Faust     // Configure reduction operation kernels
134*c217d954SCole Faust     _reduction_kernels_vector.reserve(_num_of_stages);
135*c217d954SCole Faust 
136*c217d954SCole Faust     auto add_reduction_kernel = [this, &compile_context, axis, op](const ICLTensor * input, const ICLTensor * prev_output, ICLTensor * output)
137*c217d954SCole Faust     {
138*c217d954SCole Faust         _reduction_kernels_vector.emplace_back(std::make_unique<CLArgMinMaxLayerKernel>());
139*c217d954SCole Faust         _reduction_kernels_vector.back()->configure(compile_context, input, prev_output, output, axis, op);
140*c217d954SCole Faust     };
141*c217d954SCole Faust 
142*c217d954SCole Faust     _memory_group.manage(&_not_reshaped_output);
143*c217d954SCole Faust     // Create temporary tensors
144*c217d954SCole Faust     if(_num_of_stages == 1)
145*c217d954SCole Faust     {
146*c217d954SCole Faust         add_reduction_kernel(input, nullptr, &_not_reshaped_output);
147*c217d954SCole Faust     }
148*c217d954SCole Faust     else
149*c217d954SCole Faust     {
150*c217d954SCole Faust         _results_vector.resize(_num_of_stages - 1);
151*c217d954SCole Faust         TensorShape shape{ input->info()->tensor_shape() };
152*c217d954SCole Faust         for(unsigned int i = 0; i < _num_of_stages - 1; i++)
153*c217d954SCole Faust         {
154*c217d954SCole Faust             shape.set(0, ceil(shape.x() / 128.f));
155*c217d954SCole Faust             _results_vector[i].allocator()->init(input->info()->clone()->set_tensor_shape(shape).set_data_type(output_data_type));
156*c217d954SCole Faust         }
157*c217d954SCole Faust 
158*c217d954SCole Faust         // Apply ReductionOperation only on first kernel
159*c217d954SCole Faust         _memory_group.manage(&_results_vector[0]);
160*c217d954SCole Faust         add_reduction_kernel(input, nullptr, &_results_vector[0]);
161*c217d954SCole Faust 
162*c217d954SCole Faust         // Apply ReductionOperation on intermediate stages
163*c217d954SCole Faust         for(unsigned int i = 1; i < _num_of_stages - 1; ++i)
164*c217d954SCole Faust         {
165*c217d954SCole Faust             _memory_group.manage(&_results_vector[i]);
166*c217d954SCole Faust             add_reduction_kernel(input, &_results_vector[i - 1], &_results_vector[i]);
167*c217d954SCole Faust             _results_vector[i - 1].allocator()->allocate();
168*c217d954SCole Faust         }
169*c217d954SCole Faust 
170*c217d954SCole Faust         // Apply ReductionOperation on the last stage
171*c217d954SCole Faust         const unsigned int last_stage = _num_of_stages - 1;
172*c217d954SCole Faust         add_reduction_kernel(input, &_results_vector[last_stage - 1], &_not_reshaped_output);
173*c217d954SCole Faust         _results_vector[last_stage - 1].allocator()->allocate();
174*c217d954SCole Faust     }
175*c217d954SCole Faust     _reshape.configure(compile_context, &_not_reshaped_output, output);
176*c217d954SCole Faust     _not_reshaped_output.allocator()->allocate();
177*c217d954SCole Faust }
178*c217d954SCole Faust 
run()179*c217d954SCole Faust void CLArgMinMaxLayer::run()
180*c217d954SCole Faust {
181*c217d954SCole Faust     MemoryGroupResourceScope scope_mg(_memory_group);
182*c217d954SCole Faust 
183*c217d954SCole Faust     for(unsigned int i = 0; i < _num_of_stages; ++i)
184*c217d954SCole Faust     {
185*c217d954SCole Faust         CLScheduler::get().enqueue(*_reduction_kernels_vector[i], false);
186*c217d954SCole Faust     }
187*c217d954SCole Faust     _reshape.run();
188*c217d954SCole Faust }
189*c217d954SCole Faust } // namespace arm_compute
190