blob: 10437f51bc330b3692b471ced9ed11254f8dfb32 [file] [log] [blame]
Michalis Spyroubcf8a962018-10-12 10:51:31 +01001/*
George Wort5a97b282018-12-21 16:21:04 +00002 * Copyright (c) 2018-2019 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
Georgios Pinitas32bd4dd2019-05-16 14:23:00 +010026#include "arm_compute/core/CPP/Validate.h"
Pablo Tello93975152019-11-08 13:47:53 +000027#include "arm_compute/core/Error.h"
Michalis Spyroubcf8a962018-10-12 10:51:31 +010028#include "arm_compute/core/Helpers.h"
29#include "arm_compute/runtime/NEON/NEScheduler.h"
30
Pablo Tello93975152019-11-08 13:47:53 +000031namespace arm_compute
32{
33namespace
34{
35inline TensorShape calculate_reduce_mean_shape(ITensor *input, const Coordinates &reduction_axis, bool keep_dims)
36{
37 const int reduction_ops = reduction_axis.num_dimensions();
38 Coordinates axis_local = reduction_axis;
39 const int input_dims = input->info()->num_dimensions();
40 convert_negative_axis(axis_local, input_dims);
41 TensorShape out_shape = input->info()->tensor_shape();
42 // Configure reshape layer if we want to drop the dimensions
43 if(!keep_dims)
44 {
45 // We have to sort the reduction axis vectors in order for remove_dimension
46 // to work properly
47 std::sort(axis_local.begin(), axis_local.begin() + reduction_ops);
48 for(int i = 0; i < reduction_ops; ++i)
49 {
50 out_shape.remove_dimension(axis_local[i] - i);
51 }
52 return out_shape;
53 }
54 else
55 {
56 for(int i = 0; i < reduction_ops; ++i)
57 {
58 out_shape.set(axis_local[i], 1);
59 }
60 return out_shape;
61 }
62}
63} // namespace
Michalis Spyroubcf8a962018-10-12 10:51:31 +010064
65NEReduceMean::NEReduceMean(std::shared_ptr<IMemoryManager> memory_manager)
66 : _memory_group(std::move(memory_manager)), _reduction_kernels(), _reduced_outs(), _reshape(), _reduction_ops(), _keep_dims()
67{
68}
69
Pablo Tello93975152019-11-08 13:47:53 +000070Status validate_config(const ITensorInfo *input, const Coordinates &reduction_axis, bool keep_dims, const ITensorInfo *output)
Michalis Spyroubcf8a962018-10-12 10:51:31 +010071{
72 ARM_COMPUTE_UNUSED(keep_dims);
Pablo Tello93975152019-11-08 13:47:53 +000073 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
Georgios Pinitas32bd4dd2019-05-16 14:23:00 +010074 ARM_COMPUTE_RETURN_ERROR_ON_CPU_F16_UNSUPPORTED(input);
75 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::QASYMM8, DataType::F16, DataType::F32);
Pablo Tello93975152019-11-08 13:47:53 +000076 ARM_COMPUTE_RETURN_ERROR_ON(reduction_axis.num_dimensions() < 1);
Michalis Spyroubcf8a962018-10-12 10:51:31 +010077 ARM_COMPUTE_RETURN_ERROR_ON(reduction_axis.num_dimensions() > input->num_dimensions());
78
Michalis Spyrou8d1b7182019-01-02 15:54:03 +000079 const unsigned int reduction_ops = reduction_axis.num_dimensions();
80 const int input_dims = input->num_dimensions();
81 Coordinates axis_local = reduction_axis;
Michalis Spyroubcf8a962018-10-12 10:51:31 +010082
Pablo Tello93975152019-11-08 13:47:53 +000083 for(unsigned int i = 0; i < axis_local.num_dimensions(); ++i)
Michalis Spyrou8d1b7182019-01-02 15:54:03 +000084 {
Pablo Tello93975152019-11-08 13:47:53 +000085 //axis: The dimensions to reduce. Must be in the range [-rank(input_tensor), rank(input_tensor)).
86 ARM_COMPUTE_RETURN_ERROR_ON(axis_local[i] < (-static_cast<int>(input->num_dimensions())));
87 ARM_COMPUTE_RETURN_ERROR_ON(axis_local[i] >= static_cast<int>(input->num_dimensions()));
Michalis Spyroubcf8a962018-10-12 10:51:31 +010088 }
89
Pablo Tello93975152019-11-08 13:47:53 +000090 if(output->tensor_shape().total_size() != 0)
Michalis Spyrou8d1b7182019-01-02 15:54:03 +000091 {
Pablo Tello93975152019-11-08 13:47:53 +000092 // Only validate if not using auto_init for the output tensor
93 TensorShape out_shape = input->tensor_shape();
94 // Validate output_shape only if not using auto_init
95 convert_negative_axis(axis_local, input_dims);
96 std::sort(axis_local.begin(), axis_local.begin() + reduction_ops);
97 for(unsigned int i = 0; i < reduction_ops; ++i)
Michalis Spyrou8d1b7182019-01-02 15:54:03 +000098 {
Pablo Tello93975152019-11-08 13:47:53 +000099 ARM_COMPUTE_RETURN_ERROR_ON(axis_local[i] > 3);
100 ARM_COMPUTE_RETURN_ERROR_ON(static_cast<unsigned int>(axis_local[i]) > input->num_dimensions() - 1);
101 if(output->total_size() > 0 && keep_dims)
102 {
103 ARM_COMPUTE_RETURN_ERROR_ON(output->dimension(axis_local[i]) != 1);
104 }
105 if(keep_dims)
106 {
107 out_shape.set(axis_local[i], 1);
108 }
109 else
110 {
111 ARM_COMPUTE_RETURN_ERROR_ON(i > static_cast<unsigned int>(axis_local[i]));
112 const unsigned int remove_index = axis_local[i] - i;
113 ARM_COMPUTE_RETURN_ERROR_ON(remove_index >= out_shape.num_dimensions());
114 out_shape.remove_dimension(remove_index);
115 }
Michalis Spyrou8d1b7182019-01-02 15:54:03 +0000116 }
Pablo Tello93975152019-11-08 13:47:53 +0000117 const TensorInfo out_info = input->clone()->set_tensor_shape(out_shape);
118 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(output, &out_info);
Michalis Spyrou8d1b7182019-01-02 15:54:03 +0000119 }
Michalis Spyroubcf8a962018-10-12 10:51:31 +0100120 return Status{};
121}
122
Pablo Tello93975152019-11-08 13:47:53 +0000123Status NEReduceMean::validate(const ITensorInfo *input, const Coordinates &reduction_axis, bool keep_dims, const ITensorInfo *output)
124{
125 return validate_config(input, reduction_axis, keep_dims, output);
126}
127
Michalis Spyroubcf8a962018-10-12 10:51:31 +0100128void NEReduceMean::configure(ITensor *input, const Coordinates &reduction_axis, bool keep_dims, ITensor *output)
129{
Pablo Tello93975152019-11-08 13:47:53 +0000130 // Perform validate step
131 ARM_COMPUTE_ERROR_THROW_ON(NEReduceMean::validate(input->info(), reduction_axis, keep_dims, output->info()));
132 // Output auto inizialitation if not yet initialized
133 const TensorShape output_shape = calculate_reduce_mean_shape(input, reduction_axis, keep_dims);
134 auto_init_if_empty(*output->info(), input->info()->clone()->set_tensor_shape(output_shape));
Michalis Spyroubcf8a962018-10-12 10:51:31 +0100135
Michalis Spyroubcfd09a2019-05-01 13:03:59 +0100136 _reduction_ops = reduction_axis.num_dimensions();
137 _reduction_kernels.resize(_reduction_ops);
138 _reduced_outs.resize(_reduction_ops - (keep_dims ? 1 : 0));
139 _keep_dims = keep_dims;
Michalis Spyroubcf8a962018-10-12 10:51:31 +0100140
Pablo Tello93975152019-11-08 13:47:53 +0000141 Coordinates axis_local = reduction_axis;
142 const int input_dims = input->info()->num_dimensions();
Michalis Spyrou8d1b7182019-01-02 15:54:03 +0000143
Pablo Tello93975152019-11-08 13:47:53 +0000144 convert_negative_axis(axis_local, input_dims);
Michalis Spyrou8d1b7182019-01-02 15:54:03 +0000145
Michalis Spyroubcf8a962018-10-12 10:51:31 +0100146 // Perform reduction for every axis
Pablo Tello93975152019-11-08 13:47:53 +0000147 for(int i = 0; i < _reduction_ops; ++i)
Michalis Spyroubcf8a962018-10-12 10:51:31 +0100148 {
Michalis Spyroubcfd09a2019-05-01 13:03:59 +0100149 TensorShape out_shape = i == 0 ? input->info()->tensor_shape() : (&_reduced_outs[i - 1])->info()->tensor_shape();
Michalis Spyrou8d1b7182019-01-02 15:54:03 +0000150 out_shape.set(axis_local[i], 1);
Michalis Spyroubcfd09a2019-05-01 13:03:59 +0100151 auto in = (i == 0) ? input : (&_reduced_outs[i - 1]);
Michalis Spyroubcf8a962018-10-12 10:51:31 +0100152
153 if(i == _reduction_ops - 1 && keep_dims)
154 {
Michalis Spyrou8d1b7182019-01-02 15:54:03 +0000155 _reduction_kernels[i].configure(in, output, axis_local[i], ReductionOperation::MEAN_SUM);
Michalis Spyroubcf8a962018-10-12 10:51:31 +0100156 }
157 else
158 {
Isabella Gottardi0a1090a2019-02-14 18:07:36 +0000159 _reduced_outs[i].allocator()->init(TensorInfo(out_shape, input->info()->num_channels(), input->info()->data_type(), input->info()->quantization_info()));
Michalis Spyroubcfd09a2019-05-01 13:03:59 +0100160 _memory_group.manage(&_reduced_outs[i]);
161 _reduction_kernels[i].configure(in, &_reduced_outs[i], axis_local[i], ReductionOperation::MEAN_SUM);
Michalis Spyroubcf8a962018-10-12 10:51:31 +0100162 }
163 }
164
165 // Allocate intermediate tensors
Pablo Tello93975152019-11-08 13:47:53 +0000166 for(int i = 0; i < _reduction_ops - (keep_dims ? 1 : 0); ++i)
Michalis Spyroubcf8a962018-10-12 10:51:31 +0100167 {
168 _reduced_outs[i].allocator()->allocate();
169 }
170
171 // Configure reshape layer if we want to drop the dimensions
172 if(!keep_dims)
173 {
174 TensorShape out_shape = input->info()->tensor_shape();
Michalis Spyrou8d1b7182019-01-02 15:54:03 +0000175 // We have to sort the reduction axis vectors in order for remove_dimension
176 // to work properly
177 std::sort(axis_local.begin(), axis_local.begin() + _reduction_ops);
Pablo Tello93975152019-11-08 13:47:53 +0000178 for(int i = 0; i < _reduction_ops; ++i)
Michalis Spyroubcf8a962018-10-12 10:51:31 +0100179 {
Michalis Spyrou8d1b7182019-01-02 15:54:03 +0000180 out_shape.remove_dimension(axis_local[i] - i);
Michalis Spyroubcf8a962018-10-12 10:51:31 +0100181 }
182 auto_init_if_empty(*output->info(), input->info()->clone()->set_tensor_shape(out_shape));
Michalis Spyroubcfd09a2019-05-01 13:03:59 +0100183 _reshape.configure(&_reduced_outs[_reduction_ops - 1], output);
Michalis Spyroubcf8a962018-10-12 10:51:31 +0100184 }
185}
186
187void NEReduceMean::run()
188{
Georgios Pinitasda953f22019-04-02 17:27:03 +0100189 MemoryGroupResourceScope scope_mg(_memory_group);
Pablo Tello93975152019-11-08 13:47:53 +0000190 for(auto &kernel : _reduction_kernels)
Michalis Spyroubcf8a962018-10-12 10:51:31 +0100191 {
Pablo Tello93975152019-11-08 13:47:53 +0000192 kernel.run();
Michalis Spyroubcf8a962018-10-12 10:51:31 +0100193 }
194
195 if(!_keep_dims)
196 {
197 _reshape.run();
198 }
Michalis Spyroubcf8a962018-10-12 10:51:31 +0100199}
Pablo Tello93975152019-11-08 13:47:53 +0000200} // namespace arm_compute