blob: fcfa7f878d5160c06cdbba68f3f10d2be1e55e8a [file] [log] [blame]
Gian Marco Iodice9285adb2019-09-05 16:10:27 +01001/*
Michalis Spyrou60c3b0e2021-04-08 12:02:58 +01002 * Copyright (c) 2019-2021 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 */
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010024#include "src/core/CL/kernels/CLDepthwiseConvolutionLayerNativeKernel.h"
Gian Marco Iodice9285adb2019-09-05 16:10:27 +010025
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/ICLTensor.h"
Gian Marco Iodice9285adb2019-09-05 16:10:27 +010029#include "arm_compute/core/Helpers.h"
30#include "arm_compute/core/TensorInfo.h"
Gian Marco Iodice9285adb2019-09-05 16:10:27 +010031#include "arm_compute/core/Utils.h"
32#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Michele Di Giorgioa046e162019-10-08 09:36:26 +010033#include "arm_compute/core/utils/quantization/AsymmHelpers.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010034#include "src/core/CL/CLValidate.h"
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010035#include "src/core/CL/ICLKernel.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010036#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
Michalis Spyrou60c3b0e2021-04-08 12:02:58 +010061 const ConvolutionInfo info{ conv_info, depth_multiplier, ActivationLayerInfo(), dilation };
62 const TensorShape output_shape = arm_compute::misc::shape_calculator::compute_depthwise_convolution_shape(*input, *weights, info);
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +010063
64 const bool is_quantized = is_data_type_quantized(input->data_type());
65
Gian Marco Iodice9285adb2019-09-05 16:10:27 +010066 if(biases != nullptr)
67 {
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +010068 ARM_COMPUTE_RETURN_ERROR_ON(biases->dimension(0) != output_shape[idx_c]);
Gian Marco Iodice9285adb2019-09-05 16:10:27 +010069 ARM_COMPUTE_RETURN_ERROR_ON(biases->num_dimensions() > 1);
Michele Di Giorgioa046e162019-10-08 09:36:26 +010070
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +010071 if(is_quantized)
Michele Di Giorgioa046e162019-10-08 09:36:26 +010072 {
73 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(biases, 1, DataType::S32);
74 }
75 else
76 {
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +010077 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, biases);
Michele Di Giorgioa046e162019-10-08 09:36:26 +010078 }
Gian Marco Iodice9285adb2019-09-05 16:10:27 +010079 }
80
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +010081 if(is_quantized)
82 {
83 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(output_multipliers, output_shifts);
84 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output_multipliers, 1, DataType::S32);
85 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output_shifts, 1, DataType::S32);
86 ARM_COMPUTE_RETURN_ERROR_ON(output_multipliers->num_dimensions() > 1);
87 ARM_COMPUTE_RETURN_ERROR_ON(output_shifts->num_dimensions() > 1);
88
89 if(is_data_type_quantized_per_channel(weights->data_type()))
90 {
91 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(weights, 1, DataType::QSYMM8_PER_CHANNEL);
92 ARM_COMPUTE_RETURN_ERROR_ON(output_shape[idx_c] != output_multipliers->dimension(0));
93 ARM_COMPUTE_RETURN_ERROR_ON(output_shape[idx_c] != output_shifts->dimension(0));
94 }
95 else
96 {
97 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, weights);
98 ARM_COMPUTE_RETURN_ERROR_ON(1 != output_multipliers->dimension(0));
99 ARM_COMPUTE_RETURN_ERROR_ON(1 != output_shifts->dimension(0));
100 }
101 }
102 else
103 {
104 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, weights);
105 }
106
Gian Marco Iodice9285adb2019-09-05 16:10:27 +0100107 if(output->total_size() != 0)
108 {
Gian Marco Iodice9285adb2019-09-05 16:10:27 +0100109 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DIMENSIONS(output->tensor_shape(), output_shape);
Michele Di Giorgio4cd4cde2020-01-06 14:07:44 +0000110 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
Gian Marco Iodice9285adb2019-09-05 16:10:27 +0100111 }
112
Michele Di Giorgio14cbfb22019-10-23 10:53:10 +0100113 if(is_data_type_quantized(input->data_type()))
114 {
115 const UniformQuantizationInfo iq_info = input->quantization_info().uniform();
116 const UniformQuantizationInfo wq_info = weights->quantization_info().uniform();
117 const UniformQuantizationInfo oq_info = (output->total_size() != 0) ? output->quantization_info().uniform() : iq_info;
118
119 float multiplier = iq_info.scale * wq_info.scale / oq_info.scale;
120 int output_multiplier = 0;
121 int output_shift = 0;
122 ARM_COMPUTE_RETURN_ON_ERROR(quantization::calculate_quantized_multiplier(multiplier, &output_multiplier, &output_shift));
123 }
124
Gian Marco Iodice9285adb2019-09-05 16:10:27 +0100125 return Status{};
126}
Gian Marco Iodice9285adb2019-09-05 16:10:27 +0100127} // namespace
128
129CLDepthwiseConvolutionLayerNativeKernel::CLDepthwiseConvolutionLayerNativeKernel()
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100130 : _input(nullptr),
131 _weights(nullptr),
132 _biases(nullptr),
133 _output(nullptr),
134 _depth_multiplier(1),
135 _output_multipliers(nullptr),
136 _output_shifts(nullptr),
137 _is_quantized(false)
Gian Marco Iodice9285adb2019-09-05 16:10:27 +0100138{
139}
140
141void 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 +0100142 const DWCKernelInfo &dwc_info, const PadStrideInfo &conv_info, unsigned int depth_multiplier, const Size2D &dilation,
143 const ICLTensor *output_multipliers, const ICLTensor *output_shifts)
Gian Marco Iodice9285adb2019-09-05 16:10:27 +0100144{
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100145 configure(CLKernelLibrary::get().get_compile_context(), input, weights, biases, output, dwc_weights_info, dwc_info, conv_info, depth_multiplier, dilation, output_multipliers, output_shifts);
146}
147
Manuel Bottini256c0b92020-04-21 13:29:30 +0100148void CLDepthwiseConvolutionLayerNativeKernel::configure(const CLCompileContext &compile_context, const ICLTensor *input, const ICLTensor *weights, const ICLTensor *biases, ICLTensor *output,
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100149 const DWCWeightsKernelInfo &dwc_weights_info,
150 const DWCKernelInfo &dwc_info, const PadStrideInfo &conv_info, unsigned int depth_multiplier, const Size2D &dilation,
151 const ICLTensor *output_multipliers, const ICLTensor *output_shifts)
152{
Gian Marco Iodice9285adb2019-09-05 16:10:27 +0100153 ARM_COMPUTE_ERROR_ON_NULLPTR(input, weights, output);
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100154 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), weights->info(), (biases != nullptr) ? biases->info() : nullptr, output->info(),
155 dwc_weights_info, dwc_info, conv_info, depth_multiplier, dilation,
156 (output_multipliers != nullptr) ? output_multipliers->info() : nullptr, (output_shifts != nullptr) ? output_shifts->info() : nullptr));
Gian Marco Iodice9285adb2019-09-05 16:10:27 +0100157
Giorgio Arena79acd772020-10-22 14:29:50 +0100158 auto padding_info = get_padding_info({ input, output });
159
Michalis Spyrou60c3b0e2021-04-08 12:02:58 +0100160 const ConvolutionInfo info{ conv_info, depth_multiplier, ActivationLayerInfo(), dilation };
161 const TensorShape output_shape = arm_compute::misc::shape_calculator::compute_depthwise_convolution_shape(*(input->info()), *(weights->info()), info);
Giorgio Arena79acd772020-10-22 14:29:50 +0100162 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 +0100163
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100164 _input = input;
165 _output = output;
166 _weights = weights;
167 _biases = biases;
168 _depth_multiplier = depth_multiplier;
169 _output_multipliers = output_multipliers;
170 _output_shifts = output_shifts;
171 _is_quantized = is_data_type_quantized(input->info()->data_type());
Gian Marco Iodice9285adb2019-09-05 16:10:27 +0100172
Giorgio Arena79acd772020-10-22 14:29:50 +0100173 const unsigned int n0 = adjust_vec_size(dwc_weights_info.n0, input->info()->dimension(0));
Gian Marco Iodice9285adb2019-09-05 16:10:27 +0100174
175 CLBuildOptions build_opts;
176 build_opts.add_option_if(_biases != nullptr, "-DHAS_BIAS");
177 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))));
178 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(_input->info()->data_type()));
179 build_opts.add_option("-DACTIVATION_TYPE=" + lower_string(string_from_activation_func(dwc_info.activation_info.activation())));
180 build_opts.add_option("-DDEPTH_MULTIPLIER=" + support::cpp11::to_string(depth_multiplier));
Giorgio Arena79acd772020-10-22 14:29:50 +0100181 build_opts.add_option("-DN0=" + support::cpp11::to_string(n0));
Gian Marco Iodice9285adb2019-09-05 16:10:27 +0100182 build_opts.add_option("-DSRC_DIM1=" + support::cpp11::to_string(_input->info()->dimension(1)));
183 build_opts.add_option("-DSRC_DIM2=" + support::cpp11::to_string(_input->info()->dimension(2)));
Giorgio Arena79acd772020-10-22 14:29:50 +0100184 build_opts.add_option("-DKERNEL_WIDTH=" + support::cpp11::to_string(weights->info()->dimension(1)));
185 build_opts.add_option("-DKERNEL_HEIGHT=" + support::cpp11::to_string(weights->info()->dimension(2)));
Gian Marco Iodice9285adb2019-09-05 16:10:27 +0100186 build_opts.add_option("-DCONV_PAD_TOP=" + support::cpp11::to_string(conv_info.pad_top()));
187 build_opts.add_option("-DCONV_PAD_LEFT=" + support::cpp11::to_string(conv_info.pad_left()));
188 build_opts.add_option("-DCONV_STRIDE_X=" + support::cpp11::to_string(conv_info.stride().first));
189 build_opts.add_option("-DCONV_STRIDE_Y=" + support::cpp11::to_string(conv_info.stride().second));
190 build_opts.add_option("-DDILATION_X=" + support::cpp11::to_string(dilation.x()));
191 build_opts.add_option("-DDILATION_Y=" + support::cpp11::to_string(dilation.y()));
Giorgio Arena79acd772020-10-22 14:29:50 +0100192 build_opts.add_option("-DVEC_SIZE_LEFTOVER=" + support::cpp11::to_string(_input->info()->dimension(0) % n0));
Gian Marco Iodice9285adb2019-09-05 16:10:27 +0100193
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100194 std::string kernel_name = (_is_quantized) ? "dwc_MxN_native_quantized8_nhwc" : "dwc_MxN_native_fp_nhwc";
Michele Di Giorgioa046e162019-10-08 09:36:26 +0100195
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100196 if(_is_quantized)
Michele Di Giorgioa046e162019-10-08 09:36:26 +0100197 {
198 const UniformQuantizationInfo iq_info = _input->info()->quantization_info().uniform();
199 const UniformQuantizationInfo wq_info = _weights->info()->quantization_info().uniform();
200 const UniformQuantizationInfo oq_info = _output->info()->quantization_info().uniform();
201
Michele Di Giorgioa046e162019-10-08 09:36:26 +0100202 build_opts.add_option("-DINPUT_OFFSET=" + support::cpp11::to_string(-iq_info.offset));
203 build_opts.add_option("-DWEIGHTS_OFFSET=" + support::cpp11::to_string(-wq_info.offset));
204 build_opts.add_option("-DOUTPUT_OFFSET=" + support::cpp11::to_string(oq_info.offset));
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100205 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 +0100206
Michele Di Giorgio14cbfb22019-10-23 10:53:10 +0100207 // Compute non-per-channel multiplier and shift anyway to make OpenCL kernel simpler
208 float multiplier = iq_info.scale * wq_info.scale / oq_info.scale;
209 int output_multiplier = 0;
210 int output_shift = 0;
211 quantization::calculate_quantized_multiplier(multiplier, &output_multiplier, &output_shift);
212 build_opts.add_option("-DOUTPUT_MULTIPLIER=" + support::cpp11::to_string(output_multiplier));
213 build_opts.add_option("-DOUTPUT_SHIFT=" + support::cpp11::to_string(output_shift));
214
Michele Di Giorgioa046e162019-10-08 09:36:26 +0100215 if(dwc_info.activation_info.enabled())
216 {
Michele Di Giorgio17b71022020-11-16 13:10:07 +0000217 int a_val{};
218 int b_val{};
219 std::tie(b_val, a_val) = get_quantized_activation_min_max(dwc_info.activation_info, input->info()->data_type(), oq_info);
220
221 const int o1 = oq_info.offset;
Michele Di Giorgioa046e162019-10-08 09:36:26 +0100222
223 build_opts.add_option("-DA_VAL=" + support::cpp11::to_string(a_val));
224 build_opts.add_option("-DB_VAL=" + support::cpp11::to_string(b_val));
225 build_opts.add_option("-DCONST_0=" + support::cpp11::to_string(o1));
226
227 const float s1 = iq_info.scale;
228 build_opts.add_option("-DS1_VAL=" + float_to_string_with_full_precision(s1));
229 build_opts.add_option("-DO1_VAL=" + support::cpp11::to_string(o1));
230 }
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100231
232 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(input->info()->data_type()));
233 build_opts.add_option("-DWEIGHTS_TYPE=" + get_cl_type_from_data_type(weights->info()->data_type()));
Michele Di Giorgioa046e162019-10-08 09:36:26 +0100234 }
235 else
236 {
237 build_opts.add_option_if(dwc_info.activation_info.enabled(), "-DA_VAL=" + float_to_string_with_full_precision(dwc_info.activation_info.a()));
238 build_opts.add_option_if(dwc_info.activation_info.enabled(), "-DB_VAL=" + float_to_string_with_full_precision(dwc_info.activation_info.b()));
239 }
Gian Marco Iodice9285adb2019-09-05 16:10:27 +0100240
Giorgio Arena79acd772020-10-22 14:29:50 +0100241 Window win = calculate_max_window(*(output->info()), Steps(n0));
242 ICLKernel::configure_internal(win);
243
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100244 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Gian Marco Iodice9285adb2019-09-05 16:10:27 +0100245
Giorgio Arena79acd772020-10-22 14:29:50 +0100246 ARM_COMPUTE_ERROR_ON(has_padding_changed(padding_info));
247
Gian Marco Iodice9285adb2019-09-05 16:10:27 +0100248 // Set config_id for enabling LWS tuning
249 _config_id = kernel_name;
250 _config_id += "_";
251 _config_id += support::cpp11::to_string(input->info()->dimension(0));
252 _config_id += "_";
253 _config_id += support::cpp11::to_string(input->info()->dimension(1));
254 _config_id += "_";
255 _config_id += support::cpp11::to_string(input->info()->dimension(2));
256 _config_id += "_";
257 _config_id += support::cpp11::to_string(output->info()->dimension(0));
258 _config_id += "_";
259 _config_id += support::cpp11::to_string(output->info()->dimension(1));
260 _config_id += "_";
261 _config_id += support::cpp11::to_string(output->info()->dimension(2));
262 _config_id += "_";
263 _config_id += string_from_data_type(input->info()->data_type());
264}
265
266Status CLDepthwiseConvolutionLayerNativeKernel::validate(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *biases, const ITensorInfo *output,
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100267 const DWCWeightsKernelInfo &dwc_weights_info, const DWCKernelInfo &dwc_info, const PadStrideInfo &conv_info,
268 unsigned int depth_multiplier, const Size2D &dilation, const ITensorInfo *output_multipliers, const ITensorInfo *output_shifts)
Gian Marco Iodice9285adb2019-09-05 16:10:27 +0100269{
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100270 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 +0100271 return Status{};
272}
273
274void CLDepthwiseConvolutionLayerNativeKernel::run(const Window &window, cl::CommandQueue &queue)
275{
276 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
277 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IKernel::window(), window);
278
279 // Collapse window
280 Window window_collapsed = window.collapse(ICLKernel::window(), Window::DimZ);
281 Window slice_in = window.first_slice_window_4D();
282 Window slice_out = window_collapsed.first_slice_window_4D();
283
284 if(_depth_multiplier != 1)
285 {
286 ARM_COMPUTE_ERROR_ON(slice_out.x().step() != 1);
287 slice_out.set(Window::DimX, Window::Dimension(0, _input->info()->tensor_shape()[0], 1));
288 }
289
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100290 unsigned int idx = 2 * num_arguments_per_4D_tensor() + num_arguments_per_3D_tensor();
291
292 // Set output multipliers in case of quantized data type
293 if(_is_quantized)
294 {
295 add_1D_tensor_argument(idx, _output_multipliers, slice_in);
296 add_1D_tensor_argument(idx, _output_shifts, slice_in);
297 }
298
Gian Marco Iodice9285adb2019-09-05 16:10:27 +0100299 if(_biases != nullptr)
300 {
Gian Marco Iodice9285adb2019-09-05 16:10:27 +0100301 add_1D_tensor_argument(idx, _biases, slice_in);
302 }
303
304 do
305 {
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100306 idx = 0;
Gian Marco Iodice9285adb2019-09-05 16:10:27 +0100307 add_4D_tensor_argument(idx, _input, slice_in);
308 add_4D_tensor_argument(idx, _output, slice_out);
309 add_3D_tensor_argument(idx, _weights, slice_out);
310 enqueue(queue, *this, slice_out, lws_hint());
311 }
312 while(window_collapsed.slide_window_slice_4D(slice_out) && window.slide_window_slice_4D(slice_in));
313}
314} // namespace arm_compute