blob: 7423f4bc87d3943f1512226a8f42c7b2979cf5b4 [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"
Matthew Bentham92046462020-03-07 22:15:55 +000037#include "support/MemorySupport.h"
Michalis Spyrou04f089c2017-08-08 17:42:38 +010038
Sang-Hoon Park2697fd82019-10-15 16:49:24 +010039namespace arm_compute
40{
Georgios Pinitas8a94e7c2017-09-15 19:06:47 +010041CLReductionOperation::CLReductionOperation(std::shared_ptr<IMemoryManager> memory_manager)
Michele Di Giorgiof6f78762020-07-06 11:27:21 +010042 : _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 +010043 _is_reshape_required(false)
Michalis Spyrou04f089c2017-08-08 17:42:38 +010044{
45}
46
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010047CLReductionOperation::~CLReductionOperation() = default;
48
Sang-Hoon Park2697fd82019-10-15 16:49:24 +010049Status CLReductionOperation::validate(const ITensorInfo *input, const ITensorInfo *output, unsigned int axis, ReductionOperation op, bool keep_dims)
John Richardson62385bc2018-04-20 13:11:36 +010050{
Manuel Bottini7b9998d2019-10-21 17:59:07 +010051 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Sang-Hoon Park2697fd82019-10-15 16:49:24 +010052 ARM_COMPUTE_RETURN_ERROR_ON_MSG(axis >= TensorShape::num_max_dimensions, "Reduction axis greater than max number of dimensions");
53 ARM_COMPUTE_RETURN_ERROR_ON_MSG(axis > 3, "Unsupported reduction axis");
54
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010055 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 +010056 const bool is_serial = needs_serialized_reduction(op, input->data_type(), axis);
Manuel Bottini7b9998d2019-10-21 17:59:07 +010057 const bool is_reshape_required = !keep_dims;
Sang-Hoon Park2697fd82019-10-15 16:49:24 +010058
Manuel Bottini7b9998d2019-10-21 17:59:07 +010059 if(is_reshape_required && output->total_size() != 0)
Sang-Hoon Park2697fd82019-10-15 16:49:24 +010060 {
61 const TensorInfo expected_output_shape = output->clone()->set_tensor_shape(arm_compute::misc::shape_calculator::compute_reduced_shape(input->tensor_shape(), axis, keep_dims));
62 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(&expected_output_shape, output);
63 }
64
65 auto *output_internal = output;
66
67 TensorInfo output_before_reshape;
68 const auto input_shape = input->tensor_shape();
69 const auto input_data_type = input->data_type();
70 const auto input_num_channles = input->num_channels();
71 const auto input_qinfo = input->quantization_info();
Manuel Bottini7b9998d2019-10-21 17:59:07 +010072 const auto output_data_type = output->data_type();
Sang-Hoon Park2697fd82019-10-15 16:49:24 +010073
74 auto initialize_tensorinfo = [](TensorInfo & ti, TensorShape shape, DataType data_type, int num_channels, QuantizationInfo qinfo)
75 {
76 ti.set_data_type(data_type).set_tensor_shape(shape).set_num_channels(num_channels).set_quantization_info(qinfo);
77 };
78
79 if(is_reshape_required)
80 {
81 auto shape_before_reshape = input_shape;
82 shape_before_reshape.set(axis, 1);
83 initialize_tensorinfo(output_before_reshape, shape_before_reshape, output_data_type, input_num_channles, input_qinfo);
84 output_internal = &output_before_reshape;
85 }
86
Manuel Bottinib412fab2018-12-10 17:40:23 +000087 if(is_serial)
88 {
Sang-Hoon Park2697fd82019-10-15 16:49:24 +010089 ARM_COMPUTE_RETURN_ON_ERROR(CLReductionOperationKernel::validate(input, output_internal, axis, op));
Manuel Bottinib412fab2018-12-10 17:40:23 +000090 }
91 else
John Richardson62385bc2018-04-20 13:11:36 +010092 {
Michalis Spyrou7e9391b2018-10-05 14:49:28 +010093 // Create temporary tensor infos
Michalis Spyroubcfd09a2019-05-01 13:03:59 +010094 std::vector<TensorInfo> sums_vector(num_of_stages - 1);
Michalis Spyrou7e9391b2018-10-05 14:49:28 +010095
96 // Create intermediate tensor info
Sang-Hoon Park2697fd82019-10-15 16:49:24 +010097 TensorShape shape{ input_shape };
98
99 shape.set(0, ceil(shape.x() / 128.f));
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100100
101 for(unsigned int i = 0; i < num_of_stages - 1; i++)
102 {
Sang-Hoon Park2697fd82019-10-15 16:49:24 +0100103 initialize_tensorinfo(sums_vector[i], shape, input_data_type, input_num_channles, input_qinfo);
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100104 }
105
Michalis Spyroue55a0132018-10-26 10:48:56 +0100106 ReductionOperation first_kernel_op;
Manuel Bottinib412fab2018-12-10 17:40:23 +0000107 ReductionOperation intermediate_kernel_op;
Michalis Spyroue55a0132018-10-26 10:48:56 +0100108 ReductionOperation last_kernel_op;
109 switch(op)
110 {
111 case ReductionOperation::SUM:
112 case ReductionOperation::MEAN_SUM:
Manuel Bottinib412fab2018-12-10 17:40:23 +0000113 first_kernel_op = ReductionOperation::SUM;
114 intermediate_kernel_op = ReductionOperation::SUM;
115 last_kernel_op = op;
Michalis Spyroue55a0132018-10-26 10:48:56 +0100116 break;
117 case ReductionOperation::SUM_SQUARE:
Manuel Bottinib412fab2018-12-10 17:40:23 +0000118 first_kernel_op = ReductionOperation::SUM_SQUARE;
119 intermediate_kernel_op = ReductionOperation::SUM;
120 last_kernel_op = ReductionOperation::SUM;
121 break;
122 case ReductionOperation::PROD:
123 first_kernel_op = ReductionOperation::PROD;
124 intermediate_kernel_op = ReductionOperation::PROD;
125 last_kernel_op = ReductionOperation::PROD;
Michalis Spyroue55a0132018-10-26 10:48:56 +0100126 break;
Usama Arifb2890502019-05-21 11:48:37 +0100127 case ReductionOperation::MIN:
128 first_kernel_op = ReductionOperation::MIN;
129 intermediate_kernel_op = ReductionOperation::MIN;
130 last_kernel_op = ReductionOperation::MIN;
131 break;
Usama Arif048b0f32019-05-22 16:32:27 +0100132 case ReductionOperation::MAX:
133 first_kernel_op = ReductionOperation::MAX;
134 intermediate_kernel_op = ReductionOperation::MAX;
135 last_kernel_op = ReductionOperation::MAX;
136 break;
Michalis Spyroue55a0132018-10-26 10:48:56 +0100137 default:
138 ARM_COMPUTE_ERROR("Not supported");
139 }
140
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100141 // Validate ReductionOperation only on first kernel
Michalis Spyroubcfd09a2019-05-01 13:03:59 +0100142 ARM_COMPUTE_RETURN_ON_ERROR(CLReductionOperationKernel::validate(input, &sums_vector[0], axis, first_kernel_op));
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100143
144 // Validate ReductionOperation on intermediate stages
145 for(unsigned int i = 1; i < num_of_stages - 1; ++i)
146 {
Michalis Spyroubcfd09a2019-05-01 13:03:59 +0100147 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 +0100148 }
149
150 // Validate ReductionOperation on the last stage
151 const unsigned int last_stage = num_of_stages - 1;
Sang-Hoon Park2697fd82019-10-15 16:49:24 +0100152 ARM_COMPUTE_RETURN_ON_ERROR(CLReductionOperationKernel::validate(&sums_vector[last_stage - 1], output_internal, axis, last_kernel_op, input->dimension(0)));
153 }
154
155 if(is_reshape_required)
156 {
Michalis Spyrou2aad21a2020-07-02 12:43:53 +0100157 ARM_COMPUTE_RETURN_ON_ERROR(CLReshapeLayer::validate(output_internal, output));
John Richardson62385bc2018-04-20 13:11:36 +0100158 }
John Richardson62385bc2018-04-20 13:11:36 +0100159
John Richardson62385bc2018-04-20 13:11:36 +0100160 return Status{};
161}
162
Sang-Hoon Park2697fd82019-10-15 16:49:24 +0100163ICLTensor *CLReductionOperation::configure_intermediate_result_vector(ICLTensor *input, ICLTensor *output)
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100164{
Sang-Hoon Park2697fd82019-10-15 16:49:24 +0100165 if(!_is_reshape_required && _is_serial)
166 {
167 return output;
168 }
169
Manuel Bottini7b9998d2019-10-21 17:59:07 +0100170 auto intermediate_result_vector_size = _is_serial ? 1 : _num_of_stages;
Sang-Hoon Park2697fd82019-10-15 16:49:24 +0100171
172 if(!_is_reshape_required)
173 {
174 --intermediate_result_vector_size;
175 }
176
177 _results_vector.resize(intermediate_result_vector_size);
178 auto shape = input->info()->tensor_shape();
179
180 shape.set(_reduction_axis, _is_serial ? 1 : ceil(shape.x() / 128.f));
181
182 for(auto &v : _results_vector)
183 {
184 if(&v == &_results_vector.back() && _is_reshape_required)
185 {
186 shape.set(_reduction_axis, 1);
187 }
188 v.allocator()->init(input->info()->clone()->set_tensor_shape(shape));
189 }
190
Sang-Hoon Park2697fd82019-10-15 16:49:24 +0100191 return _is_reshape_required ? &_results_vector.back() : output;
192}
193
194void CLReductionOperation::configure(ICLTensor *input, ICLTensor *output, unsigned int axis, ReductionOperation op, bool keep_dims)
195{
Manuel Bottini2b84be52020-04-08 10:15:51 +0100196 configure(CLKernelLibrary::get().get_compile_context(), input, output, axis, op, keep_dims);
197}
198
199void CLReductionOperation::configure(const CLCompileContext &compile_context, ICLTensor *input, ICLTensor *output, unsigned int axis, ReductionOperation op, bool keep_dims)
200{
Manuel Bottini7b9998d2019-10-21 17:59:07 +0100201 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +0100202 _num_of_stages = utils::calculate_number_of_stages_only_x_axis(input->info()->dimension(0), axis);
Manuel Bottini7b9998d2019-10-21 17:59:07 +0100203 _reduction_axis = axis;
204 _is_serial = needs_serialized_reduction(op, input->info()->data_type(), axis);
205 _is_reshape_required = !keep_dims;
Sang-Hoon Park2697fd82019-10-15 16:49:24 +0100206
207 auto *output_internal = configure_intermediate_result_vector(input, output);
208
Sang-Hoon Park2697fd82019-10-15 16:49:24 +0100209 if(_is_reshape_required)
210 {
211 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 +0100212 const auto output_data_type = input->info()->data_type();
Sang-Hoon Park2697fd82019-10-15 16:49:24 +0100213 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));
214 }
Georgios Pinitasaec513c2017-09-15 19:36:30 +0100215
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100216 // Configure reduction operation kernels
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +0100217 _reduction_kernels_vector.reserve(_num_of_stages);
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100218
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100219 // Create temporary tensors
Manuel Bottinib412fab2018-12-10 17:40:23 +0000220 if(_is_serial)
221 {
Sang-Hoon Park2697fd82019-10-15 16:49:24 +0100222 if(_is_reshape_required)
223 {
224 _memory_group.manage(&_results_vector.back());
225 }
226
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +0100227 _reduction_kernels_vector.emplace_back(support::cpp14::make_unique<CLReductionOperationKernel>());
228 _reduction_kernels_vector[0]->configure(compile_context, input, output_internal, axis, op, 0);
Manuel Bottinib412fab2018-12-10 17:40:23 +0000229 }
230 else
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100231 {
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +0100232 _border_handlers_vector.reserve(_num_of_stages);
Michalis Spyroubcfd09a2019-05-01 13:03:59 +0100233 _memory_group.manage(&_results_vector[0]);
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100234
235 ReductionOperation first_kernel_op;
Manuel Bottinib412fab2018-12-10 17:40:23 +0000236 ReductionOperation intermediate_kernel_op;
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100237 ReductionOperation last_kernel_op;
Manuel Bottinib412fab2018-12-10 17:40:23 +0000238 PixelValue pixelValue;
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100239 switch(op)
240 {
241 case ReductionOperation::SUM:
242 case ReductionOperation::MEAN_SUM:
Manuel Bottinib412fab2018-12-10 17:40:23 +0000243 first_kernel_op = ReductionOperation::SUM;
244 intermediate_kernel_op = ReductionOperation::SUM;
245 last_kernel_op = op;
Manuel Bottini55e16782019-01-15 13:21:57 +0000246 pixelValue = PixelValue();
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100247 break;
248 case ReductionOperation::SUM_SQUARE:
Manuel Bottinib412fab2018-12-10 17:40:23 +0000249 first_kernel_op = ReductionOperation::SUM_SQUARE;
250 intermediate_kernel_op = ReductionOperation::SUM;
251 last_kernel_op = ReductionOperation::SUM;
Manuel Bottini55e16782019-01-15 13:21:57 +0000252 pixelValue = PixelValue();
Manuel Bottinib412fab2018-12-10 17:40:23 +0000253 break;
254 case ReductionOperation::PROD:
255 first_kernel_op = ReductionOperation::PROD;
256 intermediate_kernel_op = ReductionOperation::PROD;
257 last_kernel_op = ReductionOperation::PROD;
258 pixelValue = PixelValue(1, input->info()->data_type());
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100259 break;
Usama Arifb2890502019-05-21 11:48:37 +0100260 case ReductionOperation::MIN:
261 first_kernel_op = ReductionOperation::MIN;
262 intermediate_kernel_op = ReductionOperation::MIN;
263 last_kernel_op = ReductionOperation::MIN;
Michele Di Giorgiof6f78762020-07-06 11:27:21 +0100264 pixelValue = std::get<1>(get_min_max(input->info()->data_type()));
Usama Arifb2890502019-05-21 11:48:37 +0100265 break;
Usama Arif048b0f32019-05-22 16:32:27 +0100266 case ReductionOperation::MAX:
267 first_kernel_op = ReductionOperation::MAX;
268 intermediate_kernel_op = ReductionOperation::MAX;
269 last_kernel_op = ReductionOperation::MAX;
Michele Di Giorgiof6f78762020-07-06 11:27:21 +0100270 pixelValue = std::get<0>(get_min_max(input->info()->data_type()));
Usama Arif048b0f32019-05-22 16:32:27 +0100271 break;
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100272 default:
273 ARM_COMPUTE_ERROR("Not supported");
274 }
275
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +0100276 _reduction_kernels_vector.emplace_back(support::cpp14::make_unique<CLReductionOperationKernel>());
277 _reduction_kernels_vector[0]->configure(compile_context, input, &_results_vector[0], axis, first_kernel_op);
278
279 _border_handlers_vector.emplace_back(support::cpp14::make_unique<CLFillBorderKernel>());
280 _border_handlers_vector[0]->configure(compile_context, input, _reduction_kernels_vector[0]->border_size(), BorderMode::CONSTANT, pixelValue);
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100281
282 // Apply ReductionOperation on intermediate stages
283 for(unsigned int i = 1; i < _num_of_stages - 1; ++i)
284 {
Michalis Spyroubcfd09a2019-05-01 13:03:59 +0100285 _memory_group.manage(&_results_vector[i]);
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +0100286
287 _reduction_kernels_vector.emplace_back(support::cpp14::make_unique<CLReductionOperationKernel>());
288 _reduction_kernels_vector[i]->configure(compile_context, &_results_vector[i - 1], &_results_vector[i], axis, intermediate_kernel_op);
289
290 _border_handlers_vector.emplace_back(support::cpp14::make_unique<CLFillBorderKernel>());
291 _border_handlers_vector[i]->configure(compile_context, &_results_vector[i - 1], _reduction_kernels_vector[i]->border_size(), BorderMode::CONSTANT, pixelValue);
292
Manuel Bottinib412fab2018-12-10 17:40:23 +0000293 _results_vector[i - 1].allocator()->allocate();
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100294 }
295
296 // Apply ReductionOperation on the last stage
297 const unsigned int last_stage = _num_of_stages - 1;
298 const unsigned int input_width = input->info()->dimension(0);
Sang-Hoon Park2697fd82019-10-15 16:49:24 +0100299
300 if(_is_reshape_required)
301 {
302 _memory_group.manage(&_results_vector.back());
303 }
304
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +0100305 _reduction_kernels_vector.emplace_back(support::cpp14::make_unique<CLReductionOperationKernel>());
306 _reduction_kernels_vector[last_stage]->configure(compile_context, &_results_vector[last_stage - 1], output_internal, axis, last_kernel_op, input_width);
307
308 _border_handlers_vector.emplace_back(support::cpp14::make_unique<CLFillBorderKernel>());
309 _border_handlers_vector[last_stage]->configure(compile_context, &_results_vector[last_stage - 1], _reduction_kernels_vector[last_stage]->border_size(), BorderMode::CONSTANT, pixelValue);
310
Manuel Bottinib412fab2018-12-10 17:40:23 +0000311 _results_vector[last_stage - 1].allocator()->allocate();
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100312 }
Sang-Hoon Park2697fd82019-10-15 16:49:24 +0100313
314 if(_is_reshape_required)
315 {
Michalis Spyrou2aad21a2020-07-02 12:43:53 +0100316 _reshape.configure(compile_context, &_results_vector.back(), output);
Sang-Hoon Park2697fd82019-10-15 16:49:24 +0100317 _results_vector.back().allocator()->allocate();
318 }
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100319}
320
321void CLReductionOperation::run()
322{
Georgios Pinitasda953f22019-04-02 17:27:03 +0100323 MemoryGroupResourceScope scope_mg(_memory_group);
Georgios Pinitas8a94e7c2017-09-15 19:06:47 +0100324
Manuel Bottinib412fab2018-12-10 17:40:23 +0000325 if(_is_serial)
326 {
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +0100327 CLScheduler::get().enqueue(*_reduction_kernels_vector[0], false);
Manuel Bottinib412fab2018-12-10 17:40:23 +0000328 }
329 else
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100330 {
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100331 for(unsigned int i = 0; i < _num_of_stages; ++i)
332 {
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +0100333 CLScheduler::get().enqueue(*_border_handlers_vector[i], false);
334 CLScheduler::get().enqueue(*_reduction_kernels_vector[i], false);
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100335 }
336 }
Sang-Hoon Park2697fd82019-10-15 16:49:24 +0100337
338 if(_is_reshape_required)
339 {
Michalis Spyrou2aad21a2020-07-02 12:43:53 +0100340 _reshape.run();
Sang-Hoon Park2697fd82019-10-15 16:49:24 +0100341 }
John Richardson62385bc2018-04-20 13:11:36 +0100342}
Sang-Hoon Park2697fd82019-10-15 16:49:24 +0100343} // namespace arm_compute