blob: a2322c9eda152420784d103e019ed059901d4933 [file] [log] [blame]
Michalis Spyroubcf8a962018-10-12 10:51:31 +01001/*
ramelg01cbbb0382021-09-17 17:36:57 +01002 * Copyright (c) 2018-2021 Arm Limited.
Michalis Spyroubcf8a962018-10-12 10:51:31 +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
George Wort5a97b282018-12-21 16:21:04 +000017 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
Michalis Spyroubcf8a962018-10-12 10:51:31 +010018 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
George Wort5a97b282018-12-21 16:21:04 +000019 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
Michalis Spyroubcf8a962018-10-12 10:51:31 +010020 * 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/NEReduceMean.h"
25
Pablo Tello93975152019-11-08 13:47:53 +000026#include "arm_compute/core/Error.h"
Michalis Spyroubcf8a962018-10-12 10:51:31 +010027#include "arm_compute/core/Helpers.h"
Pablo Telloa0a4ba12019-12-11 13:04:34 +000028#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Michalis Spyroubcf8a962018-10-12 10:51:31 +010029#include "arm_compute/runtime/NEON/NEScheduler.h"
ramelg01cbbb0382021-09-17 17:36:57 +010030#include "src/common/utils/Log.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010031#include "src/core/CPP/Validate.h"
Michalis Spyrouebcebf12020-10-21 00:04:14 +010032#include "src/core/NEON/kernels/NEReductionOperationKernel.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010033#include "src/core/helpers/AutoConfiguration.h"
Michalis Spyroubcf8a962018-10-12 10:51:31 +010034
Pablo Tello93975152019-11-08 13:47:53 +000035namespace arm_compute
36{
37namespace
38{
Pablo Tello93975152019-11-08 13:47:53 +000039Status validate_config(const ITensorInfo *input, const Coordinates &reduction_axis, bool keep_dims, const ITensorInfo *output)
Michalis Spyroubcf8a962018-10-12 10:51:31 +010040{
41 ARM_COMPUTE_UNUSED(keep_dims);
Pablo Tello93975152019-11-08 13:47:53 +000042 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
Georgios Pinitas32bd4dd2019-05-16 14:23:00 +010043 ARM_COMPUTE_RETURN_ERROR_ON_CPU_F16_UNSUPPORTED(input);
Luca Foschianiee939fb2020-01-28 10:38:07 +000044 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::QASYMM8_SIGNED, DataType::QASYMM8, DataType::F16, DataType::F32);
Pablo Tello93975152019-11-08 13:47:53 +000045 ARM_COMPUTE_RETURN_ERROR_ON(reduction_axis.num_dimensions() < 1);
Michalis Spyroubcf8a962018-10-12 10:51:31 +010046 ARM_COMPUTE_RETURN_ERROR_ON(reduction_axis.num_dimensions() > input->num_dimensions());
47
Michalis Spyrou8d1b7182019-01-02 15:54:03 +000048 const unsigned int reduction_ops = reduction_axis.num_dimensions();
49 const int input_dims = input->num_dimensions();
50 Coordinates axis_local = reduction_axis;
Michalis Spyroubcf8a962018-10-12 10:51:31 +010051
Pablo Tello93975152019-11-08 13:47:53 +000052 for(unsigned int i = 0; i < axis_local.num_dimensions(); ++i)
Michalis Spyrou8d1b7182019-01-02 15:54:03 +000053 {
Pablo Tello93975152019-11-08 13:47:53 +000054 //axis: The dimensions to reduce. Must be in the range [-rank(input_tensor), rank(input_tensor)).
55 ARM_COMPUTE_RETURN_ERROR_ON(axis_local[i] < (-static_cast<int>(input->num_dimensions())));
56 ARM_COMPUTE_RETURN_ERROR_ON(axis_local[i] >= static_cast<int>(input->num_dimensions()));
Michalis Spyroubcf8a962018-10-12 10:51:31 +010057 }
58
Pablo Tello93975152019-11-08 13:47:53 +000059 if(output->tensor_shape().total_size() != 0)
Michalis Spyrou8d1b7182019-01-02 15:54:03 +000060 {
Pablo Tello93975152019-11-08 13:47:53 +000061 // Only validate if not using auto_init for the output tensor
62 TensorShape out_shape = input->tensor_shape();
63 // Validate output_shape only if not using auto_init
64 convert_negative_axis(axis_local, input_dims);
65 std::sort(axis_local.begin(), axis_local.begin() + reduction_ops);
66 for(unsigned int i = 0; i < reduction_ops; ++i)
Michalis Spyrou8d1b7182019-01-02 15:54:03 +000067 {
Pablo Tello93975152019-11-08 13:47:53 +000068 ARM_COMPUTE_RETURN_ERROR_ON(axis_local[i] > 3);
69 ARM_COMPUTE_RETURN_ERROR_ON(static_cast<unsigned int>(axis_local[i]) > input->num_dimensions() - 1);
70 if(output->total_size() > 0 && keep_dims)
71 {
72 ARM_COMPUTE_RETURN_ERROR_ON(output->dimension(axis_local[i]) != 1);
73 }
74 if(keep_dims)
75 {
76 out_shape.set(axis_local[i], 1);
77 }
78 else
79 {
80 ARM_COMPUTE_RETURN_ERROR_ON(i > static_cast<unsigned int>(axis_local[i]));
81 const unsigned int remove_index = axis_local[i] - i;
82 ARM_COMPUTE_RETURN_ERROR_ON(remove_index >= out_shape.num_dimensions());
83 out_shape.remove_dimension(remove_index);
84 }
Michalis Spyrou8d1b7182019-01-02 15:54:03 +000085 }
Pablo Tello93975152019-11-08 13:47:53 +000086 const TensorInfo out_info = input->clone()->set_tensor_shape(out_shape);
87 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(output, &out_info);
Manuel Bottinic58f0ad2020-08-07 16:49:15 +010088 const bool requant = is_data_type_quantized(input->data_type()) && input->quantization_info() != output->quantization_info();
89 if(requant)
90 {
91 TensorInfo input_no_quant(input->clone()->set_data_type(DataType::F32));
92 NEDequantizationLayer::validate(input, &input_no_quant);
93 TensorInfo output_no_quant(output->clone()->set_data_type(DataType::F32));
94 NEQuantizationLayer::validate(&output_no_quant, output);
95 }
Michalis Spyrou8d1b7182019-01-02 15:54:03 +000096 }
Michalis Spyroubcf8a962018-10-12 10:51:31 +010097 return Status{};
98}
Manuel Bottinic58f0ad2020-08-07 16:49:15 +010099} // namespace
100
Michalis Spyrouebcebf12020-10-21 00:04:14 +0100101NEReduceMean::~NEReduceMean() = default;
102
Manuel Bottinic58f0ad2020-08-07 16:49:15 +0100103NEReduceMean::NEReduceMean(std::shared_ptr<IMemoryManager> memory_manager)
104 : _memory_group(std::move(memory_manager)), _reduction_kernels(), _reduced_outs(), _reshape(), _dequant(), _requant(), _reduction_ops(), _keep_dims(), _do_requant(), _input_no_quant(),
105 _output_no_quant()
106{
107}
Michalis Spyroubcf8a962018-10-12 10:51:31 +0100108
Pablo Tello93975152019-11-08 13:47:53 +0000109Status NEReduceMean::validate(const ITensorInfo *input, const Coordinates &reduction_axis, bool keep_dims, const ITensorInfo *output)
110{
111 return validate_config(input, reduction_axis, keep_dims, output);
112}
113
Michalis Spyroubcf8a962018-10-12 10:51:31 +0100114void NEReduceMean::configure(ITensor *input, const Coordinates &reduction_axis, bool keep_dims, ITensor *output)
115{
ramelg01cbbb0382021-09-17 17:36:57 +0100116 ARM_COMPUTE_LOG_PARAMS(input, reduction_axis, keep_dims, output);
117
Pablo Tello93975152019-11-08 13:47:53 +0000118 // Perform validate step
119 ARM_COMPUTE_ERROR_THROW_ON(NEReduceMean::validate(input->info(), reduction_axis, keep_dims, output->info()));
120 // Output auto inizialitation if not yet initialized
Manuel Bottinic58f0ad2020-08-07 16:49:15 +0100121 const TensorShape output_shape = arm_compute::misc::shape_calculator::calculate_reduce_mean_shape(input->info(), reduction_axis, keep_dims);
Pablo Tello93975152019-11-08 13:47:53 +0000122 auto_init_if_empty(*output->info(), input->info()->clone()->set_tensor_shape(output_shape));
Michalis Spyroubcf8a962018-10-12 10:51:31 +0100123
Manuel Bottinic58f0ad2020-08-07 16:49:15 +0100124 _do_requant = is_data_type_quantized(input->info()->data_type()) && input->info()->quantization_info() != output->info()->quantization_info();
Michalis Spyroubcfd09a2019-05-01 13:03:59 +0100125 _reduction_ops = reduction_axis.num_dimensions();
126 _reduction_kernels.resize(_reduction_ops);
127 _reduced_outs.resize(_reduction_ops - (keep_dims ? 1 : 0));
128 _keep_dims = keep_dims;
Michalis Spyroubcf8a962018-10-12 10:51:31 +0100129
Manuel Bottinic58f0ad2020-08-07 16:49:15 +0100130 ITensor *tmp_input = input;
131 ITensor *tmp_output = output;
132 if(_do_requant)
133 {
134 _memory_group.manage(&_input_no_quant);
135 _memory_group.manage(&_output_no_quant);
136 TensorInfo output_no_quant_info = input->info()->clone()->set_tensor_shape(output_shape);
137 output_no_quant_info.set_data_type(DataType::F32);
138 auto_init_if_empty(*_output_no_quant.info(), output_no_quant_info);
139 auto_init_if_empty(*_input_no_quant.info(), input->info()->clone()->set_data_type(DataType::F32));
140 _dequant.configure(input, &_input_no_quant);
141 tmp_input = &_input_no_quant;
142 tmp_output = &_output_no_quant;
143 }
144
Pablo Tello93975152019-11-08 13:47:53 +0000145 Coordinates axis_local = reduction_axis;
Manuel Bottinic58f0ad2020-08-07 16:49:15 +0100146 const int input_dims = tmp_input->info()->num_dimensions();
Michalis Spyrou8d1b7182019-01-02 15:54:03 +0000147
Pablo Tello93975152019-11-08 13:47:53 +0000148 convert_negative_axis(axis_local, input_dims);
Michalis Spyrou8d1b7182019-01-02 15:54:03 +0000149
Michalis Spyroubcf8a962018-10-12 10:51:31 +0100150 // Perform reduction for every axis
Pablo Tello93975152019-11-08 13:47:53 +0000151 for(int i = 0; i < _reduction_ops; ++i)
Michalis Spyroubcf8a962018-10-12 10:51:31 +0100152 {
Manuel Bottinic58f0ad2020-08-07 16:49:15 +0100153 TensorShape out_shape = i == 0 ? tmp_input->info()->tensor_shape() : (&_reduced_outs[i - 1])->info()->tensor_shape();
Michalis Spyrou8d1b7182019-01-02 15:54:03 +0000154 out_shape.set(axis_local[i], 1);
Manuel Bottinic58f0ad2020-08-07 16:49:15 +0100155 auto in = (i == 0) ? tmp_input : (&_reduced_outs[i - 1]);
Michalis Spyroubcf8a962018-10-12 10:51:31 +0100156
157 if(i == _reduction_ops - 1 && keep_dims)
158 {
Manuel Bottinic58f0ad2020-08-07 16:49:15 +0100159 _reduction_kernels[i].configure(in, tmp_output, axis_local[i], ReductionOperation::MEAN_SUM);
Michalis Spyroubcf8a962018-10-12 10:51:31 +0100160 }
161 else
162 {
Manuel Bottinic58f0ad2020-08-07 16:49:15 +0100163 _reduced_outs[i].allocator()->init(TensorInfo(out_shape, tmp_input->info()->num_channels(), tmp_input->info()->data_type(), tmp_input->info()->quantization_info()));
Michalis Spyroubcfd09a2019-05-01 13:03:59 +0100164 _memory_group.manage(&_reduced_outs[i]);
165 _reduction_kernels[i].configure(in, &_reduced_outs[i], axis_local[i], ReductionOperation::MEAN_SUM);
Michalis Spyroubcf8a962018-10-12 10:51:31 +0100166 }
167 }
168
169 // Allocate intermediate tensors
Pablo Tello93975152019-11-08 13:47:53 +0000170 for(int i = 0; i < _reduction_ops - (keep_dims ? 1 : 0); ++i)
Michalis Spyroubcf8a962018-10-12 10:51:31 +0100171 {
172 _reduced_outs[i].allocator()->allocate();
173 }
174
175 // Configure reshape layer if we want to drop the dimensions
176 if(!keep_dims)
177 {
Manuel Bottinic58f0ad2020-08-07 16:49:15 +0100178 TensorShape out_shape = tmp_input->info()->tensor_shape();
Michalis Spyrou8d1b7182019-01-02 15:54:03 +0000179 // We have to sort the reduction axis vectors in order for remove_dimension
180 // to work properly
181 std::sort(axis_local.begin(), axis_local.begin() + _reduction_ops);
Pablo Tello93975152019-11-08 13:47:53 +0000182 for(int i = 0; i < _reduction_ops; ++i)
Michalis Spyroubcf8a962018-10-12 10:51:31 +0100183 {
Michalis Spyrou8d1b7182019-01-02 15:54:03 +0000184 out_shape.remove_dimension(axis_local[i] - i);
Michalis Spyroubcf8a962018-10-12 10:51:31 +0100185 }
Manuel Bottinic58f0ad2020-08-07 16:49:15 +0100186 auto_init_if_empty(*tmp_output->info(), tmp_input->info()->clone()->set_tensor_shape(out_shape));
187 _reshape.configure(&_reduced_outs[_reduction_ops - 1], tmp_output);
188 }
189 if(_do_requant)
190 {
191 _requant.configure(&_output_no_quant, output);
192 _input_no_quant.allocator()->allocate();
193 _output_no_quant.allocator()->allocate();
Michalis Spyroubcf8a962018-10-12 10:51:31 +0100194 }
195}
196
197void NEReduceMean::run()
198{
Georgios Pinitasda953f22019-04-02 17:27:03 +0100199 MemoryGroupResourceScope scope_mg(_memory_group);
Manuel Bottinic58f0ad2020-08-07 16:49:15 +0100200 if(_do_requant)
201 {
202 _dequant.run();
203 }
Pablo Tello93975152019-11-08 13:47:53 +0000204 for(auto &kernel : _reduction_kernels)
Michalis Spyroubcf8a962018-10-12 10:51:31 +0100205 {
Pablo Tello93975152019-11-08 13:47:53 +0000206 kernel.run();
Michalis Spyroubcf8a962018-10-12 10:51:31 +0100207 }
Michalis Spyroubcf8a962018-10-12 10:51:31 +0100208 if(!_keep_dims)
209 {
210 _reshape.run();
211 }
Manuel Bottinic58f0ad2020-08-07 16:49:15 +0100212 if(_do_requant)
213 {
214 _requant.run();
215 }
Michalis Spyroubcf8a962018-10-12 10:51:31 +0100216}
Pablo Tello93975152019-11-08 13:47:53 +0000217} // namespace arm_compute