blob: 208371c45d628a648393cb1a5a462029d78fa3cc [file] [log] [blame]
Michalis Spyrou04f089c2017-08-08 17:42:38 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2017-2020 Arm Limited.
Michalis Spyrou04f089c2017-08-08 17:42:38 +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
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/runtime/CL/functions/CLReductionOperation.h"
25
26#include "arm_compute/core/CL/ICLTensor.h"
Sang-Hoon Park2697fd82019-10-15 16:49:24 +010027#include "arm_compute/core/Helpers.h"
Michalis Spyrou04f089c2017-08-08 17:42:38 +010028#include "arm_compute/core/PixelValue.h"
29#include "arm_compute/core/TensorInfo.h"
30#include "arm_compute/core/Validate.h"
Sang-Hoon Park2697fd82019-10-15 16:49:24 +010031#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Michalis Spyrou04f089c2017-08-08 17:42:38 +010032#include "arm_compute/runtime/CL/CLScheduler.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010033#include "src/core/helpers/AutoConfiguration.h"
34#include "src/runtime/Utils.h"
35
Matthew Bentham92046462020-03-07 22:15:55 +000036#include "support/MemorySupport.h"
Michalis Spyrou04f089c2017-08-08 17:42:38 +010037
Sang-Hoon Park2697fd82019-10-15 16:49:24 +010038namespace arm_compute
39{
Georgios Pinitas8a94e7c2017-09-15 19:06:47 +010040CLReductionOperation::CLReductionOperation(std::shared_ptr<IMemoryManager> memory_manager)
Michele Di Giorgiof6f78762020-07-06 11:27:21 +010041 : _memory_group(std::move(memory_manager)), _results_vector(), _reduction_kernels_vector(), _border_handlers_vector(), _reshape(), _num_of_stages(), _reduction_axis(), _is_serial(),
Sang-Hoon Park2697fd82019-10-15 16:49:24 +010042 _is_reshape_required(false)
Michalis Spyrou04f089c2017-08-08 17:42:38 +010043{
44}
45
Sang-Hoon Park2697fd82019-10-15 16:49:24 +010046Status CLReductionOperation::validate(const ITensorInfo *input, const ITensorInfo *output, unsigned int axis, ReductionOperation op, bool keep_dims)
John Richardson62385bc2018-04-20 13:11:36 +010047{
Manuel Bottini7b9998d2019-10-21 17:59:07 +010048 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Sang-Hoon Park2697fd82019-10-15 16:49:24 +010049 ARM_COMPUTE_RETURN_ERROR_ON_MSG(axis >= TensorShape::num_max_dimensions, "Reduction axis greater than max number of dimensions");
50 ARM_COMPUTE_RETURN_ERROR_ON_MSG(axis > 3, "Unsupported reduction axis");
51
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010052 const unsigned int num_of_stages = utils::calculate_number_of_stages_only_x_axis(input->dimension(0), axis);
Sang-Hoon Park2697fd82019-10-15 16:49:24 +010053 const bool is_serial = needs_serialized_reduction(op, input->data_type(), axis);
Manuel Bottini7b9998d2019-10-21 17:59:07 +010054 const bool is_reshape_required = !keep_dims;
Sang-Hoon Park2697fd82019-10-15 16:49:24 +010055
Manuel Bottini7b9998d2019-10-21 17:59:07 +010056 if(is_reshape_required && output->total_size() != 0)
Sang-Hoon Park2697fd82019-10-15 16:49:24 +010057 {
58 const TensorInfo expected_output_shape = output->clone()->set_tensor_shape(arm_compute::misc::shape_calculator::compute_reduced_shape(input->tensor_shape(), axis, keep_dims));
59 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(&expected_output_shape, output);
60 }
61
62 auto *output_internal = output;
63
64 TensorInfo output_before_reshape;
65 const auto input_shape = input->tensor_shape();
66 const auto input_data_type = input->data_type();
67 const auto input_num_channles = input->num_channels();
68 const auto input_qinfo = input->quantization_info();
Manuel Bottini7b9998d2019-10-21 17:59:07 +010069 const auto output_data_type = output->data_type();
Sang-Hoon Park2697fd82019-10-15 16:49:24 +010070
71 auto initialize_tensorinfo = [](TensorInfo & ti, TensorShape shape, DataType data_type, int num_channels, QuantizationInfo qinfo)
72 {
73 ti.set_data_type(data_type).set_tensor_shape(shape).set_num_channels(num_channels).set_quantization_info(qinfo);
74 };
75
76 if(is_reshape_required)
77 {
78 auto shape_before_reshape = input_shape;
79 shape_before_reshape.set(axis, 1);
80 initialize_tensorinfo(output_before_reshape, shape_before_reshape, output_data_type, input_num_channles, input_qinfo);
81 output_internal = &output_before_reshape;
82 }
83
Manuel Bottinib412fab2018-12-10 17:40:23 +000084 if(is_serial)
85 {
Sang-Hoon Park2697fd82019-10-15 16:49:24 +010086 ARM_COMPUTE_RETURN_ON_ERROR(CLReductionOperationKernel::validate(input, output_internal, axis, op));
Manuel Bottinib412fab2018-12-10 17:40:23 +000087 }
88 else
John Richardson62385bc2018-04-20 13:11:36 +010089 {
Michalis Spyrou7e9391b2018-10-05 14:49:28 +010090 // Create temporary tensor infos
Michalis Spyroubcfd09a2019-05-01 13:03:59 +010091 std::vector<TensorInfo> sums_vector(num_of_stages - 1);
Michalis Spyrou7e9391b2018-10-05 14:49:28 +010092
93 // Create intermediate tensor info
Sang-Hoon Park2697fd82019-10-15 16:49:24 +010094 TensorShape shape{ input_shape };
95
96 shape.set(0, ceil(shape.x() / 128.f));
Michalis Spyrou7e9391b2018-10-05 14:49:28 +010097
98 for(unsigned int i = 0; i < num_of_stages - 1; i++)
99 {
Sang-Hoon Park2697fd82019-10-15 16:49:24 +0100100 initialize_tensorinfo(sums_vector[i], shape, input_data_type, input_num_channles, input_qinfo);
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100101 }
102
Michalis Spyroue55a0132018-10-26 10:48:56 +0100103 ReductionOperation first_kernel_op;
Manuel Bottinib412fab2018-12-10 17:40:23 +0000104 ReductionOperation intermediate_kernel_op;
Michalis Spyroue55a0132018-10-26 10:48:56 +0100105 ReductionOperation last_kernel_op;
106 switch(op)
107 {
108 case ReductionOperation::SUM:
109 case ReductionOperation::MEAN_SUM:
Manuel Bottinib412fab2018-12-10 17:40:23 +0000110 first_kernel_op = ReductionOperation::SUM;
111 intermediate_kernel_op = ReductionOperation::SUM;
112 last_kernel_op = op;
Michalis Spyroue55a0132018-10-26 10:48:56 +0100113 break;
114 case ReductionOperation::SUM_SQUARE:
Manuel Bottinib412fab2018-12-10 17:40:23 +0000115 first_kernel_op = ReductionOperation::SUM_SQUARE;
116 intermediate_kernel_op = ReductionOperation::SUM;
117 last_kernel_op = ReductionOperation::SUM;
118 break;
119 case ReductionOperation::PROD:
120 first_kernel_op = ReductionOperation::PROD;
121 intermediate_kernel_op = ReductionOperation::PROD;
122 last_kernel_op = ReductionOperation::PROD;
Michalis Spyroue55a0132018-10-26 10:48:56 +0100123 break;
Usama Arifb2890502019-05-21 11:48:37 +0100124 case ReductionOperation::MIN:
125 first_kernel_op = ReductionOperation::MIN;
126 intermediate_kernel_op = ReductionOperation::MIN;
127 last_kernel_op = ReductionOperation::MIN;
128 break;
Usama Arif048b0f32019-05-22 16:32:27 +0100129 case ReductionOperation::MAX:
130 first_kernel_op = ReductionOperation::MAX;
131 intermediate_kernel_op = ReductionOperation::MAX;
132 last_kernel_op = ReductionOperation::MAX;
133 break;
Michalis Spyroue55a0132018-10-26 10:48:56 +0100134 default:
135 ARM_COMPUTE_ERROR("Not supported");
136 }
137
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100138 // Validate ReductionOperation only on first kernel
Michalis Spyroubcfd09a2019-05-01 13:03:59 +0100139 ARM_COMPUTE_RETURN_ON_ERROR(CLReductionOperationKernel::validate(input, &sums_vector[0], axis, first_kernel_op));
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100140
141 // Validate ReductionOperation on intermediate stages
142 for(unsigned int i = 1; i < num_of_stages - 1; ++i)
143 {
Michalis Spyroubcfd09a2019-05-01 13:03:59 +0100144 ARM_COMPUTE_RETURN_ON_ERROR(CLReductionOperationKernel::validate(&sums_vector[i - 1], &sums_vector[i], axis, intermediate_kernel_op));
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100145 }
146
147 // Validate ReductionOperation on the last stage
148 const unsigned int last_stage = num_of_stages - 1;
Sang-Hoon Park2697fd82019-10-15 16:49:24 +0100149 ARM_COMPUTE_RETURN_ON_ERROR(CLReductionOperationKernel::validate(&sums_vector[last_stage - 1], output_internal, axis, last_kernel_op, input->dimension(0)));
150 }
151
152 if(is_reshape_required)
153 {
Michalis Spyrou2aad21a2020-07-02 12:43:53 +0100154 ARM_COMPUTE_RETURN_ON_ERROR(CLReshapeLayer::validate(output_internal, output));
John Richardson62385bc2018-04-20 13:11:36 +0100155 }
John Richardson62385bc2018-04-20 13:11:36 +0100156
John Richardson62385bc2018-04-20 13:11:36 +0100157 return Status{};
158}
159
Sang-Hoon Park2697fd82019-10-15 16:49:24 +0100160ICLTensor *CLReductionOperation::configure_intermediate_result_vector(ICLTensor *input, ICLTensor *output)
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100161{
Sang-Hoon Park2697fd82019-10-15 16:49:24 +0100162 if(!_is_reshape_required && _is_serial)
163 {
164 return output;
165 }
166
Manuel Bottini7b9998d2019-10-21 17:59:07 +0100167 auto intermediate_result_vector_size = _is_serial ? 1 : _num_of_stages;
Sang-Hoon Park2697fd82019-10-15 16:49:24 +0100168
169 if(!_is_reshape_required)
170 {
171 --intermediate_result_vector_size;
172 }
173
174 _results_vector.resize(intermediate_result_vector_size);
175 auto shape = input->info()->tensor_shape();
176
177 shape.set(_reduction_axis, _is_serial ? 1 : ceil(shape.x() / 128.f));
178
179 for(auto &v : _results_vector)
180 {
181 if(&v == &_results_vector.back() && _is_reshape_required)
182 {
183 shape.set(_reduction_axis, 1);
184 }
185 v.allocator()->init(input->info()->clone()->set_tensor_shape(shape));
186 }
187
Sang-Hoon Park2697fd82019-10-15 16:49:24 +0100188 return _is_reshape_required ? &_results_vector.back() : output;
189}
190
191void CLReductionOperation::configure(ICLTensor *input, ICLTensor *output, unsigned int axis, ReductionOperation op, bool keep_dims)
192{
Manuel Bottini2b84be52020-04-08 10:15:51 +0100193 configure(CLKernelLibrary::get().get_compile_context(), input, output, axis, op, keep_dims);
194}
195
196void CLReductionOperation::configure(const CLCompileContext &compile_context, ICLTensor *input, ICLTensor *output, unsigned int axis, ReductionOperation op, bool keep_dims)
197{
Manuel Bottini7b9998d2019-10-21 17:59:07 +0100198 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +0100199 _num_of_stages = utils::calculate_number_of_stages_only_x_axis(input->info()->dimension(0), axis);
Manuel Bottini7b9998d2019-10-21 17:59:07 +0100200 _reduction_axis = axis;
201 _is_serial = needs_serialized_reduction(op, input->info()->data_type(), axis);
202 _is_reshape_required = !keep_dims;
Sang-Hoon Park2697fd82019-10-15 16:49:24 +0100203
204 auto *output_internal = configure_intermediate_result_vector(input, output);
205
Sang-Hoon Park2697fd82019-10-15 16:49:24 +0100206 if(_is_reshape_required)
207 {
208 const TensorShape output_shape = arm_compute::misc::shape_calculator::compute_reduced_shape(input->info()->tensor_shape(), axis, false);
Manuel Bottini7b9998d2019-10-21 17:59:07 +0100209 const auto output_data_type = input->info()->data_type();
Sang-Hoon Park2697fd82019-10-15 16:49:24 +0100210 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));
211 }
Georgios Pinitasaec513c2017-09-15 19:36:30 +0100212
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100213 // Configure reduction operation kernels
Michalis Spyroubcfd09a2019-05-01 13:03:59 +0100214 _reduction_kernels_vector.resize(_num_of_stages);
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100215
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100216 // Create temporary tensors
Manuel Bottinib412fab2018-12-10 17:40:23 +0000217 if(_is_serial)
218 {
Sang-Hoon Park2697fd82019-10-15 16:49:24 +0100219 if(_is_reshape_required)
220 {
221 _memory_group.manage(&_results_vector.back());
222 }
223
Manuel Bottini2b84be52020-04-08 10:15:51 +0100224 _reduction_kernels_vector[0].configure(compile_context, input, output_internal, axis, op, 0);
Manuel Bottinib412fab2018-12-10 17:40:23 +0000225 }
226 else
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100227 {
Michalis Spyroubcfd09a2019-05-01 13:03:59 +0100228 _border_handlers_vector.resize(_num_of_stages);
Michalis Spyroubcfd09a2019-05-01 13:03:59 +0100229 _memory_group.manage(&_results_vector[0]);
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100230
231 ReductionOperation first_kernel_op;
Manuel Bottinib412fab2018-12-10 17:40:23 +0000232 ReductionOperation intermediate_kernel_op;
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100233 ReductionOperation last_kernel_op;
Manuel Bottinib412fab2018-12-10 17:40:23 +0000234 PixelValue pixelValue;
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100235 switch(op)
236 {
237 case ReductionOperation::SUM:
238 case ReductionOperation::MEAN_SUM:
Manuel Bottinib412fab2018-12-10 17:40:23 +0000239 first_kernel_op = ReductionOperation::SUM;
240 intermediate_kernel_op = ReductionOperation::SUM;
241 last_kernel_op = op;
Manuel Bottini55e16782019-01-15 13:21:57 +0000242 pixelValue = PixelValue();
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100243 break;
244 case ReductionOperation::SUM_SQUARE:
Manuel Bottinib412fab2018-12-10 17:40:23 +0000245 first_kernel_op = ReductionOperation::SUM_SQUARE;
246 intermediate_kernel_op = ReductionOperation::SUM;
247 last_kernel_op = ReductionOperation::SUM;
Manuel Bottini55e16782019-01-15 13:21:57 +0000248 pixelValue = PixelValue();
Manuel Bottinib412fab2018-12-10 17:40:23 +0000249 break;
250 case ReductionOperation::PROD:
251 first_kernel_op = ReductionOperation::PROD;
252 intermediate_kernel_op = ReductionOperation::PROD;
253 last_kernel_op = ReductionOperation::PROD;
254 pixelValue = PixelValue(1, input->info()->data_type());
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100255 break;
Usama Arifb2890502019-05-21 11:48:37 +0100256 case ReductionOperation::MIN:
257 first_kernel_op = ReductionOperation::MIN;
258 intermediate_kernel_op = ReductionOperation::MIN;
259 last_kernel_op = ReductionOperation::MIN;
Michele Di Giorgiof6f78762020-07-06 11:27:21 +0100260 pixelValue = std::get<1>(get_min_max(input->info()->data_type()));
Usama Arifb2890502019-05-21 11:48:37 +0100261 break;
Usama Arif048b0f32019-05-22 16:32:27 +0100262 case ReductionOperation::MAX:
263 first_kernel_op = ReductionOperation::MAX;
264 intermediate_kernel_op = ReductionOperation::MAX;
265 last_kernel_op = ReductionOperation::MAX;
Michele Di Giorgiof6f78762020-07-06 11:27:21 +0100266 pixelValue = std::get<0>(get_min_max(input->info()->data_type()));
Usama Arif048b0f32019-05-22 16:32:27 +0100267 break;
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100268 default:
269 ARM_COMPUTE_ERROR("Not supported");
270 }
271
Manuel Bottini2b84be52020-04-08 10:15:51 +0100272 _reduction_kernels_vector[0].configure(compile_context, input, &_results_vector[0], axis, first_kernel_op);
273 _border_handlers_vector[0].configure(compile_context, input, _reduction_kernels_vector[0].border_size(), BorderMode::CONSTANT, pixelValue);
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100274
275 // Apply ReductionOperation on intermediate stages
276 for(unsigned int i = 1; i < _num_of_stages - 1; ++i)
277 {
Michalis Spyroubcfd09a2019-05-01 13:03:59 +0100278 _memory_group.manage(&_results_vector[i]);
Manuel Bottini2b84be52020-04-08 10:15:51 +0100279 _reduction_kernels_vector[i].configure(compile_context, &_results_vector[i - 1], &_results_vector[i], axis, intermediate_kernel_op);
280 _border_handlers_vector[i].configure(compile_context, &_results_vector[i - 1], _reduction_kernels_vector[i].border_size(), BorderMode::CONSTANT, pixelValue);
Manuel Bottinib412fab2018-12-10 17:40:23 +0000281 _results_vector[i - 1].allocator()->allocate();
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100282 }
283
284 // Apply ReductionOperation on the last stage
285 const unsigned int last_stage = _num_of_stages - 1;
286 const unsigned int input_width = input->info()->dimension(0);
Sang-Hoon Park2697fd82019-10-15 16:49:24 +0100287
288 if(_is_reshape_required)
289 {
290 _memory_group.manage(&_results_vector.back());
291 }
292
Manuel Bottini2b84be52020-04-08 10:15:51 +0100293 _reduction_kernels_vector[last_stage].configure(compile_context, &_results_vector[last_stage - 1], output_internal, axis, last_kernel_op, input_width);
294 _border_handlers_vector[last_stage].configure(compile_context, &_results_vector[last_stage - 1], _reduction_kernels_vector[last_stage].border_size(), BorderMode::CONSTANT, pixelValue);
Manuel Bottinib412fab2018-12-10 17:40:23 +0000295 _results_vector[last_stage - 1].allocator()->allocate();
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100296 }
Sang-Hoon Park2697fd82019-10-15 16:49:24 +0100297
298 if(_is_reshape_required)
299 {
Michalis Spyrou2aad21a2020-07-02 12:43:53 +0100300 _reshape.configure(compile_context, &_results_vector.back(), output);
Sang-Hoon Park2697fd82019-10-15 16:49:24 +0100301 _results_vector.back().allocator()->allocate();
302 }
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100303}
304
305void CLReductionOperation::run()
306{
Georgios Pinitasda953f22019-04-02 17:27:03 +0100307 MemoryGroupResourceScope scope_mg(_memory_group);
Georgios Pinitas8a94e7c2017-09-15 19:06:47 +0100308
Manuel Bottinib412fab2018-12-10 17:40:23 +0000309 if(_is_serial)
310 {
311 CLScheduler::get().enqueue(_reduction_kernels_vector[0], false);
312 }
313 else
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100314 {
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100315 for(unsigned int i = 0; i < _num_of_stages; ++i)
316 {
317 CLScheduler::get().enqueue(_border_handlers_vector[i], false);
318 CLScheduler::get().enqueue(_reduction_kernels_vector[i], false);
319 }
320 }
Sang-Hoon Park2697fd82019-10-15 16:49:24 +0100321
322 if(_is_reshape_required)
323 {
Michalis Spyrou2aad21a2020-07-02 12:43:53 +0100324 _reshape.run();
Sang-Hoon Park2697fd82019-10-15 16:49:24 +0100325 }
John Richardson62385bc2018-04-20 13:11:36 +0100326}
Sang-Hoon Park2697fd82019-10-15 16:49:24 +0100327} // namespace arm_compute