blob: 5a0d2d0a62c86750b566245536d229d1c39cbdb6 [file] [log] [blame]
Giorgio Arenadfca60b2018-01-31 10:30:59 +00001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2018-2020 Arm Limited.
Giorgio Arenadfca60b2018-01-31 10:30:59 +00003 *
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/CLDepthwiseConvolutionLayer3x3NHWCKernel.h"
25
Giorgio Arenadfca60b2018-01-31 10:30:59 +000026#include "arm_compute/core/CL/CLHelpers.h"
27#include "arm_compute/core/CL/CLKernelLibrary.h"
28#include "arm_compute/core/CL/ICLKernel.h"
29#include "arm_compute/core/CL/ICLTensor.h"
Giorgio Arenadfca60b2018-01-31 10:30:59 +000030#include "arm_compute/core/Helpers.h"
31#include "arm_compute/core/TensorInfo.h"
Giorgio Arenadfca60b2018-01-31 10:30:59 +000032#include "arm_compute/core/Utils.h"
33#include "arm_compute/core/utils/misc/ShapeCalculator.h"
34#include "arm_compute/core/utils/quantization/AsymmHelpers.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010035#include "src/core/AccessWindowStatic.h"
36#include "src/core/CL/CLValidate.h"
37#include "src/core/helpers/AutoConfiguration.h"
38#include "src/core/helpers/WindowHelpers.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000039#include "support/StringSupport.h"
Giorgio Arenadfca60b2018-01-31 10:30:59 +000040
giuros016d109962019-01-07 17:47:19 +000041namespace arm_compute
42{
Giorgio Arenadfca60b2018-01-31 10:30:59 +000043namespace
44{
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +010045Status validate_arguments(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *biases, const ITensorInfo *output,
46 const PadStrideInfo &conv_info, unsigned int depth_multiplier, const ActivationLayerInfo &act_info, const Size2D &dilation,
47 const ITensorInfo *output_multipliers, const ITensorInfo *output_shifts)
Giorgio Arenadfca60b2018-01-31 10:30:59 +000048{
Giorgio Arenae6bb3c62018-08-23 11:19:11 +010049 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input);
Michele Di Giorgio37cbc572019-12-19 16:41:49 +000050 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::F16, DataType::F32, DataType::QASYMM8, DataType::QASYMM8_SIGNED);
51 ARM_COMPUTE_RETURN_ERROR_ON_MSG((act_info.enabled()) && (input->data_type() == DataType::QASYMM8 || input->data_type() == DataType::QASYMM8_SIGNED)
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +010052 && (act_info.activation() != ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU)
Manuel Bottinia788c2f2019-04-08 13:18:00 +010053 && (act_info.activation() != ActivationLayerInfo::ActivationFunction::BOUNDED_RELU)
54 && (act_info.activation() != ActivationLayerInfo::ActivationFunction::RELU)
55 && (act_info.activation() != ActivationLayerInfo::ActivationFunction::LOGISTIC),
56 "For QASYMM8 only logistic, relu, lower bounded relu and lower-upper bounded relu are supported");
Giorgio Arena76572242018-04-04 17:44:26 +010057 ARM_COMPUTE_RETURN_ERROR_ON(depth_multiplier > 1); // COMPMID-1071 Add depth multiplier support for NHWC
giuros016d109962019-01-07 17:47:19 +000058
59 ARM_COMPUTE_RETURN_ERROR_ON(conv_info.stride().first < 1);
Pablo Telloe4cad152019-06-04 11:28:05 +010060 ARM_COMPUTE_RETURN_ERROR_ON(std::max(conv_info.pad_top(), conv_info.pad_bottom()) > 4);
Giorgio Arenadfca60b2018-01-31 10:30:59 +000061
Usama Arife73686a2019-04-08 17:30:48 +010062 ARM_COMPUTE_RETURN_ERROR_ON((dilation.x() < 1) || (dilation.y() < 1));
63
giuros016d109962019-01-07 17:47:19 +000064 const bool is_qasymm = is_data_type_quantized_asymmetric(input->data_type());
65 const size_t weights_width = 3;
66 const size_t weights_height = 3;
67
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +010068 const TensorShape output_shape = arm_compute::misc::shape_calculator::compute_depthwise_convolution_shape(
69 *input, TensorInfo(TensorShape(weights_width, weights_height), 1, weights->data_type()).set_data_layout(DataLayout::NCHW), conv_info, depth_multiplier, dilation);
giuros016d109962019-01-07 17:47:19 +000070 if(is_qasymm)
71 {
72 DepthwiseConvolutionReshapeInfo info;
73 info.c0 = 4;
74 ARM_COMPUTE_RETURN_ERROR_ON((weights->dimension(0) / info.c0) != weights_width * weights_height);
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +010075
76 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(output_multipliers, output_shifts);
77 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output_multipliers, 1, DataType::S32);
78 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output_shifts, 1, DataType::S32);
79 ARM_COMPUTE_RETURN_ERROR_ON(output_multipliers->num_dimensions() > 1);
80 ARM_COMPUTE_RETURN_ERROR_ON(output_shifts->num_dimensions() > 1);
81
82 if(is_data_type_quantized_per_channel(weights->data_type()))
83 {
84 ARM_COMPUTE_RETURN_ERROR_ON(output_shape[0] != output_multipliers->dimension(0));
85 ARM_COMPUTE_RETURN_ERROR_ON(output_shape[0] != output_shifts->dimension(0));
86 }
87 else
88 {
89 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, weights);
90 ARM_COMPUTE_RETURN_ERROR_ON(1 != output_multipliers->dimension(0));
91 ARM_COMPUTE_RETURN_ERROR_ON(1 != output_shifts->dimension(0));
92 }
giuros016d109962019-01-07 17:47:19 +000093 }
94 else
95 {
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +010096 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, weights);
giuros016d109962019-01-07 17:47:19 +000097 ARM_COMPUTE_RETURN_ERROR_ON((weights->dimension(1) != weights_width) || (weights->dimension(2) != weights_height));
98 }
Giorgio Arenad051e972018-06-20 11:46:42 +010099
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000100 if(biases != nullptr)
101 {
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100102 ARM_COMPUTE_RETURN_ERROR_ON(biases->dimension(0) != output_shape[0]);
Giorgio Arenad051e972018-06-20 11:46:42 +0100103 if(is_qasymm)
104 {
105 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(biases, 1, DataType::S32);
106 }
107 else
108 {
109 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(weights, biases);
110 }
giuros016d109962019-01-07 17:47:19 +0000111
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000112 ARM_COMPUTE_RETURN_ERROR_ON(biases->num_dimensions() > 1);
113 }
114
115 if(output->total_size() != 0)
116 {
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000117 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DIMENSIONS(output->tensor_shape(), output_shape);
118 }
119
120 return Status{};
121}
122
Georgios Pinitasb2d9ebb2018-05-14 12:21:51 +0100123std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input, ITensorInfo *weights, ITensorInfo *bias, ITensorInfo *output,
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100124 const PadStrideInfo &conv_info, unsigned int depth_multiplier, const Size2D &dilation,
125 ITensorInfo *output_multipliers, ITensorInfo *output_shifts)
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000126{
giuros016d109962019-01-07 17:47:19 +0000127 const size_t weights_width = 3;
128 const size_t weights_height = 3;
129
Giorgio Arenaeff8d952018-07-02 15:29:57 +0100130 // Get convolved dimensions
Usama Arife73686a2019-04-08 17:30:48 +0100131 const TensorShape output_shape = arm_compute::misc::shape_calculator::compute_depthwise_convolution_shape(
132 *input, TensorInfo(TensorShape(weights_width, weights_height), 1, weights->data_type()).set_data_layout(DataLayout::NCHW), conv_info, depth_multiplier, dilation);
Giorgio Arenaeff8d952018-07-02 15:29:57 +0100133
Pablo Telloa28aebc2019-06-03 14:59:48 +0100134 auto_init_if_empty(*output, input->clone()->set_tensor_shape(output_shape).set_quantization_info(output->quantization_info()));
Giorgio Arenaeff8d952018-07-02 15:29:57 +0100135
Usama Arife73686a2019-04-08 17:30:48 +0100136 const bool is_qasymm = is_data_type_quantized_asymmetric(input->data_type());
137 const bool is_stride_1_dilation_1 = ((conv_info.stride().first == conv_info.stride().second) && (conv_info.stride().first == 1) && dilation.x() == 1 && dilation.y() == 1);
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000138
Usama Arife73686a2019-04-08 17:30:48 +0100139 const unsigned int num_rows_processed_per_iteration = is_stride_1_dilation_1 ? 2 : 1;
Giorgio Arenae6bb3c62018-08-23 11:19:11 +0100140 const unsigned int num_elems_accessed_per_iteration = is_qasymm ? 4 : (8 / input->element_size());
Giorgio Arenad051e972018-06-20 11:46:42 +0100141 const unsigned int num_rows_read_per_iteration = num_rows_processed_per_iteration + 2;
142 const unsigned int num_rows_written_per_iteration = std::ceil(num_rows_processed_per_iteration / static_cast<float>(conv_info.stride().first));
143
144 BorderSize border_size;
Giorgio Arenaeff8d952018-07-02 15:29:57 +0100145 border_size = BorderSize(conv_info.pad_left(), 0, std::max(std::max(conv_info.pad_right(), conv_info.pad_bottom()), conv_info.pad_top()), 0);
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000146
147 // Configure kernel window
148 Window win = calculate_max_window(*output, Steps(num_elems_accessed_per_iteration, num_rows_written_per_iteration));
149
150 AccessWindowStatic input_access(input, 0, -border_size.top, ceil_to_multiple(input->dimension(0), num_elems_accessed_per_iteration),
151 ceil_to_multiple(input->dimension(1) + border_size.bottom, num_rows_read_per_iteration));
Michele Di Giorgio17a01a32019-01-03 15:12:27 +0000152 AccessWindowRectangle output_access(output, 0, 0, num_elems_accessed_per_iteration, num_rows_written_per_iteration);
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000153
giuros016d109962019-01-07 17:47:19 +0000154 bool window_changed = false;
155
156 if(is_qasymm)
157 {
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100158 if((output_multipliers != nullptr) && (output_shifts != nullptr))
159 {
160 AccessWindowHorizontal output_multipliers_access(output_multipliers, 0, num_elems_accessed_per_iteration);
161 AccessWindowHorizontal output_shifts_access(output_shifts, 0, num_elems_accessed_per_iteration);
162 window_changed = window_changed || update_window_and_padding(win, input_access, output_access, output_multipliers_access, output_shifts_access);
163 }
164 else
165 {
166 Status err = ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "output_multipliers and output_shifts must be non-nullptr for quantized input");
167 return std::make_pair(err, win);
168 }
giuros016d109962019-01-07 17:47:19 +0000169 }
170 else
171 {
Isabella Gottardi9197c962019-02-27 09:29:21 +0000172 AccessWindowStatic weights_access(weights, 0, 0, ceil_to_multiple(weights->dimension(0), num_elems_accessed_per_iteration), weights->dimension(1));
giuros016d109962019-01-07 17:47:19 +0000173 window_changed = update_window_and_padding(win, input_access, weights_access, output_access);
174 }
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000175
Georgios Pinitasb2d9ebb2018-05-14 12:21:51 +0100176 if(bias != nullptr)
177 {
178 AccessWindowHorizontal bias_access(bias, 0, num_elems_accessed_per_iteration);
179 window_changed = window_changed || update_window_and_padding(win, bias_access);
180 }
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000181 output_access.set_valid_region(win, ValidRegion(Coordinates(), output->tensor_shape()));
182
183 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
184 return std::make_pair(err, win);
185}
186} // namespace
187
188CLDepthwiseConvolutionLayer3x3NHWCKernel::CLDepthwiseConvolutionLayer3x3NHWCKernel()
Giorgio Arenad051e972018-06-20 11:46:42 +0100189 : _num_rows_processed_per_iteration(1), _num_planes_processed_per_iteration(1)
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000190{
191}
192
193BorderSize CLDepthwiseConvolutionLayer3x3NHWCKernel::border_size() const
194{
195 return _border_size;
196}
197
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100198void CLDepthwiseConvolutionLayer3x3NHWCKernel::configure(const ICLTensor *input, const ICLTensor *weights, const ICLTensor *biases, ICLTensor *output,
199 const PadStrideInfo &conv_info, unsigned int depth_multiplier, ActivationLayerInfo act_info, const Size2D &dilation,
200 const ICLTensor *output_multipliers, const ICLTensor *output_shifts)
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000201{
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100202 configure(CLKernelLibrary::get().get_compile_context(), input, weights, biases, output, conv_info, depth_multiplier, act_info, dilation, output_multipliers, output_shifts);
203}
204
Manuel Bottini256c0b92020-04-21 13:29:30 +0100205void CLDepthwiseConvolutionLayer3x3NHWCKernel::configure(const CLCompileContext &compile_context, const ICLTensor *input, const ICLTensor *weights, const ICLTensor *biases, ICLTensor *output,
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100206 const PadStrideInfo &conv_info, unsigned int depth_multiplier, ActivationLayerInfo act_info, const Size2D &dilation,
207 const ICLTensor *output_multipliers, const ICLTensor *output_shifts)
208{
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000209 ARM_COMPUTE_ERROR_ON_NULLPTR(input, weights, output);
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100210 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), weights->info(), (biases != nullptr) ? biases->info() : nullptr, output->info(),
211 conv_info, depth_multiplier, act_info, dilation,
212 (output_multipliers != nullptr) ? output_multipliers->info() : nullptr,
213 (output_shifts != nullptr) ? output_shifts->info() : nullptr));
214 auto win_config = validate_and_configure_window(input->info(), weights->info(), biases != nullptr ? biases->info() : nullptr, output->info(),
215 conv_info, depth_multiplier, dilation,
216 (output_multipliers != nullptr) ? output_multipliers->info() : nullptr,
217 (output_shifts != nullptr) ? output_shifts->info() : nullptr);
giuros016d109962019-01-07 17:47:19 +0000218 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000219
Usama Arife73686a2019-04-08 17:30:48 +0100220 const bool is_stride_1 = ((conv_info.stride().first == conv_info.stride().second) && (conv_info.stride().first == 1));
221 const bool is_stride_1_dilation_1 = (is_stride_1 && dilation.x() == 1 && dilation.y() == 1);
222
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100223 const bool is_quantized_per_channel = is_data_type_quantized_per_channel(weights->info()->data_type());
224 const bool is_dot8_supported = dot8_supported(CLKernelLibrary::get().get_device()) && !is_quantized_per_channel;
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000225
Giorgio Arenad051e972018-06-20 11:46:42 +0100226 _input = input;
227 _output = output;
228 _weights = weights;
229 _biases = biases;
230 _conv_stride_y = conv_info.stride().second;
Usama Arife73686a2019-04-08 17:30:48 +0100231 _num_rows_processed_per_iteration = is_stride_1_dilation_1 ? 2 : 1;
232 _num_planes_processed_per_iteration = is_stride_1_dilation_1 ? 2 : 1;
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100233 _output_multipliers = output_multipliers;
234 _output_shifts = output_shifts;
235 _is_quantized = is_data_type_quantized_asymmetric(input->info()->data_type());
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100236
237 // If QASYMM8 and the 8 bit dot product is available, force _num_planes_processed_per_iteration to 1
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100238 if(is_dot8_supported && _is_quantized)
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100239 {
240 _num_planes_processed_per_iteration = 1;
241 }
242
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100243 _border_size = BorderSize(_is_quantized && is_stride_1 ? 0 : conv_info.pad_left(), 0, std::max(std::max(conv_info.pad_right(), conv_info.pad_bottom()), conv_info.pad_top()), 0);
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000244
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100245 const unsigned int num_elems_accessed_per_iteration = _is_quantized ? 4 : (8 / input->info()->element_size());
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000246
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000247 CLBuildOptions build_opts;
Usama Arif6a98a6e2019-05-10 17:07:27 +0100248 build_opts.add_option("-DACTIVATION_TYPE=" + lower_string(string_from_activation_func(act_info.activation())));
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000249 build_opts.add_option_if(_biases != nullptr, "-DHAS_BIAS");
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000250 build_opts.add_option("-DVEC_SIZE=" + support::cpp11::to_string(num_elems_accessed_per_iteration));
Giorgio Arenafa23f112018-06-19 11:27:38 +0100251 build_opts.add_option("-DSRC_DIM_2=" + support::cpp11::to_string(_input->info()->dimension(2)));
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000252 build_opts.add_option("-DCONV_PAD_TOP=" + support::cpp11::to_string(conv_info.pad_top()));
Giorgio Arenafa23f112018-06-19 11:27:38 +0100253 build_opts.add_option("-DCONV_PAD_LEFT=" + support::cpp11::to_string(conv_info.pad_left()));
Usama Arife73686a2019-04-08 17:30:48 +0100254 build_opts.add_option("-DDILATION_X=" + support::cpp11::to_string(dilation.x()));
255 build_opts.add_option("-DDILATION_Y=" + support::cpp11::to_string(dilation.y()));
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000256
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100257 if(_is_quantized)
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000258 {
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100259 const UniformQuantizationInfo iq_info = _input->info()->quantization_info().uniform();
260 const UniformQuantizationInfo wq_info = _weights->info()->quantization_info().uniform();
261 const UniformQuantizationInfo oq_info = _output->info()->quantization_info().uniform();
262
Giorgio Arenad051e972018-06-20 11:46:42 +0100263 build_opts.add_option("-DSRC_DIM_1=" + support::cpp11::to_string(_input->info()->dimension(1)));
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100264 build_opts.add_option("-DINPUT_OFFSET=" + support::cpp11::to_string(-iq_info.offset));
265 build_opts.add_option("-DWEIGHTS_OFFSET=" + support::cpp11::to_string(-wq_info.offset));
266 build_opts.add_option("-DOUTPUT_OFFSET=" + support::cpp11::to_string(oq_info.offset));
267 build_opts.add_option("-DK_OFFSET=" + support::cpp11::to_string(9 * iq_info.offset * wq_info.offset));
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100268 build_opts.add_option_if(is_quantized_per_channel, "-DPER_CHANNEL_QUANTIZATION");
269 build_opts.add_option_if(is_dot8_supported, "-DIS_DOT8");
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000270
Michele Di Giorgio14cbfb22019-10-23 10:53:10 +0100271 // Compute non-per-channel multiplier and shift anyway to make OpenCL kernel simpler
272 float multiplier = iq_info.scale * wq_info.scale / oq_info.scale;
273 int output_multiplier = 0;
274 int output_shift = 0;
275 quantization::calculate_quantized_multiplier(multiplier, &output_multiplier, &output_shift);
276 build_opts.add_option("-DOUTPUT_MULTIPLIER=" + support::cpp11::to_string(output_multiplier));
277 build_opts.add_option("-DOUTPUT_SHIFT=" + support::cpp11::to_string(output_shift));
278
Giorgio Arenad051e972018-06-20 11:46:42 +0100279 if(act_info.enabled())
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000280 {
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100281 const int a_val = quantize_qasymm8(act_info.a(), oq_info);
282 const int b_val = quantize_qasymm8(act_info.b(), oq_info);
283 const int o1 = oq_info.offset;
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000284
Giorgio Arenad051e972018-06-20 11:46:42 +0100285 build_opts.add_option("-DA_VAL=" + support::cpp11::to_string(a_val));
286 build_opts.add_option("-DB_VAL=" + support::cpp11::to_string(b_val));
287 build_opts.add_option("-DCONST_0=" + support::cpp11::to_string(o1));
288
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100289 const float s1 = iq_info.scale;
Isabella Gottardi9197c962019-02-27 09:29:21 +0000290 build_opts.add_option("-DS1_VAL=" + float_to_string_with_full_precision(s1));
291 build_opts.add_option("-DO1_VAL=" + support::cpp11::to_string(o1));
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000292 }
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100293
294 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(input->info()->data_type()));
295 build_opts.add_option("-DWEIGHTS_TYPE=" + get_cl_type_from_data_type(weights->info()->data_type()));
296 build_opts.add_option("-DWEIGHTS_PROMOTED_TYPE=" + get_cl_promoted_type_from_data_type(weights->info()->data_type()));
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000297 }
Giorgio Arenae6bb3c62018-08-23 11:19:11 +0100298 else
299 {
Manuel Bottinia788c2f2019-04-08 13:18:00 +0100300 build_opts.add_option_if(act_info.enabled(), "-DA_VAL=" + float_to_string_with_full_precision(act_info.a()));
301 build_opts.add_option_if(act_info.enabled(), "-DB_VAL=" + float_to_string_with_full_precision(act_info.b()));
Giorgio Arenae6bb3c62018-08-23 11:19:11 +0100302 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(_input->info()->data_type()));
303 }
Giorgio Arenaeff8d952018-07-02 15:29:57 +0100304
Usama Arife73686a2019-04-08 17:30:48 +0100305 if(is_stride_1_dilation_1)
Giorgio Arenad051e972018-06-20 11:46:42 +0100306 {
307 build_opts.add_option("-DNUM_ROWS_PROCESSED=" + support::cpp11::to_string(_num_rows_processed_per_iteration));
308 build_opts.add_option("-DNUM_PLANES_PROCESSED=" + support::cpp11::to_string(_num_planes_processed_per_iteration));
309 build_opts.add_option("-DDST_DIM_2=" + support::cpp11::to_string(_output->info()->dimension(2)));
310 }
311 else
312 {
Georgios Pinitas3f8aac42018-12-24 13:09:02 +0000313 build_opts.add_option("-DCONV_STRIDE_X=" + support::cpp11::to_string(conv_info.stride().first));
Giorgio Arenad051e972018-06-20 11:46:42 +0100314 build_opts.add_option("-DCONV_STRIDE_Y=" + support::cpp11::to_string(_conv_stride_y));
315 }
Georgios Pinitas37044642018-10-30 14:53:25 +0000316 build_opts.add_option_if(_input->info()->tensor_shape().total_size_upper(3) > 1,
317 "-DDST_DEPTH=" + support::cpp11::to_string(static_cast<int>(std::ceil(_output->info()->dimension(2) / static_cast<float>(_num_planes_processed_per_iteration)))));
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000318
Pablo Tello47104362019-02-27 13:32:51 +0000319 std::string kernel_name;
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000320 // Create kernel
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100321 if(_is_quantized)
Pablo Tello47104362019-02-27 13:32:51 +0000322 {
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100323 kernel_name = std::string("dwc_3x3_reshaped_quantized8");
Usama Arife73686a2019-04-08 17:30:48 +0100324 kernel_name += (is_dot8_supported && is_stride_1_dilation_1 ? "_dot8" : "");
325 kernel_name += (is_stride_1_dilation_1 ? "_stride1" : "");
Pablo Tello47104362019-02-27 13:32:51 +0000326 kernel_name += "_nhwc";
327 }
328 else
329 {
330 kernel_name = std::string("depthwise_convolution_3x3_nhwc");
Usama Arife73686a2019-04-08 17:30:48 +0100331 kernel_name += (is_stride_1_dilation_1 ? "_stride1" : "");
Pablo Tello47104362019-02-27 13:32:51 +0000332 }
333
Manuel Bottinia788c2f2019-04-08 13:18:00 +0100334 build_opts.add_option_if(input->info()->data_type() == DataType::F16, "-DIS_F16");
335 build_opts.add_option_if(input->info()->data_type() == DataType::F32, "-DIS_F32");
336
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100337 ICLKernel::configure_internal(win_config.second);
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100338 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000339
340 // Set config_id for enabling LWS tuning
341 _config_id = kernel_name;
342 _config_id += "_";
343 _config_id += support::cpp11::to_string(input->info()->dimension(0));
344 _config_id += "_";
345 _config_id += support::cpp11::to_string(input->info()->dimension(1));
346 _config_id += "_";
347 _config_id += support::cpp11::to_string(input->info()->dimension(2));
348 _config_id += "_";
349 _config_id += support::cpp11::to_string(output->info()->dimension(0));
350 _config_id += "_";
351 _config_id += support::cpp11::to_string(output->info()->dimension(1));
Giorgio Arenad051e972018-06-20 11:46:42 +0100352 _config_id += "_";
353 _config_id += string_from_data_type(input->info()->data_type());
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000354}
355
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100356Status CLDepthwiseConvolutionLayer3x3NHWCKernel::validate(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *biases, const ITensorInfo *output,
357 const PadStrideInfo &conv_info, unsigned int depth_multiplier, ActivationLayerInfo act_info, const Size2D &dilation,
358 const ITensorInfo *output_multipliers, const ITensorInfo *output_shifts)
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000359{
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100360 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, weights, biases, output, conv_info, depth_multiplier, act_info, dilation, output_multipliers, output_shifts));
Georgios Pinitasb2d9ebb2018-05-14 12:21:51 +0100361 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input->clone().get(), weights->clone().get(),
362 biases != nullptr ? biases->clone().get() : nullptr,
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100363 output->clone().get(), conv_info, depth_multiplier, dilation,
364 (output_multipliers != nullptr) ? output_multipliers->clone().get() : nullptr,
365 (output_shifts != nullptr) ? output_shifts->clone().get() : nullptr)
Georgios Pinitasb2d9ebb2018-05-14 12:21:51 +0100366 .first);
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000367
368 return Status{};
369}
370
371void CLDepthwiseConvolutionLayer3x3NHWCKernel::run(const Window &window, cl::CommandQueue &queue)
372{
373 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
374 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IKernel::window(), window);
375
Georgios Pinitas37044642018-10-30 14:53:25 +0000376 // Collapse window
377 Window window_collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
378 const size_t total_batches = _input->info()->tensor_shape().total_size_upper(3);
379
380 Window win = window_collapsed;
381 win.set(Window::DimZ, Window::Dimension(0, std::ceil(_output->info()->dimension(2) / static_cast<float>(_num_planes_processed_per_iteration)) * total_batches, 1));
Giorgio Arenad051e972018-06-20 11:46:42 +0100382
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000383 // Create input window and adjust
Giorgio Arenad051e972018-06-20 11:46:42 +0100384 Window win_in = win;
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000385 win_in.set_dimension_step(Window::DimY, _num_rows_processed_per_iteration);
386 win_in.set_dimension_step(Window::DimZ, _conv_stride_y);
387
388 ARM_COMPUTE_ERROR_ON((win_in.y().step() < window.y().step()) || (win_in.z().step() < window.z().step()));
389
Georgios Pinitas37044642018-10-30 14:53:25 +0000390 Window slice_in = win_in.first_slice_window_4D();
391 Window slice_out = win.first_slice_window_4D();
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000392
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100393 unsigned int idx = 2 * num_arguments_per_4D_tensor() + (_is_quantized ? num_arguments_per_2D_tensor() : num_arguments_per_3D_tensor());
394
395 if(_is_quantized)
396 {
397 Window slice;
398 slice.use_tensor_dimensions(_output_multipliers->info()->tensor_shape());
399 slice.set_dimension_step(Window::DimX, window.x().step());
400 add_1D_tensor_argument(idx, _output_multipliers, slice);
401 add_1D_tensor_argument(idx, _output_shifts, slice);
402 }
Giorgio Arenaeff8d952018-07-02 15:29:57 +0100403
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000404 if(_biases != nullptr)
405 {
Giorgio Arenaeff8d952018-07-02 15:29:57 +0100406 Window win_biases;
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000407 win_biases.use_tensor_dimensions(_biases->info()->tensor_shape());
408 win_biases.set_dimension_step(Window::DimX, window.x().step());
409 add_1D_tensor_argument(idx, _biases, win_biases);
410 }
411
Gian Marco Iodice96aa6b12019-06-27 16:55:51 +0100412 // Calculate the max_offset.
413 // max_offset is the offset for the last NOT valid value in the Z dimension (spatial dimension Y for NHWC)
414 // |******************|
415 // | pad_top |
416 // |******************|
417 // | |
418 // | plane0 |
419 // | batch0 |
420 // |__________________|
421 // |******************| Batch 0
422 // | pad_bottom |
423 // | pad_top |
424 // |******************|
425 // | |
426 // | plane1 |
427 // | batch0 |
428 // |__________________|-----> max_offset
429 // |******************|
430 // | pad_bottom |
431 // | pad_top |
432 // |******************|
433 // | |
434 // | plane0 |
435 // | batch1 |
436 // |__________________|
437 // |******************| Batch 1
438 // | pad_bottom |
439 // | pad_top |
440 // |******************|
441 // | |
442 // | plane1 |
443 // | batch1 |
444 // |__________________|
445 // | pad_bottom |
446 // |******************|
Giorgio Arenaeff8d952018-07-02 15:29:57 +0100447 const int max_offset = _input->info()->strides_in_bytes().z() * _input->info()->dimension(2) - (_input->info()->padding().bottom + _input->info()->padding().top) *
448 _input->info()->strides_in_bytes().y();
449 _kernel.setArg(idx, max_offset);
Giorgio Arenad051e972018-06-20 11:46:42 +0100450
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000451 do
452 {
453 unsigned int idx = 0;
Georgios Pinitas37044642018-10-30 14:53:25 +0000454 add_4D_tensor_argument(idx, _input, slice_in);
455 add_4D_tensor_argument(idx, _output, slice_out);
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100456 if(_is_quantized)
giuros016d109962019-01-07 17:47:19 +0000457 {
458 add_2D_tensor_argument(idx, _weights, slice_out);
459 }
460 else
461 {
462 add_3D_tensor_argument(idx, _weights, slice_out);
463 }
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100464 enqueue(queue, *this, slice_out, lws_hint());
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000465 }
Georgios Pinitas37044642018-10-30 14:53:25 +0000466 while(win.slide_window_slice_4D(slice_out) && win_in.slide_window_slice_4D(slice_in));
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000467}
giuros016d109962019-01-07 17:47:19 +0000468} // namespace arm_compute