blob: f40d9459449471b746182d68a5f71e78be393c19 [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 Parkbef7fa22020-10-21 15:58:54 +010033#include "src/core/CL/kernels/CLFillBorderKernel.h"
34#include "src/core/CL/kernels/CLReductionOperationKernel.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010035#include "src/core/helpers/AutoConfiguration.h"
36#include "src/runtime/Utils.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 Parkbef7fa22020-10-21 15:58:54 +010046CLReductionOperation::~CLReductionOperation() = default;
47
Sang-Hoon Park2697fd82019-10-15 16:49:24 +010048Status CLReductionOperation::validate(const ITensorInfo *input, const ITensorInfo *output, unsigned int axis, ReductionOperation op, bool keep_dims)
John Richardson62385bc2018-04-20 13:11:36 +010049{
Manuel Bottini7b9998d2019-10-21 17:59:07 +010050 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Sang-Hoon Park2697fd82019-10-15 16:49:24 +010051 ARM_COMPUTE_RETURN_ERROR_ON_MSG(axis >= TensorShape::num_max_dimensions, "Reduction axis greater than max number of dimensions");
52 ARM_COMPUTE_RETURN_ERROR_ON_MSG(axis > 3, "Unsupported reduction axis");
53
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010054 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 +010055 const bool is_serial = needs_serialized_reduction(op, input->data_type(), axis);
Manuel Bottini7b9998d2019-10-21 17:59:07 +010056 const bool is_reshape_required = !keep_dims;
Sang-Hoon Park2697fd82019-10-15 16:49:24 +010057
Manuel Bottini7b9998d2019-10-21 17:59:07 +010058 if(is_reshape_required && output->total_size() != 0)
Sang-Hoon Park2697fd82019-10-15 16:49:24 +010059 {
60 const TensorInfo expected_output_shape = output->clone()->set_tensor_shape(arm_compute::misc::shape_calculator::compute_reduced_shape(input->tensor_shape(), axis, keep_dims));
61 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(&expected_output_shape, output);
62 }
63
64 auto *output_internal = output;
65
66 TensorInfo output_before_reshape;
67 const auto input_shape = input->tensor_shape();
68 const auto input_data_type = input->data_type();
69 const auto input_num_channles = input->num_channels();
70 const auto input_qinfo = input->quantization_info();
Manuel Bottini7b9998d2019-10-21 17:59:07 +010071 const auto output_data_type = output->data_type();
Sang-Hoon Park2697fd82019-10-15 16:49:24 +010072
73 auto initialize_tensorinfo = [](TensorInfo & ti, TensorShape shape, DataType data_type, int num_channels, QuantizationInfo qinfo)
74 {
75 ti.set_data_type(data_type).set_tensor_shape(shape).set_num_channels(num_channels).set_quantization_info(qinfo);
76 };
77
78 if(is_reshape_required)
79 {
80 auto shape_before_reshape = input_shape;
81 shape_before_reshape.set(axis, 1);
82 initialize_tensorinfo(output_before_reshape, shape_before_reshape, output_data_type, input_num_channles, input_qinfo);
83 output_internal = &output_before_reshape;
84 }
85
Manuel Bottinib412fab2018-12-10 17:40:23 +000086 if(is_serial)
87 {
Sang-Hoon Park2697fd82019-10-15 16:49:24 +010088 ARM_COMPUTE_RETURN_ON_ERROR(CLReductionOperationKernel::validate(input, output_internal, axis, op));
Manuel Bottinib412fab2018-12-10 17:40:23 +000089 }
90 else
John Richardson62385bc2018-04-20 13:11:36 +010091 {
Michalis Spyrou7e9391b2018-10-05 14:49:28 +010092 // Create temporary tensor infos
Michalis Spyroubcfd09a2019-05-01 13:03:59 +010093 std::vector<TensorInfo> sums_vector(num_of_stages - 1);
Michalis Spyrou7e9391b2018-10-05 14:49:28 +010094
95 // Create intermediate tensor info
Sang-Hoon Park2697fd82019-10-15 16:49:24 +010096 TensorShape shape{ input_shape };
97
98 shape.set(0, ceil(shape.x() / 128.f));
Michalis Spyrou7e9391b2018-10-05 14:49:28 +010099
100 for(unsigned int i = 0; i < num_of_stages - 1; i++)
101 {
Sang-Hoon Park2697fd82019-10-15 16:49:24 +0100102 initialize_tensorinfo(sums_vector[i], shape, input_data_type, input_num_channles, input_qinfo);
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100103 }
104
Michalis Spyroue55a0132018-10-26 10:48:56 +0100105 ReductionOperation first_kernel_op;
Manuel Bottinib412fab2018-12-10 17:40:23 +0000106 ReductionOperation intermediate_kernel_op;
Michalis Spyroue55a0132018-10-26 10:48:56 +0100107 ReductionOperation last_kernel_op;
108 switch(op)
109 {
110 case ReductionOperation::SUM:
111 case ReductionOperation::MEAN_SUM:
Manuel Bottinib412fab2018-12-10 17:40:23 +0000112 first_kernel_op = ReductionOperation::SUM;
113 intermediate_kernel_op = ReductionOperation::SUM;
114 last_kernel_op = op;
Michalis Spyroue55a0132018-10-26 10:48:56 +0100115 break;
116 case ReductionOperation::SUM_SQUARE:
Manuel Bottinib412fab2018-12-10 17:40:23 +0000117 first_kernel_op = ReductionOperation::SUM_SQUARE;
118 intermediate_kernel_op = ReductionOperation::SUM;
119 last_kernel_op = ReductionOperation::SUM;
120 break;
121 case ReductionOperation::PROD:
122 first_kernel_op = ReductionOperation::PROD;
123 intermediate_kernel_op = ReductionOperation::PROD;
124 last_kernel_op = ReductionOperation::PROD;
Michalis Spyroue55a0132018-10-26 10:48:56 +0100125 break;
Usama Arifb2890502019-05-21 11:48:37 +0100126 case ReductionOperation::MIN:
127 first_kernel_op = ReductionOperation::MIN;
128 intermediate_kernel_op = ReductionOperation::MIN;
129 last_kernel_op = ReductionOperation::MIN;
130 break;
Usama Arif048b0f32019-05-22 16:32:27 +0100131 case ReductionOperation::MAX:
132 first_kernel_op = ReductionOperation::MAX;
133 intermediate_kernel_op = ReductionOperation::MAX;
134 last_kernel_op = ReductionOperation::MAX;
135 break;
Michalis Spyroue55a0132018-10-26 10:48:56 +0100136 default:
137 ARM_COMPUTE_ERROR("Not supported");
138 }
139
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100140 // Validate ReductionOperation only on first kernel
Michalis Spyroubcfd09a2019-05-01 13:03:59 +0100141 ARM_COMPUTE_RETURN_ON_ERROR(CLReductionOperationKernel::validate(input, &sums_vector[0], axis, first_kernel_op));
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100142
143 // Validate ReductionOperation on intermediate stages
144 for(unsigned int i = 1; i < num_of_stages - 1; ++i)
145 {
Michalis Spyroubcfd09a2019-05-01 13:03:59 +0100146 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 +0100147 }
148
149 // Validate ReductionOperation on the last stage
150 const unsigned int last_stage = num_of_stages - 1;
Sang-Hoon Park2697fd82019-10-15 16:49:24 +0100151 ARM_COMPUTE_RETURN_ON_ERROR(CLReductionOperationKernel::validate(&sums_vector[last_stage - 1], output_internal, axis, last_kernel_op, input->dimension(0)));
152 }
153
154 if(is_reshape_required)
155 {
Michalis Spyrou2aad21a2020-07-02 12:43:53 +0100156 ARM_COMPUTE_RETURN_ON_ERROR(CLReshapeLayer::validate(output_internal, output));
John Richardson62385bc2018-04-20 13:11:36 +0100157 }
John Richardson62385bc2018-04-20 13:11:36 +0100158
John Richardson62385bc2018-04-20 13:11:36 +0100159 return Status{};
160}
161
Sang-Hoon Park2697fd82019-10-15 16:49:24 +0100162ICLTensor *CLReductionOperation::configure_intermediate_result_vector(ICLTensor *input, ICLTensor *output)
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100163{
Sang-Hoon Park2697fd82019-10-15 16:49:24 +0100164 if(!_is_reshape_required && _is_serial)
165 {
166 return output;
167 }
168
Manuel Bottini7b9998d2019-10-21 17:59:07 +0100169 auto intermediate_result_vector_size = _is_serial ? 1 : _num_of_stages;
Sang-Hoon Park2697fd82019-10-15 16:49:24 +0100170
171 if(!_is_reshape_required)
172 {
173 --intermediate_result_vector_size;
174 }
175
176 _results_vector.resize(intermediate_result_vector_size);
177 auto shape = input->info()->tensor_shape();
178
179 shape.set(_reduction_axis, _is_serial ? 1 : ceil(shape.x() / 128.f));
180
181 for(auto &v : _results_vector)
182 {
183 if(&v == &_results_vector.back() && _is_reshape_required)
184 {
185 shape.set(_reduction_axis, 1);
186 }
187 v.allocator()->init(input->info()->clone()->set_tensor_shape(shape));
188 }
189
Sang-Hoon Park2697fd82019-10-15 16:49:24 +0100190 return _is_reshape_required ? &_results_vector.back() : output;
191}
192
193void CLReductionOperation::configure(ICLTensor *input, ICLTensor *output, unsigned int axis, ReductionOperation op, bool keep_dims)
194{
Manuel Bottini2b84be52020-04-08 10:15:51 +0100195 configure(CLKernelLibrary::get().get_compile_context(), input, output, axis, op, keep_dims);
196}
197
198void CLReductionOperation::configure(const CLCompileContext &compile_context, ICLTensor *input, ICLTensor *output, unsigned int axis, ReductionOperation op, bool keep_dims)
199{
Manuel Bottini7b9998d2019-10-21 17:59:07 +0100200 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +0100201 _num_of_stages = utils::calculate_number_of_stages_only_x_axis(input->info()->dimension(0), axis);
Manuel Bottini7b9998d2019-10-21 17:59:07 +0100202 _reduction_axis = axis;
203 _is_serial = needs_serialized_reduction(op, input->info()->data_type(), axis);
204 _is_reshape_required = !keep_dims;
Sang-Hoon Park2697fd82019-10-15 16:49:24 +0100205
206 auto *output_internal = configure_intermediate_result_vector(input, output);
207
Sang-Hoon Park2697fd82019-10-15 16:49:24 +0100208 if(_is_reshape_required)
209 {
210 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 +0100211 const auto output_data_type = input->info()->data_type();
Sang-Hoon Park2697fd82019-10-15 16:49:24 +0100212 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));
213 }
Georgios Pinitasaec513c2017-09-15 19:36:30 +0100214
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100215 // Configure reduction operation kernels
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +0100216 _reduction_kernels_vector.reserve(_num_of_stages);
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100217
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100218 // Create temporary tensors
Manuel Bottinib412fab2018-12-10 17:40:23 +0000219 if(_is_serial)
220 {
Sang-Hoon Park2697fd82019-10-15 16:49:24 +0100221 if(_is_reshape_required)
222 {
223 _memory_group.manage(&_results_vector.back());
224 }
225
Georgios Pinitas40f51a62020-11-21 03:04:18 +0000226 _reduction_kernels_vector.emplace_back(std::make_unique<CLReductionOperationKernel>());
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +0100227 _reduction_kernels_vector[0]->configure(compile_context, input, output_internal, axis, op, 0);
Manuel Bottinib412fab2018-12-10 17:40:23 +0000228 }
229 else
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100230 {
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +0100231 _border_handlers_vector.reserve(_num_of_stages);
Michalis Spyroubcfd09a2019-05-01 13:03:59 +0100232 _memory_group.manage(&_results_vector[0]);
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100233
234 ReductionOperation first_kernel_op;
Manuel Bottinib412fab2018-12-10 17:40:23 +0000235 ReductionOperation intermediate_kernel_op;
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100236 ReductionOperation last_kernel_op;
Manuel Bottinib412fab2018-12-10 17:40:23 +0000237 PixelValue pixelValue;
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100238 switch(op)
239 {
240 case ReductionOperation::SUM:
241 case ReductionOperation::MEAN_SUM:
Manuel Bottinib412fab2018-12-10 17:40:23 +0000242 first_kernel_op = ReductionOperation::SUM;
243 intermediate_kernel_op = ReductionOperation::SUM;
244 last_kernel_op = op;
Manuel Bottini55e16782019-01-15 13:21:57 +0000245 pixelValue = PixelValue();
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100246 break;
247 case ReductionOperation::SUM_SQUARE:
Manuel Bottinib412fab2018-12-10 17:40:23 +0000248 first_kernel_op = ReductionOperation::SUM_SQUARE;
249 intermediate_kernel_op = ReductionOperation::SUM;
250 last_kernel_op = ReductionOperation::SUM;
Manuel Bottini55e16782019-01-15 13:21:57 +0000251 pixelValue = PixelValue();
Manuel Bottinib412fab2018-12-10 17:40:23 +0000252 break;
253 case ReductionOperation::PROD:
254 first_kernel_op = ReductionOperation::PROD;
255 intermediate_kernel_op = ReductionOperation::PROD;
256 last_kernel_op = ReductionOperation::PROD;
257 pixelValue = PixelValue(1, input->info()->data_type());
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100258 break;
Usama Arifb2890502019-05-21 11:48:37 +0100259 case ReductionOperation::MIN:
260 first_kernel_op = ReductionOperation::MIN;
261 intermediate_kernel_op = ReductionOperation::MIN;
262 last_kernel_op = ReductionOperation::MIN;
Michele Di Giorgiof6f78762020-07-06 11:27:21 +0100263 pixelValue = std::get<1>(get_min_max(input->info()->data_type()));
Usama Arifb2890502019-05-21 11:48:37 +0100264 break;
Usama Arif048b0f32019-05-22 16:32:27 +0100265 case ReductionOperation::MAX:
266 first_kernel_op = ReductionOperation::MAX;
267 intermediate_kernel_op = ReductionOperation::MAX;
268 last_kernel_op = ReductionOperation::MAX;
Michele Di Giorgiof6f78762020-07-06 11:27:21 +0100269 pixelValue = std::get<0>(get_min_max(input->info()->data_type()));
Usama Arif048b0f32019-05-22 16:32:27 +0100270 break;
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100271 default:
272 ARM_COMPUTE_ERROR("Not supported");
273 }
274
Georgios Pinitas40f51a62020-11-21 03:04:18 +0000275 _reduction_kernels_vector.emplace_back(std::make_unique<CLReductionOperationKernel>());
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +0100276 _reduction_kernels_vector[0]->configure(compile_context, input, &_results_vector[0], axis, first_kernel_op);
277
Georgios Pinitas40f51a62020-11-21 03:04:18 +0000278 _border_handlers_vector.emplace_back(std::make_unique<CLFillBorderKernel>());
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +0100279 _border_handlers_vector[0]->configure(compile_context, input, _reduction_kernels_vector[0]->border_size(), BorderMode::CONSTANT, pixelValue);
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100280
281 // Apply ReductionOperation on intermediate stages
282 for(unsigned int i = 1; i < _num_of_stages - 1; ++i)
283 {
Michalis Spyroubcfd09a2019-05-01 13:03:59 +0100284 _memory_group.manage(&_results_vector[i]);
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +0100285
Georgios Pinitas40f51a62020-11-21 03:04:18 +0000286 _reduction_kernels_vector.emplace_back(std::make_unique<CLReductionOperationKernel>());
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +0100287 _reduction_kernels_vector[i]->configure(compile_context, &_results_vector[i - 1], &_results_vector[i], axis, intermediate_kernel_op);
288
Georgios Pinitas40f51a62020-11-21 03:04:18 +0000289 _border_handlers_vector.emplace_back(std::make_unique<CLFillBorderKernel>());
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +0100290 _border_handlers_vector[i]->configure(compile_context, &_results_vector[i - 1], _reduction_kernels_vector[i]->border_size(), BorderMode::CONSTANT, pixelValue);
291
Manuel Bottinib412fab2018-12-10 17:40:23 +0000292 _results_vector[i - 1].allocator()->allocate();
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100293 }
294
295 // Apply ReductionOperation on the last stage
296 const unsigned int last_stage = _num_of_stages - 1;
297 const unsigned int input_width = input->info()->dimension(0);
Sang-Hoon Park2697fd82019-10-15 16:49:24 +0100298
299 if(_is_reshape_required)
300 {
301 _memory_group.manage(&_results_vector.back());
302 }
303
Georgios Pinitas40f51a62020-11-21 03:04:18 +0000304 _reduction_kernels_vector.emplace_back(std::make_unique<CLReductionOperationKernel>());
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +0100305 _reduction_kernels_vector[last_stage]->configure(compile_context, &_results_vector[last_stage - 1], output_internal, axis, last_kernel_op, input_width);
306
Georgios Pinitas40f51a62020-11-21 03:04:18 +0000307 _border_handlers_vector.emplace_back(std::make_unique<CLFillBorderKernel>());
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +0100308 _border_handlers_vector[last_stage]->configure(compile_context, &_results_vector[last_stage - 1], _reduction_kernels_vector[last_stage]->border_size(), BorderMode::CONSTANT, pixelValue);
309
Manuel Bottinib412fab2018-12-10 17:40:23 +0000310 _results_vector[last_stage - 1].allocator()->allocate();
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100311 }
Sang-Hoon Park2697fd82019-10-15 16:49:24 +0100312
313 if(_is_reshape_required)
314 {
Michalis Spyrou2aad21a2020-07-02 12:43:53 +0100315 _reshape.configure(compile_context, &_results_vector.back(), output);
Sang-Hoon Park2697fd82019-10-15 16:49:24 +0100316 _results_vector.back().allocator()->allocate();
317 }
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100318}
319
320void CLReductionOperation::run()
321{
Georgios Pinitasda953f22019-04-02 17:27:03 +0100322 MemoryGroupResourceScope scope_mg(_memory_group);
Georgios Pinitas8a94e7c2017-09-15 19:06:47 +0100323
Manuel Bottinib412fab2018-12-10 17:40:23 +0000324 if(_is_serial)
325 {
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +0100326 CLScheduler::get().enqueue(*_reduction_kernels_vector[0], false);
Manuel Bottinib412fab2018-12-10 17:40:23 +0000327 }
328 else
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100329 {
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100330 for(unsigned int i = 0; i < _num_of_stages; ++i)
331 {
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +0100332 CLScheduler::get().enqueue(*_border_handlers_vector[i], false);
333 CLScheduler::get().enqueue(*_reduction_kernels_vector[i], false);
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100334 }
335 }
Sang-Hoon Park2697fd82019-10-15 16:49:24 +0100336
337 if(_is_reshape_required)
338 {
Michalis Spyrou2aad21a2020-07-02 12:43:53 +0100339 _reshape.run();
Sang-Hoon Park2697fd82019-10-15 16:49:24 +0100340 }
John Richardson62385bc2018-04-20 13:11:36 +0100341}
Sang-Hoon Park2697fd82019-10-15 16:49:24 +0100342} // namespace arm_compute