xref: /aosp_15_r20/external/ComputeLibrary/src/runtime/NEON/functions/NEReductionOperation.cpp (revision c217d954acce2dbc11938adb493fc0abd69584f3)
1*c217d954SCole Faust /*
2*c217d954SCole Faust  * Copyright (c) 2017-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 #include "arm_compute/runtime/NEON/functions/NEReductionOperation.h"
25*c217d954SCole Faust 
26*c217d954SCole Faust #include "arm_compute/core/Helpers.h"
27*c217d954SCole Faust #include "arm_compute/core/utils/misc/ShapeCalculator.h"
28*c217d954SCole Faust #include "arm_compute/runtime/NEON/NEScheduler.h"
29*c217d954SCole Faust #include "src/common/utils/Log.h"
30*c217d954SCole Faust #include "src/core/NEON/kernels/NEReductionOperationKernel.h"
31*c217d954SCole Faust #include "src/core/helpers/AutoConfiguration.h"
32*c217d954SCole Faust 
33*c217d954SCole Faust namespace arm_compute
34*c217d954SCole Faust {
35*c217d954SCole Faust namespace
36*c217d954SCole Faust {
37*c217d954SCole Faust /** Define dimension to split the window
38*c217d954SCole Faust  *
39*c217d954SCole Faust  * @param[in] axis Reduction axis
40*c217d954SCole Faust  *
41*c217d954SCole Faust  * @return The dimension to split the window
42*c217d954SCole Faust  */
reduction_window_split_dimension(unsigned int axis)43*c217d954SCole Faust size_t reduction_window_split_dimension(unsigned int axis)
44*c217d954SCole Faust {
45*c217d954SCole Faust     switch(axis)
46*c217d954SCole Faust     {
47*c217d954SCole Faust         case 0:
48*c217d954SCole Faust             return Window::DimY;
49*c217d954SCole Faust         case 1:
50*c217d954SCole Faust         case 2:
51*c217d954SCole Faust         case 3:
52*c217d954SCole Faust             return Window::DimX;
53*c217d954SCole Faust         default:
54*c217d954SCole Faust             ARM_COMPUTE_ERROR("Unsupported reduction axis");
55*c217d954SCole Faust     }
56*c217d954SCole Faust }
57*c217d954SCole Faust } // namespace
58*c217d954SCole Faust 
59*c217d954SCole Faust NEReductionOperation::~NEReductionOperation() = default;
60*c217d954SCole Faust 
NEReductionOperation(std::shared_ptr<IMemoryManager> memory_manager)61*c217d954SCole Faust NEReductionOperation::NEReductionOperation(std::shared_ptr<IMemoryManager> memory_manager)
62*c217d954SCole Faust     : _memory_group(memory_manager), _reduction_kernel(), _reshape(), _output_internal(), _window_split(0), _reduction_axis(), _is_reshape_required(false)
63*c217d954SCole Faust {
64*c217d954SCole Faust }
65*c217d954SCole Faust 
validate(const ITensorInfo * input,const ITensorInfo * output,unsigned int axis,ReductionOperation op,bool keep_dims)66*c217d954SCole Faust Status NEReductionOperation::validate(const ITensorInfo *input, const ITensorInfo *output, unsigned int axis, ReductionOperation op, bool keep_dims)
67*c217d954SCole Faust {
68*c217d954SCole Faust     ARM_COMPUTE_RETURN_ERROR_ON_MSG(axis >= TensorShape::num_max_dimensions, "Reduction axis greater than max number of dimensions");
69*c217d954SCole Faust     ARM_COMPUTE_RETURN_ERROR_ON_MSG(axis > 3, "Unsupported reduction axis");
70*c217d954SCole Faust 
71*c217d954SCole Faust     const auto is_reshape_required = !keep_dims;
72*c217d954SCole Faust 
73*c217d954SCole Faust     auto *output_internal = output;
74*c217d954SCole Faust 
75*c217d954SCole Faust     TensorInfo info_before_reshape;
76*c217d954SCole Faust 
77*c217d954SCole Faust     if(is_reshape_required)
78*c217d954SCole Faust     {
79*c217d954SCole Faust         const TensorInfo expected_output_shape = output->clone()->set_tensor_shape(arm_compute::misc::shape_calculator::compute_reduced_shape(input->tensor_shape(), axis, keep_dims));
80*c217d954SCole Faust         ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(&expected_output_shape, output);
81*c217d954SCole Faust 
82*c217d954SCole Faust         auto shape_before_reshape = input->tensor_shape();
83*c217d954SCole Faust         shape_before_reshape.set(axis, 1);
84*c217d954SCole Faust 
85*c217d954SCole Faust         const auto input_num_channles = input->num_channels();
86*c217d954SCole Faust         const auto input_qinfo        = input->quantization_info();
87*c217d954SCole Faust         const auto is_arg_min_max     = (op == ReductionOperation::ARG_IDX_MAX) || (op == ReductionOperation::ARG_IDX_MIN);
88*c217d954SCole Faust         const auto output_data_type   = is_arg_min_max ? DataType::S32 : output->data_type();
89*c217d954SCole Faust 
90*c217d954SCole Faust         info_before_reshape.set_data_type(output_data_type).set_tensor_shape(shape_before_reshape).set_num_channels(input_num_channles).set_quantization_info(input_qinfo);
91*c217d954SCole Faust 
92*c217d954SCole Faust         output_internal = &info_before_reshape;
93*c217d954SCole Faust     }
94*c217d954SCole Faust 
95*c217d954SCole Faust     ARM_COMPUTE_RETURN_ON_ERROR(NEReductionOperationKernel::validate(input, output_internal, axis, op));
96*c217d954SCole Faust 
97*c217d954SCole Faust     if(is_reshape_required)
98*c217d954SCole Faust     {
99*c217d954SCole Faust         ARM_COMPUTE_RETURN_ON_ERROR(NEReshapeLayer::validate(output_internal, output));
100*c217d954SCole Faust     }
101*c217d954SCole Faust 
102*c217d954SCole Faust     return Status{};
103*c217d954SCole Faust }
104*c217d954SCole Faust 
configure(ITensor * input,ITensor * output,unsigned int axis,ReductionOperation op,bool keep_dims)105*c217d954SCole Faust void NEReductionOperation::configure(ITensor *input, ITensor *output, unsigned int axis, ReductionOperation op, bool keep_dims)
106*c217d954SCole Faust {
107*c217d954SCole Faust     ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
108*c217d954SCole Faust     ARM_COMPUTE_LOG_PARAMS(input, output, axis, op, keep_dims);
109*c217d954SCole Faust 
110*c217d954SCole Faust     _is_reshape_required = !keep_dims;
111*c217d954SCole Faust 
112*c217d954SCole Faust     auto      *output_internal = output;
113*c217d954SCole Faust     const auto is_arg_min_max  = (op == ReductionOperation::ARG_IDX_MAX) || (op == ReductionOperation::ARG_IDX_MIN);
114*c217d954SCole Faust 
115*c217d954SCole Faust     if(_is_reshape_required)
116*c217d954SCole Faust     {
117*c217d954SCole Faust         const auto output_internal_shape = arm_compute::misc::shape_calculator::compute_reduced_shape(input->info()->tensor_shape(), axis);
118*c217d954SCole Faust         const auto output_external_shape = arm_compute::misc::shape_calculator::compute_reduced_shape(input->info()->tensor_shape(), axis, false);
119*c217d954SCole Faust         const auto output_data_type      = is_arg_min_max ? DataType::S32 : input->info()->data_type();
120*c217d954SCole Faust         const auto num_channels          = input->info()->num_channels();
121*c217d954SCole Faust         const auto qinfo                 = input->info()->quantization_info();
122*c217d954SCole Faust 
123*c217d954SCole Faust         _output_internal.allocator()->init(input->info()->clone()->set_data_type(output_data_type).set_tensor_shape(output_internal_shape).reset_padding().set_is_resizable(true).set_num_channels(
124*c217d954SCole Faust                                                num_channels).set_quantization_info(qinfo));
125*c217d954SCole Faust         _memory_group.manage(&_output_internal);
126*c217d954SCole Faust         output_internal = &_output_internal;
127*c217d954SCole Faust         auto_init_if_empty(*output->info(), input->info()->clone()->set_data_type(output_data_type).set_tensor_shape(output_external_shape).reset_padding().set_is_resizable(true));
128*c217d954SCole Faust     }
129*c217d954SCole Faust 
130*c217d954SCole Faust     ARM_COMPUTE_ERROR_THROW_ON(NEReductionOperation::validate(input->info(), output->info(), axis, op, keep_dims));
131*c217d954SCole Faust 
132*c217d954SCole Faust     // Configure reduction kernel
133*c217d954SCole Faust     _reduction_kernel = std::make_unique<NEReductionOperationKernel>();
134*c217d954SCole Faust     _reduction_kernel->configure(input, output_internal, axis, op);
135*c217d954SCole Faust     _window_split   = reduction_window_split_dimension(axis);
136*c217d954SCole Faust     _reduction_axis = axis;
137*c217d954SCole Faust 
138*c217d954SCole Faust     if(_is_reshape_required)
139*c217d954SCole Faust     {
140*c217d954SCole Faust         _reshape.configure(output_internal, output);
141*c217d954SCole Faust         _output_internal.allocator()->allocate();
142*c217d954SCole Faust     }
143*c217d954SCole Faust }
144*c217d954SCole Faust 
run()145*c217d954SCole Faust void NEReductionOperation::run()
146*c217d954SCole Faust {
147*c217d954SCole Faust     MemoryGroupResourceScope scope_mg(_memory_group);
148*c217d954SCole Faust     NEScheduler::get().schedule(_reduction_kernel.get(), _window_split);
149*c217d954SCole Faust     if(_is_reshape_required)
150*c217d954SCole Faust     {
151*c217d954SCole Faust         _reshape.run();
152*c217d954SCole Faust     }
153*c217d954SCole Faust }
154*c217d954SCole Faust } // namespace arm_compute
155