blob: 91ee83e5305760ea6f3da320cfc92b773ebd15c3 [file] [log] [blame]
Michalis Spyrou04f089c2017-08-08 17:42:38 +01001/*
Manuel Bottinib412fab2018-12-10 17:40:23 +00002 * Copyright (c) 2017-2019 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/core/CL/kernels/CLReductionOperationKernel.h"
25
26#include "arm_compute/core/AccessWindowStatic.h"
27#include "arm_compute/core/CL/CLHelpers.h"
28#include "arm_compute/core/CL/CLKernelLibrary.h"
Georgios Pinitas8f5802f2019-02-22 11:08:32 +000029#include "arm_compute/core/CL/CLValidate.h"
Michalis Spyrou04f089c2017-08-08 17:42:38 +010030#include "arm_compute/core/CL/ICLTensor.h"
Michalis Spyrou04f089c2017-08-08 17:42:38 +010031#include "arm_compute/core/Helpers.h"
32#include "arm_compute/core/TensorInfo.h"
33#include "arm_compute/core/Utils.h"
34#include "arm_compute/core/Validate.h"
35#include "arm_compute/core/Window.h"
Sang-Hoon Park2697fd82019-10-15 16:49:24 +010036#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Michalis Spyrou04f089c2017-08-08 17:42:38 +010037
38#include "support/ToolchainSupport.h"
39
Michele Di Giorgio9637b2e2019-09-23 16:49:49 +010040namespace arm_compute
41{
John Richardson62385bc2018-04-20 13:11:36 +010042namespace
43{
Manuel Bottini34f88dd2019-10-18 10:37:46 +000044// OpenCL kernel requires input width to be a power of 2 for x-axis.
45constexpr unsigned int border_val = 64;
Michalis Spyrou25747e22018-08-08 17:12:38 +010046
Michalis Spyrou7e9391b2018-10-05 14:49:28 +010047Status validate_arguments(const ITensorInfo *input, const ITensorInfo *output, unsigned int axis, ReductionOperation op, unsigned int width)
John Richardson62385bc2018-04-20 13:11:36 +010048{
John Richardson62385bc2018-04-20 13:11:36 +010049 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
Georgios Pinitas8f5802f2019-02-22 11:08:32 +000050 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input);
Georgios Pinitas8be91482019-03-26 17:23:28 +000051 if(input->num_channels() == 1)
52 {
Michalis Spyroub9626ab2019-05-13 17:41:01 +010053 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::QASYMM8, DataType::S32, DataType::F16, DataType::F32);
Georgios Pinitas8be91482019-03-26 17:23:28 +000054 }
55 else
56 {
57 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 2, DataType::F32);
58 }
Michalis Spyrou8aaf93e2018-10-11 17:33:32 +010059 ARM_COMPUTE_RETURN_ERROR_ON_MSG(op == ReductionOperation::SUM_SQUARE && input->data_type() == DataType::QASYMM8, "Not supported reduction operation for QASYMM8");
John Richardson62385bc2018-04-20 13:11:36 +010060 ARM_COMPUTE_RETURN_ERROR_ON_MSG(axis >= TensorShape::num_max_dimensions, "Reduction axis greater than max number of dimensions");
Michalis Spyrou7e9391b2018-10-05 14:49:28 +010061 ARM_COMPUTE_RETURN_ERROR_ON_MSG(axis > 3, "Unsupported reduction axis");
62 ARM_COMPUTE_RETURN_ERROR_ON(op == ReductionOperation::MEAN_SUM && axis == 0 && width == 0 && input->data_type() != DataType::QASYMM8);
Manuel Bottini7b9998d2019-10-21 17:59:07 +010063 ARM_COMPUTE_RETURN_ERROR_ON_MSG(op == ReductionOperation::ARG_IDX_MAX || op == ReductionOperation::ARG_IDX_MIN, "Not supported reduction operation, use CLArgMinMaxLayer");
John Richardson62385bc2018-04-20 13:11:36 +010064
65 if(output->total_size() != 0)
66 {
Manuel Bottini7b9998d2019-10-21 17:59:07 +010067 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
68 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_QUANTIZATION_INFO(input, output);
John Richardson62385bc2018-04-20 13:11:36 +010069 }
70
71 return Status{};
72}
73
Michalis Spyrou7930db42018-11-22 17:36:28 +000074std::tuple<Status, Window> validate_and_configure_window(ITensorInfo *input, ITensorInfo *output, unsigned int axis, ReductionOperation op)
John Richardson62385bc2018-04-20 13:11:36 +010075{
76 // Output tensor auto initialization if not yet initialized
Manuel Bottini7b9998d2019-10-21 17:59:07 +010077 const TensorShape output_shape = arm_compute::misc::shape_calculator::compute_reduced_shape(input->tensor_shape(), axis, true);
78 DataType output_data_type = input->data_type();
Georgios Pinitas8be91482019-03-26 17:23:28 +000079 auto_init_if_empty(*output, input->clone()->set_tensor_shape(output_shape).set_data_type(output_data_type).reset_padding().set_is_resizable(true));
John Richardson62385bc2018-04-20 13:11:36 +010080
Michalis Spyrou7e9391b2018-10-05 14:49:28 +010081 const unsigned int num_elems_processed_per_iteration = (is_data_type_quantized(input->data_type()) && (axis == 0)) ? 1 : 16;
82 Window win = calculate_max_window(*input, Steps(num_elems_processed_per_iteration));
83 bool window_changed = false;
Sang-Hoon Park2697fd82019-10-15 16:49:24 +010084 const bool is_serial_op = needs_serialized_reduction(op, input->data_type(), axis);
John Richardson62385bc2018-04-20 13:11:36 +010085
Michalis Spyrou7e9391b2018-10-05 14:49:28 +010086 switch(axis)
87 {
88 case 0:
89 {
Manuel Bottinib412fab2018-12-10 17:40:23 +000090 if(is_serial_op)
Michalis Spyrou7e9391b2018-10-05 14:49:28 +010091 {
92 AccessWindowHorizontal input_access(input, 0, input->dimension(0));
93 AccessWindowHorizontal output_access(output, 0, 1);
94 window_changed = update_window_and_padding(win, input_access, output_access);
95 output_access.set_valid_region(win, ValidRegion(Coordinates(), output->tensor_shape()));
96 }
97 else
98 {
Manuel Bottini34f88dd2019-10-18 10:37:46 +000099 const unsigned int border_width = ((input->dimension(0) % border_val) != 0) ? border_val - input->dimension(0) % border_val : 0;
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100100 AccessWindowStatic input_access(input, 0, 0, input->dimension(0) + border_width, 1);
101 AccessWindowHorizontal output_access(output, 0, 1);
102 window_changed = update_window_and_padding(win, input_access, output_access);
103 output_access.set_valid_region(win, ValidRegion(Coordinates(), output->tensor_shape()));
104 }
105 }
106 break;
107 case 1:
108 case 2:
109 case 3:
110 {
111 AccessWindowHorizontal input_access(input, 0, num_elems_processed_per_iteration);
112 AccessWindowHorizontal output_access(output, 0, num_elems_processed_per_iteration);
113 window_changed = update_window_and_padding(win, input_access, output_access);
114 output_access.set_valid_region(win, ValidRegion(Coordinates(), output->tensor_shape()));
115 }
116 break;
117 default:
118 ARM_COMPUTE_ERROR("Not supported");
119 }
John Richardson62385bc2018-04-20 13:11:36 +0100120
121 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
122
123 return std::make_tuple(err, win);
124}
125} // namespace
126
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100127CLReductionOperationKernel::CLReductionOperationKernel()
128 : _input(nullptr), _output(nullptr), _reduction_axis(0), _op(ReductionOperation::SUM_SQUARE), _border_size()
129{
130}
131
132BorderSize CLReductionOperationKernel::border_size() const
133{
134 return _border_size;
135}
136
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100137void CLReductionOperationKernel::configure(const ICLTensor *input, ICLTensor *output, unsigned int axis, ReductionOperation op, unsigned int width)
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100138{
John Richardson62385bc2018-04-20 13:11:36 +0100139 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100140
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100141 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), output->info(), axis, op, width));
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100142
143 _input = input;
144 _output = output;
145 _reduction_axis = axis;
146 _op = op;
Michalis Spyrou343722b2018-06-05 13:04:40 +0100147
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100148 // Set build options
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100149 CLBuildOptions build_opts;
150 std::string data_type_promoted = get_cl_type_from_data_type(input->info()->data_type());
Michalis Spyrou7930db42018-11-22 17:36:28 +0000151 if(is_data_type_quantized(input->info()->data_type()))
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100152 {
153 data_type_promoted = "uint";
154 }
Michalis Spyroub9626ab2019-05-13 17:41:01 +0100155
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100156 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(input->info()->data_type()));
157 build_opts.add_option("-DDATA_TYPE_PROMOTED=" + data_type_promoted);
Michalis Spyroub9626ab2019-05-13 17:41:01 +0100158 build_opts.add_option_if(is_data_type_float(input->info()->data_type()), "-DFLOAT_DATA_TYPE");
Manuel Bottinib412fab2018-12-10 17:40:23 +0000159 build_opts.add_option_if(op == ReductionOperation::SUM_SQUARE, "-DSUM_SQUARE");
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100160 build_opts.add_option_if(op == ReductionOperation::MEAN_SUM, "-DMEAN");
Manuel Bottinib412fab2018-12-10 17:40:23 +0000161 build_opts.add_option_if(op == ReductionOperation::PROD, "-DPROD");
Usama Arifb2890502019-05-21 11:48:37 +0100162 build_opts.add_option_if(op == ReductionOperation::MIN, "-DMIN");
Usama Arif048b0f32019-05-22 16:32:27 +0100163 build_opts.add_option_if(op == ReductionOperation::MAX, "-DMAX");
Georgios Pinitas8be91482019-03-26 17:23:28 +0000164 build_opts.add_option_if(input->info()->num_channels() == 2, "-DCOMPLEX");
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100165
166 switch(op)
167 {
168 case ReductionOperation::SUM_SQUARE:
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100169 build_opts.add_option(("-DOPERATION=square_sum"));
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100170 break;
171 case ReductionOperation::SUM:
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100172 case ReductionOperation::MEAN_SUM:
173 build_opts.add_option(("-DOPERATION=sum"));
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100174 break;
Usama Arifb2890502019-05-21 11:48:37 +0100175 case ReductionOperation::MIN:
Usama Arif048b0f32019-05-22 16:32:27 +0100176 case ReductionOperation::MAX:
Michalis Spyrou7930db42018-11-22 17:36:28 +0000177 break;
Manuel Bottinib412fab2018-12-10 17:40:23 +0000178 case ReductionOperation::PROD:
179 build_opts.add_option(("-DOPERATION=product"));
180 break;
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100181 default:
182 ARM_COMPUTE_ERROR("Unsupported reduction operation");
183 }
184
185 // Create kernel
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100186 cl::NDRange lws_hint = CLKernelLibrary::get().default_ndrange();
187 std::string kernel_axis_name;
Sang-Hoon Park2697fd82019-10-15 16:49:24 +0100188 const bool is_serial_op = needs_serialized_reduction(_op, _input->info()->data_type(), _reduction_axis);
189
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100190 switch(axis)
191 {
192 case 0:
193 {
Manuel Bottinib412fab2018-12-10 17:40:23 +0000194 if(is_serial_op)
195 {
196 build_opts.add_option("-DWIDTH=" + support::cpp11::to_string(input->info()->dimension(0)));
Manuel Bottini34f88dd2019-10-18 10:37:46 +0000197 build_opts.add_option_if_else(_input->info()->data_type() == DataType::F16, "-DCOND_DATA_TYPE=short", "-DCOND_DATA_TYPE=int");
Manuel Bottinib412fab2018-12-10 17:40:23 +0000198 kernel_axis_name = "non_parallel_x";
199 }
200 else
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100201 {
Manuel Bottini34f88dd2019-10-18 10:37:46 +0000202 build_opts.add_option_if(op == ReductionOperation::MEAN_SUM, "-DWIDTH=" + support::cpp11::to_string(width));
203 const unsigned int width_leftover = input->info()->dimension(0) % border_val;
204 const unsigned int border_width = (width_leftover != 0) ? border_val - width_leftover : 0;
Manuel Bottini34f88dd2019-10-18 10:37:46 +0000205 kernel_axis_name = "x";
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100206
Manuel Bottini7b9998d2019-10-21 17:59:07 +0100207 lws_hint = create_lws_hint_parallel_implementations(input->info()->dimension(0), border_val);
Manuel Bottini34f88dd2019-10-18 10:37:46 +0000208 _border_size = BorderSize(0, border_width, 0, 0);
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100209 }
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100210 }
211 break;
212 case 1:
213 build_opts.add_option("-DHEIGHT=" + support::cpp11::to_string(input->info()->dimension(1)));
214 kernel_axis_name = "y";
215 break;
216 case 2:
217 build_opts.add_option("-DDEPTH=" + support::cpp11::to_string(input->info()->dimension(2)));
218 kernel_axis_name = "z";
219 break;
220 case 3:
221 build_opts.add_option("-DDEPTH=" + support::cpp11::to_string(input->info()->dimension(2)));
222 build_opts.add_option("-DBATCH=" + support::cpp11::to_string(input->info()->dimension(3)));
223 kernel_axis_name = "w";
224 break;
225 default:
226 ARM_COMPUTE_ERROR("Not supported");
227 }
228 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel("reduction_operation_" + kernel_axis_name, build_opts.options()));
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100229
230 // Configure kernel window
Manuel Bottini34f88dd2019-10-18 10:37:46 +0000231 auto win_config = validate_and_configure_window(_input->info(), _output->info(), axis, op);
232
233 ARM_COMPUTE_ERROR_THROW_ON(std::get<0>(win_config));
234
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100235 ICLKernel::configure_internal(std::get<1>(win_config), lws_hint);
John Richardson62385bc2018-04-20 13:11:36 +0100236}
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100237
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100238Status CLReductionOperationKernel::validate(const ITensorInfo *input, const ITensorInfo *output, unsigned int axis, ReductionOperation op, unsigned int width)
John Richardson62385bc2018-04-20 13:11:36 +0100239{
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100240 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output, axis, op, width));
Michalis Spyrou7930db42018-11-22 17:36:28 +0000241 ARM_COMPUTE_RETURN_ON_ERROR(std::get<0>(validate_and_configure_window(input->clone().get(), output->clone().get(), axis, op)));
John Richardson62385bc2018-04-20 13:11:36 +0100242
243 return Status{};
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100244}
245
246void CLReductionOperationKernel::run(const Window &window, cl::CommandQueue &queue)
247{
248 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
249 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IKernel::window(), window);
Manuel Bottini34f88dd2019-10-18 10:37:46 +0000250
Sang-Hoon Park2697fd82019-10-15 16:49:24 +0100251 const bool is_serial_op = needs_serialized_reduction(_op, _input->info()->data_type(), _reduction_axis);
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100252 switch(_reduction_axis)
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100253 {
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100254 case 0:
255 {
256 // We use parallel reduction only in non quantized types
Manuel Bottinib412fab2018-12-10 17:40:23 +0000257 if(is_serial_op)
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100258 {
259 // Get first input and output slices
260 Window window_in{ window };
261 window_in.set(Window::DimX, Window::Dimension(0, _input->info()->dimension(0), _input->info()->dimension(0)));
262
263 Window in_slice = window.first_slice_window_1D();
264 Window out_slice = window.first_slice_window_1D();
265
266 do
267 {
268 unsigned int idx = 0;
269 add_1D_tensor_argument(idx, _input, in_slice);
270 add_1D_tensor_argument(idx, _output, out_slice);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100271 enqueue(queue, *this, in_slice, lws_hint());
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100272 }
273 while(window_in.slide_window_slice_1D(in_slice) && window.slide_window_slice_1D(out_slice));
274 }
Manuel Bottinib412fab2018-12-10 17:40:23 +0000275 else
276 {
277 // Set out window
278 Window out_window(window);
279 out_window.set(Window::DimX, Window::Dimension(0, 0, 0));
280
281 // Get first input and output slices
282 Window in_slice = window.first_slice_window_2D();
283 Window out_slice = out_window.first_slice_window_2D();
284
285 // Reshape window
Manuel Bottini34f88dd2019-10-18 10:37:46 +0000286 const unsigned int border_width = ((in_slice.x().end() % border_val) != 0) ? border_val - in_slice.x().end() % border_val : 0;
Manuel Bottinib412fab2018-12-10 17:40:23 +0000287 in_slice.set(Window::DimX, Window::Dimension(in_slice.x().start(), in_slice.x().end() + border_width, in_slice.x().step()));
288
289 // Set local sums buffer
Manuel Bottini34f88dd2019-10-18 10:37:46 +0000290 unsigned int local_res_size = lws_hint()[0] * _input->info()->element_size();
Manuel Bottinib412fab2018-12-10 17:40:23 +0000291 _kernel.setArg(num_arguments_per_2D_tensor() * 2, local_res_size, nullptr);
292
293 do
294 {
295 unsigned int idx = 0;
296 add_2D_tensor_argument(idx, _input, in_slice);
297 add_2D_tensor_argument(idx, _output, out_slice);
298 enqueue(queue, *this, in_slice, lws_hint());
299 }
300 while(window.slide_window_slice_2D(in_slice) && window.slide_window_slice_2D(out_slice));
301 }
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100302 }
303 break;
304 case 1:
305 {
306 // Get first input and output slices
307 Window window_in{ window };
308 window_in.set(Window::DimY, Window::Dimension(0, _input->info()->dimension(1), _input->info()->dimension(1)));
309 Window in_slice = window_in.first_slice_window_2D();
310 Window out_slice = window.first_slice_window_2D();
311
312 do
313 {
314 unsigned int idx = 0;
315 add_2D_tensor_argument(idx, _input, in_slice);
316 add_2D_tensor_argument(idx, _output, out_slice);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100317 enqueue(queue, *this, in_slice, lws_hint());
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100318 }
319 while(window_in.slide_window_slice_2D(in_slice) && window.slide_window_slice_2D(out_slice));
320 }
321 break;
322 case 2:
323 {
324 // Get first input and output slices
325 Window window_in{ window };
326 window_in.set(Window::DimZ, Window::Dimension(0, _input->info()->dimension(2), _input->info()->dimension(2)));
327 Window in_slice = window_in.first_slice_window_3D();
328 Window out_slice = window.first_slice_window_3D();
329
330 do
331 {
332 unsigned int idx = 0;
333 add_3D_tensor_argument(idx, _input, in_slice);
334 add_3D_tensor_argument(idx, _output, out_slice);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100335 enqueue(queue, *this, in_slice, lws_hint());
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100336 }
337 while(window_in.slide_window_slice_3D(in_slice) && window.slide_window_slice_3D(out_slice));
338 }
339 break;
340 case 3:
341 {
342 // Get first input and output slices
343 Window window_in{ window };
344 window_in.set(3, Window::Dimension(0, 1, 1));
345 Window in_slice = window_in.first_slice_window_4D();
346 Window out_slice = window.first_slice_window_4D();
347
348 do
349 {
350 unsigned int idx = 0;
351 add_4D_tensor_argument(idx, _input, in_slice);
352 add_4D_tensor_argument(idx, _output, out_slice);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100353 enqueue(queue, *this, in_slice, lws_hint());
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100354 }
355 while(window_in.slide_window_slice_4D(in_slice) && window.slide_window_slice_4D(out_slice));
356 }
357 break;
358 default:
359 ARM_COMPUTE_ERROR("Not supported");
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100360 }
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100361}
Manuel Bottini34f88dd2019-10-18 10:37:46 +0000362} // namespace arm_compute