blob: 4580968d38d55e812b0418310efdc19e811259ce [file] [log] [blame]
Gian Marco Iodice9285adb2019-09-05 16:10:27 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2019-2020 Arm Limited.
Gian Marco Iodice9285adb2019-09-05 16:10:27 +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/CLDepthwiseConvolutionLayerNativeKernel.h"
25
Gian Marco Iodice9285adb2019-09-05 16:10:27 +010026#include "arm_compute/core/CL/CLHelpers.h"
27#include "arm_compute/core/CL/CLKernelLibrary.h"
Gian Marco Iodice9285adb2019-09-05 16:10:27 +010028#include "arm_compute/core/CL/ICLKernel.h"
29#include "arm_compute/core/CL/ICLTensor.h"
Gian Marco Iodice9285adb2019-09-05 16:10:27 +010030#include "arm_compute/core/Helpers.h"
31#include "arm_compute/core/TensorInfo.h"
Gian Marco Iodice9285adb2019-09-05 16:10:27 +010032#include "arm_compute/core/Utils.h"
33#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Michele Di Giorgioa046e162019-10-08 09:36:26 +010034#include "arm_compute/core/utils/quantization/AsymmHelpers.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010035#include "src/core/CL/CLValidate.h"
36#include "src/core/helpers/AutoConfiguration.h"
37#include "src/core/helpers/WindowHelpers.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000038#include "support/StringSupport.h"
Gian Marco Iodice9285adb2019-09-05 16:10:27 +010039
40namespace arm_compute
41{
42namespace
43{
44Status validate_arguments(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *biases, const ITensorInfo *output, const DWCWeightsKernelInfo &dwc_weights_info,
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +010045 const DWCKernelInfo &dwc_info, const PadStrideInfo &conv_info, unsigned int depth_multiplier, const Size2D &dilation,
46 const ITensorInfo *output_multipliers, const ITensorInfo *output_shifts)
Gian Marco Iodice9285adb2019-09-05 16:10:27 +010047{
Michalis Spyrou6bff1952019-10-02 17:22:11 +010048 ARM_COMPUTE_UNUSED(dwc_info);
Michele Di Giorgio4cd4cde2020-01-06 14:07:44 +000049 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, weights, output);
Gian Marco Iodice9285adb2019-09-05 16:10:27 +010050 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input);
51 ARM_COMPUTE_RETURN_ERROR_ON_DATA_LAYOUT_NOT_IN(input, DataLayout::NHWC);
Michele Di Giorgio4cd4cde2020-01-06 14:07:44 +000052 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::QASYMM8, DataType::QASYMM8_SIGNED, DataType::F16, DataType::F32);
Gian Marco Iodice9285adb2019-09-05 16:10:27 +010053 ARM_COMPUTE_RETURN_ERROR_ON(depth_multiplier > 1 && dwc_weights_info.n0 != 1);
54 ARM_COMPUTE_RETURN_ERROR_ON(conv_info.stride().first < 1);
55 ARM_COMPUTE_RETURN_ERROR_ON(conv_info.stride().second < 1);
56 ARM_COMPUTE_RETURN_ERROR_ON((dilation.x() < 1) || (dilation.y() < 1));
57 const size_t idx_c = get_data_layout_dimension_index(input->data_layout(), DataLayoutDimension::CHANNEL);
58 ARM_COMPUTE_UNUSED(idx_c);
59 ARM_COMPUTE_RETURN_ERROR_ON(weights->dimension(idx_c) != (input->dimension(idx_c) * depth_multiplier));
60
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +010061 const TensorShape output_shape = arm_compute::misc::shape_calculator::compute_depthwise_convolution_shape(*input, *weights, conv_info, depth_multiplier, dilation);
62
63 const bool is_quantized = is_data_type_quantized(input->data_type());
64
Gian Marco Iodice9285adb2019-09-05 16:10:27 +010065 if(biases != nullptr)
66 {
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +010067 ARM_COMPUTE_RETURN_ERROR_ON(biases->dimension(0) != output_shape[idx_c]);
Gian Marco Iodice9285adb2019-09-05 16:10:27 +010068 ARM_COMPUTE_RETURN_ERROR_ON(biases->num_dimensions() > 1);
Michele Di Giorgioa046e162019-10-08 09:36:26 +010069
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +010070 if(is_quantized)
Michele Di Giorgioa046e162019-10-08 09:36:26 +010071 {
72 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(biases, 1, DataType::S32);
73 }
74 else
75 {
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +010076 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, biases);
Michele Di Giorgioa046e162019-10-08 09:36:26 +010077 }
Gian Marco Iodice9285adb2019-09-05 16:10:27 +010078 }
79
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +010080 if(is_quantized)
81 {
82 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(output_multipliers, output_shifts);
83 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output_multipliers, 1, DataType::S32);
84 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output_shifts, 1, DataType::S32);
85 ARM_COMPUTE_RETURN_ERROR_ON(output_multipliers->num_dimensions() > 1);
86 ARM_COMPUTE_RETURN_ERROR_ON(output_shifts->num_dimensions() > 1);
87
88 if(is_data_type_quantized_per_channel(weights->data_type()))
89 {
90 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(weights, 1, DataType::QSYMM8_PER_CHANNEL);
91 ARM_COMPUTE_RETURN_ERROR_ON(output_shape[idx_c] != output_multipliers->dimension(0));
92 ARM_COMPUTE_RETURN_ERROR_ON(output_shape[idx_c] != output_shifts->dimension(0));
93 }
94 else
95 {
96 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, weights);
97 ARM_COMPUTE_RETURN_ERROR_ON(1 != output_multipliers->dimension(0));
98 ARM_COMPUTE_RETURN_ERROR_ON(1 != output_shifts->dimension(0));
99 }
100 }
101 else
102 {
103 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, weights);
104 }
105
Gian Marco Iodice9285adb2019-09-05 16:10:27 +0100106 if(output->total_size() != 0)
107 {
Gian Marco Iodice9285adb2019-09-05 16:10:27 +0100108 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DIMENSIONS(output->tensor_shape(), output_shape);
Michele Di Giorgio4cd4cde2020-01-06 14:07:44 +0000109 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
Gian Marco Iodice9285adb2019-09-05 16:10:27 +0100110 }
111
Michele Di Giorgio14cbfb22019-10-23 10:53:10 +0100112 if(is_data_type_quantized(input->data_type()))
113 {
114 const UniformQuantizationInfo iq_info = input->quantization_info().uniform();
115 const UniformQuantizationInfo wq_info = weights->quantization_info().uniform();
116 const UniformQuantizationInfo oq_info = (output->total_size() != 0) ? output->quantization_info().uniform() : iq_info;
117
118 float multiplier = iq_info.scale * wq_info.scale / oq_info.scale;
119 int output_multiplier = 0;
120 int output_shift = 0;
121 ARM_COMPUTE_RETURN_ON_ERROR(quantization::calculate_quantized_multiplier(multiplier, &output_multiplier, &output_shift));
122 }
123
Gian Marco Iodice9285adb2019-09-05 16:10:27 +0100124 return Status{};
125}
Gian Marco Iodice9285adb2019-09-05 16:10:27 +0100126} // namespace
127
128CLDepthwiseConvolutionLayerNativeKernel::CLDepthwiseConvolutionLayerNativeKernel()
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100129 : _input(nullptr),
130 _weights(nullptr),
131 _biases(nullptr),
132 _output(nullptr),
133 _depth_multiplier(1),
134 _output_multipliers(nullptr),
135 _output_shifts(nullptr),
136 _is_quantized(false)
Gian Marco Iodice9285adb2019-09-05 16:10:27 +0100137{
138}
139
140void CLDepthwiseConvolutionLayerNativeKernel::configure(const ICLTensor *input, const ICLTensor *weights, const ICLTensor *biases, ICLTensor *output, const DWCWeightsKernelInfo &dwc_weights_info,
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100141 const DWCKernelInfo &dwc_info, const PadStrideInfo &conv_info, unsigned int depth_multiplier, const Size2D &dilation,
142 const ICLTensor *output_multipliers, const ICLTensor *output_shifts)
Gian Marco Iodice9285adb2019-09-05 16:10:27 +0100143{
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100144 configure(CLKernelLibrary::get().get_compile_context(), input, weights, biases, output, dwc_weights_info, dwc_info, conv_info, depth_multiplier, dilation, output_multipliers, output_shifts);
145}
146
Manuel Bottini256c0b92020-04-21 13:29:30 +0100147void CLDepthwiseConvolutionLayerNativeKernel::configure(const CLCompileContext &compile_context, const ICLTensor *input, const ICLTensor *weights, const ICLTensor *biases, ICLTensor *output,
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100148 const DWCWeightsKernelInfo &dwc_weights_info,
149 const DWCKernelInfo &dwc_info, const PadStrideInfo &conv_info, unsigned int depth_multiplier, const Size2D &dilation,
150 const ICLTensor *output_multipliers, const ICLTensor *output_shifts)
151{
Gian Marco Iodice9285adb2019-09-05 16:10:27 +0100152 ARM_COMPUTE_ERROR_ON_NULLPTR(input, weights, output);
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100153 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), weights->info(), (biases != nullptr) ? biases->info() : nullptr, output->info(),
154 dwc_weights_info, dwc_info, conv_info, depth_multiplier, dilation,
155 (output_multipliers != nullptr) ? output_multipliers->info() : nullptr, (output_shifts != nullptr) ? output_shifts->info() : nullptr));
Gian Marco Iodice9285adb2019-09-05 16:10:27 +0100156
Giorgio Arena79acd772020-10-22 14:29:50 +0100157 auto padding_info = get_padding_info({ input, output });
158
159 const TensorShape output_shape = arm_compute::misc::shape_calculator::compute_depthwise_convolution_shape(*(input->info()), *(weights->info()), conv_info, depth_multiplier, dilation);
160 auto_init_if_empty(*(output->info()), input->info()->clone()->set_tensor_shape(output_shape).set_quantization_info(output->info()->quantization_info()));
Gian Marco Iodice9285adb2019-09-05 16:10:27 +0100161
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100162 _input = input;
163 _output = output;
164 _weights = weights;
165 _biases = biases;
166 _depth_multiplier = depth_multiplier;
167 _output_multipliers = output_multipliers;
168 _output_shifts = output_shifts;
169 _is_quantized = is_data_type_quantized(input->info()->data_type());
Gian Marco Iodice9285adb2019-09-05 16:10:27 +0100170
Giorgio Arena79acd772020-10-22 14:29:50 +0100171 const unsigned int n0 = adjust_vec_size(dwc_weights_info.n0, input->info()->dimension(0));
Gian Marco Iodice9285adb2019-09-05 16:10:27 +0100172
173 CLBuildOptions build_opts;
174 build_opts.add_option_if(_biases != nullptr, "-DHAS_BIAS");
175 build_opts.add_option_if(_input->info()->tensor_shape().total_size_upper(3) > 1, "-DDST_DEPTH=" + support::cpp11::to_string(static_cast<int>(_output->info()->dimension(2))));
176 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(_input->info()->data_type()));
177 build_opts.add_option("-DACTIVATION_TYPE=" + lower_string(string_from_activation_func(dwc_info.activation_info.activation())));
178 build_opts.add_option("-DDEPTH_MULTIPLIER=" + support::cpp11::to_string(depth_multiplier));
Giorgio Arena79acd772020-10-22 14:29:50 +0100179 build_opts.add_option("-DN0=" + support::cpp11::to_string(n0));
Gian Marco Iodice9285adb2019-09-05 16:10:27 +0100180 build_opts.add_option("-DSRC_DIM1=" + support::cpp11::to_string(_input->info()->dimension(1)));
181 build_opts.add_option("-DSRC_DIM2=" + support::cpp11::to_string(_input->info()->dimension(2)));
Giorgio Arena79acd772020-10-22 14:29:50 +0100182 build_opts.add_option("-DKERNEL_WIDTH=" + support::cpp11::to_string(weights->info()->dimension(1)));
183 build_opts.add_option("-DKERNEL_HEIGHT=" + support::cpp11::to_string(weights->info()->dimension(2)));
Gian Marco Iodice9285adb2019-09-05 16:10:27 +0100184 build_opts.add_option("-DCONV_PAD_TOP=" + support::cpp11::to_string(conv_info.pad_top()));
185 build_opts.add_option("-DCONV_PAD_LEFT=" + support::cpp11::to_string(conv_info.pad_left()));
186 build_opts.add_option("-DCONV_STRIDE_X=" + support::cpp11::to_string(conv_info.stride().first));
187 build_opts.add_option("-DCONV_STRIDE_Y=" + support::cpp11::to_string(conv_info.stride().second));
188 build_opts.add_option("-DDILATION_X=" + support::cpp11::to_string(dilation.x()));
189 build_opts.add_option("-DDILATION_Y=" + support::cpp11::to_string(dilation.y()));
Giorgio Arena79acd772020-10-22 14:29:50 +0100190 build_opts.add_option("-DVEC_SIZE_LEFTOVER=" + support::cpp11::to_string(_input->info()->dimension(0) % n0));
Gian Marco Iodice9285adb2019-09-05 16:10:27 +0100191
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100192 std::string kernel_name = (_is_quantized) ? "dwc_MxN_native_quantized8_nhwc" : "dwc_MxN_native_fp_nhwc";
Michele Di Giorgioa046e162019-10-08 09:36:26 +0100193
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100194 if(_is_quantized)
Michele Di Giorgioa046e162019-10-08 09:36:26 +0100195 {
196 const UniformQuantizationInfo iq_info = _input->info()->quantization_info().uniform();
197 const UniformQuantizationInfo wq_info = _weights->info()->quantization_info().uniform();
198 const UniformQuantizationInfo oq_info = _output->info()->quantization_info().uniform();
199
Michele Di Giorgioa046e162019-10-08 09:36:26 +0100200 build_opts.add_option("-DINPUT_OFFSET=" + support::cpp11::to_string(-iq_info.offset));
201 build_opts.add_option("-DWEIGHTS_OFFSET=" + support::cpp11::to_string(-wq_info.offset));
202 build_opts.add_option("-DOUTPUT_OFFSET=" + support::cpp11::to_string(oq_info.offset));
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100203 build_opts.add_option_if(is_data_type_quantized_per_channel(weights->info()->data_type()), "-DPER_CHANNEL_QUANTIZATION");
Michele Di Giorgioa046e162019-10-08 09:36:26 +0100204
Michele Di Giorgio14cbfb22019-10-23 10:53:10 +0100205 // Compute non-per-channel multiplier and shift anyway to make OpenCL kernel simpler
206 float multiplier = iq_info.scale * wq_info.scale / oq_info.scale;
207 int output_multiplier = 0;
208 int output_shift = 0;
209 quantization::calculate_quantized_multiplier(multiplier, &output_multiplier, &output_shift);
210 build_opts.add_option("-DOUTPUT_MULTIPLIER=" + support::cpp11::to_string(output_multiplier));
211 build_opts.add_option("-DOUTPUT_SHIFT=" + support::cpp11::to_string(output_shift));
212
Michele Di Giorgioa046e162019-10-08 09:36:26 +0100213 if(dwc_info.activation_info.enabled())
214 {
215 const int a_val = quantize_qasymm8(dwc_info.activation_info.a(), oq_info);
216 const int b_val = quantize_qasymm8(dwc_info.activation_info.b(), oq_info);
217 const int o1 = oq_info.offset;
218
219 build_opts.add_option("-DA_VAL=" + support::cpp11::to_string(a_val));
220 build_opts.add_option("-DB_VAL=" + support::cpp11::to_string(b_val));
221 build_opts.add_option("-DCONST_0=" + support::cpp11::to_string(o1));
222
223 const float s1 = iq_info.scale;
224 build_opts.add_option("-DS1_VAL=" + float_to_string_with_full_precision(s1));
225 build_opts.add_option("-DO1_VAL=" + support::cpp11::to_string(o1));
226 }
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100227
228 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(input->info()->data_type()));
229 build_opts.add_option("-DWEIGHTS_TYPE=" + get_cl_type_from_data_type(weights->info()->data_type()));
Michele Di Giorgioa046e162019-10-08 09:36:26 +0100230 }
231 else
232 {
233 build_opts.add_option_if(dwc_info.activation_info.enabled(), "-DA_VAL=" + float_to_string_with_full_precision(dwc_info.activation_info.a()));
234 build_opts.add_option_if(dwc_info.activation_info.enabled(), "-DB_VAL=" + float_to_string_with_full_precision(dwc_info.activation_info.b()));
235 }
Gian Marco Iodice9285adb2019-09-05 16:10:27 +0100236
Giorgio Arena79acd772020-10-22 14:29:50 +0100237 Window win = calculate_max_window(*(output->info()), Steps(n0));
238 ICLKernel::configure_internal(win);
239
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100240 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Gian Marco Iodice9285adb2019-09-05 16:10:27 +0100241
Giorgio Arena79acd772020-10-22 14:29:50 +0100242 ARM_COMPUTE_ERROR_ON(has_padding_changed(padding_info));
243
Gian Marco Iodice9285adb2019-09-05 16:10:27 +0100244 // Set config_id for enabling LWS tuning
245 _config_id = kernel_name;
246 _config_id += "_";
247 _config_id += support::cpp11::to_string(input->info()->dimension(0));
248 _config_id += "_";
249 _config_id += support::cpp11::to_string(input->info()->dimension(1));
250 _config_id += "_";
251 _config_id += support::cpp11::to_string(input->info()->dimension(2));
252 _config_id += "_";
253 _config_id += support::cpp11::to_string(output->info()->dimension(0));
254 _config_id += "_";
255 _config_id += support::cpp11::to_string(output->info()->dimension(1));
256 _config_id += "_";
257 _config_id += support::cpp11::to_string(output->info()->dimension(2));
258 _config_id += "_";
259 _config_id += string_from_data_type(input->info()->data_type());
260}
261
262Status CLDepthwiseConvolutionLayerNativeKernel::validate(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *biases, const ITensorInfo *output,
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100263 const DWCWeightsKernelInfo &dwc_weights_info, const DWCKernelInfo &dwc_info, const PadStrideInfo &conv_info,
264 unsigned int depth_multiplier, const Size2D &dilation, const ITensorInfo *output_multipliers, const ITensorInfo *output_shifts)
Gian Marco Iodice9285adb2019-09-05 16:10:27 +0100265{
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100266 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, weights, biases, output, dwc_weights_info, dwc_info, conv_info, depth_multiplier, dilation, output_multipliers, output_shifts));
Gian Marco Iodice9285adb2019-09-05 16:10:27 +0100267 return Status{};
268}
269
270void CLDepthwiseConvolutionLayerNativeKernel::run(const Window &window, cl::CommandQueue &queue)
271{
272 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
273 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IKernel::window(), window);
274
275 // Collapse window
276 Window window_collapsed = window.collapse(ICLKernel::window(), Window::DimZ);
277 Window slice_in = window.first_slice_window_4D();
278 Window slice_out = window_collapsed.first_slice_window_4D();
279
280 if(_depth_multiplier != 1)
281 {
282 ARM_COMPUTE_ERROR_ON(slice_out.x().step() != 1);
283 slice_out.set(Window::DimX, Window::Dimension(0, _input->info()->tensor_shape()[0], 1));
284 }
285
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100286 unsigned int idx = 2 * num_arguments_per_4D_tensor() + num_arguments_per_3D_tensor();
287
288 // Set output multipliers in case of quantized data type
289 if(_is_quantized)
290 {
291 add_1D_tensor_argument(idx, _output_multipliers, slice_in);
292 add_1D_tensor_argument(idx, _output_shifts, slice_in);
293 }
294
Gian Marco Iodice9285adb2019-09-05 16:10:27 +0100295 if(_biases != nullptr)
296 {
Gian Marco Iodice9285adb2019-09-05 16:10:27 +0100297 add_1D_tensor_argument(idx, _biases, slice_in);
298 }
299
300 do
301 {
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100302 idx = 0;
Gian Marco Iodice9285adb2019-09-05 16:10:27 +0100303 add_4D_tensor_argument(idx, _input, slice_in);
304 add_4D_tensor_argument(idx, _output, slice_out);
305 add_3D_tensor_argument(idx, _weights, slice_out);
306 enqueue(queue, *this, slice_out, lws_hint());
307 }
308 while(window_collapsed.slide_window_slice_4D(slice_out) && window.slide_window_slice_4D(slice_in));
309}
310} // namespace arm_compute