blob: 92b859ae5674d299bb414e9a256506ec2cee4d51 [file] [log] [blame]
Giorgio Arenadfca60b2018-01-31 10:30:59 +00001/*
Michele Di Giorgio17a01a32019-01-03 15:12:27 +00002 * Copyright (c) 2018-2019 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
26#include "arm_compute/core/AccessWindowStatic.h"
27#include "arm_compute/core/CL/CLHelpers.h"
28#include "arm_compute/core/CL/CLKernelLibrary.h"
Giorgio Arenae6bb3c62018-08-23 11:19:11 +010029#include "arm_compute/core/CL/CLValidate.h"
Giorgio Arenadfca60b2018-01-31 10:30:59 +000030#include "arm_compute/core/CL/ICLKernel.h"
31#include "arm_compute/core/CL/ICLTensor.h"
32#include "arm_compute/core/Error.h"
33#include "arm_compute/core/Helpers.h"
34#include "arm_compute/core/TensorInfo.h"
35#include "arm_compute/core/Types.h"
36#include "arm_compute/core/Utils.h"
37#include "arm_compute/core/utils/misc/ShapeCalculator.h"
38#include "arm_compute/core/utils/quantization/AsymmHelpers.h"
39
giuros016d109962019-01-07 17:47:19 +000040namespace arm_compute
41{
Giorgio Arenadfca60b2018-01-31 10:30:59 +000042namespace
43{
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +010044Status validate_arguments(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *biases, const ITensorInfo *output,
45 const PadStrideInfo &conv_info, unsigned int depth_multiplier, const ActivationLayerInfo &act_info, const Size2D &dilation,
46 const ITensorInfo *output_multipliers, const ITensorInfo *output_shifts)
Giorgio Arenadfca60b2018-01-31 10:30:59 +000047{
Giorgio Arenae6bb3c62018-08-23 11:19:11 +010048 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input);
Michele Di Giorgio37cbc572019-12-19 16:41:49 +000049 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::F16, DataType::F32, DataType::QASYMM8, DataType::QASYMM8_SIGNED);
50 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 +010051 && (act_info.activation() != ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU)
Manuel Bottinia788c2f2019-04-08 13:18:00 +010052 && (act_info.activation() != ActivationLayerInfo::ActivationFunction::BOUNDED_RELU)
53 && (act_info.activation() != ActivationLayerInfo::ActivationFunction::RELU)
54 && (act_info.activation() != ActivationLayerInfo::ActivationFunction::LOGISTIC),
55 "For QASYMM8 only logistic, relu, lower bounded relu and lower-upper bounded relu are supported");
Giorgio Arena76572242018-04-04 17:44:26 +010056 ARM_COMPUTE_RETURN_ERROR_ON(depth_multiplier > 1); // COMPMID-1071 Add depth multiplier support for NHWC
giuros016d109962019-01-07 17:47:19 +000057
58 ARM_COMPUTE_RETURN_ERROR_ON(conv_info.stride().first < 1);
Pablo Telloe4cad152019-06-04 11:28:05 +010059 ARM_COMPUTE_RETURN_ERROR_ON(std::max(conv_info.pad_top(), conv_info.pad_bottom()) > 4);
Giorgio Arenadfca60b2018-01-31 10:30:59 +000060
Usama Arife73686a2019-04-08 17:30:48 +010061 ARM_COMPUTE_RETURN_ERROR_ON((dilation.x() < 1) || (dilation.y() < 1));
62
giuros016d109962019-01-07 17:47:19 +000063 const bool is_qasymm = is_data_type_quantized_asymmetric(input->data_type());
64 const size_t weights_width = 3;
65 const size_t weights_height = 3;
66
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +010067 const TensorShape output_shape = arm_compute::misc::shape_calculator::compute_depthwise_convolution_shape(
68 *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 +000069 if(is_qasymm)
70 {
71 DepthwiseConvolutionReshapeInfo info;
72 info.c0 = 4;
73 ARM_COMPUTE_RETURN_ERROR_ON((weights->dimension(0) / info.c0) != weights_width * weights_height);
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +010074
75 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(output_multipliers, output_shifts);
76 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output_multipliers, 1, DataType::S32);
77 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output_shifts, 1, DataType::S32);
78 ARM_COMPUTE_RETURN_ERROR_ON(output_multipliers->num_dimensions() > 1);
79 ARM_COMPUTE_RETURN_ERROR_ON(output_shifts->num_dimensions() > 1);
80
81 if(is_data_type_quantized_per_channel(weights->data_type()))
82 {
83 ARM_COMPUTE_RETURN_ERROR_ON(output_shape[0] != output_multipliers->dimension(0));
84 ARM_COMPUTE_RETURN_ERROR_ON(output_shape[0] != output_shifts->dimension(0));
85 }
86 else
87 {
88 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, weights);
89 ARM_COMPUTE_RETURN_ERROR_ON(1 != output_multipliers->dimension(0));
90 ARM_COMPUTE_RETURN_ERROR_ON(1 != output_shifts->dimension(0));
91 }
giuros016d109962019-01-07 17:47:19 +000092 }
93 else
94 {
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +010095 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, weights);
giuros016d109962019-01-07 17:47:19 +000096 ARM_COMPUTE_RETURN_ERROR_ON((weights->dimension(1) != weights_width) || (weights->dimension(2) != weights_height));
97 }
Giorgio Arenad051e972018-06-20 11:46:42 +010098
Giorgio Arenadfca60b2018-01-31 10:30:59 +000099 if(biases != nullptr)
100 {
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100101 ARM_COMPUTE_RETURN_ERROR_ON(biases->dimension(0) != output_shape[0]);
Giorgio Arenad051e972018-06-20 11:46:42 +0100102 if(is_qasymm)
103 {
104 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(biases, 1, DataType::S32);
105 }
106 else
107 {
108 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(weights, biases);
109 }
giuros016d109962019-01-07 17:47:19 +0000110
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000111 ARM_COMPUTE_RETURN_ERROR_ON(biases->num_dimensions() > 1);
112 }
113
114 if(output->total_size() != 0)
115 {
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000116 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DIMENSIONS(output->tensor_shape(), output_shape);
117 }
118
119 return Status{};
120}
121
Georgios Pinitasb2d9ebb2018-05-14 12:21:51 +0100122std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input, ITensorInfo *weights, ITensorInfo *bias, ITensorInfo *output,
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100123 const PadStrideInfo &conv_info, unsigned int depth_multiplier, const Size2D &dilation,
124 ITensorInfo *output_multipliers, ITensorInfo *output_shifts)
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000125{
giuros016d109962019-01-07 17:47:19 +0000126 const size_t weights_width = 3;
127 const size_t weights_height = 3;
128
Giorgio Arenaeff8d952018-07-02 15:29:57 +0100129 // Get convolved dimensions
Usama Arife73686a2019-04-08 17:30:48 +0100130 const TensorShape output_shape = arm_compute::misc::shape_calculator::compute_depthwise_convolution_shape(
131 *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 +0100132
Pablo Telloa28aebc2019-06-03 14:59:48 +0100133 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 +0100134
Usama Arife73686a2019-04-08 17:30:48 +0100135 const bool is_qasymm = is_data_type_quantized_asymmetric(input->data_type());
136 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 +0000137
Usama Arife73686a2019-04-08 17:30:48 +0100138 const unsigned int num_rows_processed_per_iteration = is_stride_1_dilation_1 ? 2 : 1;
Giorgio Arenae6bb3c62018-08-23 11:19:11 +0100139 const unsigned int num_elems_accessed_per_iteration = is_qasymm ? 4 : (8 / input->element_size());
Giorgio Arenad051e972018-06-20 11:46:42 +0100140 const unsigned int num_rows_read_per_iteration = num_rows_processed_per_iteration + 2;
141 const unsigned int num_rows_written_per_iteration = std::ceil(num_rows_processed_per_iteration / static_cast<float>(conv_info.stride().first));
142
143 BorderSize border_size;
Giorgio Arenaeff8d952018-07-02 15:29:57 +0100144 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 +0000145
146 // Configure kernel window
147 Window win = calculate_max_window(*output, Steps(num_elems_accessed_per_iteration, num_rows_written_per_iteration));
148
149 AccessWindowStatic input_access(input, 0, -border_size.top, ceil_to_multiple(input->dimension(0), num_elems_accessed_per_iteration),
150 ceil_to_multiple(input->dimension(1) + border_size.bottom, num_rows_read_per_iteration));
Michele Di Giorgio17a01a32019-01-03 15:12:27 +0000151 AccessWindowRectangle output_access(output, 0, 0, num_elems_accessed_per_iteration, num_rows_written_per_iteration);
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000152
giuros016d109962019-01-07 17:47:19 +0000153 bool window_changed = false;
154
155 if(is_qasymm)
156 {
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100157 if((output_multipliers != nullptr) && (output_shifts != nullptr))
158 {
159 AccessWindowHorizontal output_multipliers_access(output_multipliers, 0, num_elems_accessed_per_iteration);
160 AccessWindowHorizontal output_shifts_access(output_shifts, 0, num_elems_accessed_per_iteration);
161 window_changed = window_changed || update_window_and_padding(win, input_access, output_access, output_multipliers_access, output_shifts_access);
162 }
163 else
164 {
165 Status err = ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "output_multipliers and output_shifts must be non-nullptr for quantized input");
166 return std::make_pair(err, win);
167 }
giuros016d109962019-01-07 17:47:19 +0000168 }
169 else
170 {
Isabella Gottardi9197c962019-02-27 09:29:21 +0000171 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 +0000172 window_changed = update_window_and_padding(win, input_access, weights_access, output_access);
173 }
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000174
Georgios Pinitasb2d9ebb2018-05-14 12:21:51 +0100175 if(bias != nullptr)
176 {
177 AccessWindowHorizontal bias_access(bias, 0, num_elems_accessed_per_iteration);
178 window_changed = window_changed || update_window_and_padding(win, bias_access);
179 }
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000180 output_access.set_valid_region(win, ValidRegion(Coordinates(), output->tensor_shape()));
181
182 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
183 return std::make_pair(err, win);
184}
185} // namespace
186
187CLDepthwiseConvolutionLayer3x3NHWCKernel::CLDepthwiseConvolutionLayer3x3NHWCKernel()
Giorgio Arenad051e972018-06-20 11:46:42 +0100188 : _num_rows_processed_per_iteration(1), _num_planes_processed_per_iteration(1)
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000189{
190}
191
192BorderSize CLDepthwiseConvolutionLayer3x3NHWCKernel::border_size() const
193{
194 return _border_size;
195}
196
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100197void CLDepthwiseConvolutionLayer3x3NHWCKernel::configure(const ICLTensor *input, const ICLTensor *weights, const ICLTensor *biases, ICLTensor *output,
198 const PadStrideInfo &conv_info, unsigned int depth_multiplier, ActivationLayerInfo act_info, const Size2D &dilation,
199 const ICLTensor *output_multipliers, const ICLTensor *output_shifts)
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000200{
201 ARM_COMPUTE_ERROR_ON_NULLPTR(input, weights, output);
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100202 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), weights->info(), (biases != nullptr) ? biases->info() : nullptr, output->info(),
203 conv_info, depth_multiplier, act_info, dilation,
204 (output_multipliers != nullptr) ? output_multipliers->info() : nullptr,
205 (output_shifts != nullptr) ? output_shifts->info() : nullptr));
206 auto win_config = validate_and_configure_window(input->info(), weights->info(), biases != nullptr ? biases->info() : nullptr, output->info(),
207 conv_info, depth_multiplier, dilation,
208 (output_multipliers != nullptr) ? output_multipliers->info() : nullptr,
209 (output_shifts != nullptr) ? output_shifts->info() : nullptr);
giuros016d109962019-01-07 17:47:19 +0000210 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000211
Usama Arife73686a2019-04-08 17:30:48 +0100212 const bool is_stride_1 = ((conv_info.stride().first == conv_info.stride().second) && (conv_info.stride().first == 1));
213 const bool is_stride_1_dilation_1 = (is_stride_1 && dilation.x() == 1 && dilation.y() == 1);
214
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100215 const bool is_quantized_per_channel = is_data_type_quantized_per_channel(weights->info()->data_type());
216 const bool is_dot8_supported = dot8_supported(CLKernelLibrary::get().get_device()) && !is_quantized_per_channel;
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000217
Giorgio Arenad051e972018-06-20 11:46:42 +0100218 _input = input;
219 _output = output;
220 _weights = weights;
221 _biases = biases;
222 _conv_stride_y = conv_info.stride().second;
Usama Arife73686a2019-04-08 17:30:48 +0100223 _num_rows_processed_per_iteration = is_stride_1_dilation_1 ? 2 : 1;
224 _num_planes_processed_per_iteration = is_stride_1_dilation_1 ? 2 : 1;
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100225 _output_multipliers = output_multipliers;
226 _output_shifts = output_shifts;
227 _is_quantized = is_data_type_quantized_asymmetric(input->info()->data_type());
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100228
229 // 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 +0100230 if(is_dot8_supported && _is_quantized)
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100231 {
232 _num_planes_processed_per_iteration = 1;
233 }
234
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100235 _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 +0000236
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100237 const unsigned int num_elems_accessed_per_iteration = _is_quantized ? 4 : (8 / input->info()->element_size());
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000238
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000239 CLBuildOptions build_opts;
Usama Arif6a98a6e2019-05-10 17:07:27 +0100240 build_opts.add_option("-DACTIVATION_TYPE=" + lower_string(string_from_activation_func(act_info.activation())));
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000241 build_opts.add_option_if(_biases != nullptr, "-DHAS_BIAS");
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000242 build_opts.add_option("-DVEC_SIZE=" + support::cpp11::to_string(num_elems_accessed_per_iteration));
Giorgio Arenafa23f112018-06-19 11:27:38 +0100243 build_opts.add_option("-DSRC_DIM_2=" + support::cpp11::to_string(_input->info()->dimension(2)));
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000244 build_opts.add_option("-DCONV_PAD_TOP=" + support::cpp11::to_string(conv_info.pad_top()));
Giorgio Arenafa23f112018-06-19 11:27:38 +0100245 build_opts.add_option("-DCONV_PAD_LEFT=" + support::cpp11::to_string(conv_info.pad_left()));
Usama Arife73686a2019-04-08 17:30:48 +0100246 build_opts.add_option("-DDILATION_X=" + support::cpp11::to_string(dilation.x()));
247 build_opts.add_option("-DDILATION_Y=" + support::cpp11::to_string(dilation.y()));
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000248
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100249 if(_is_quantized)
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000250 {
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100251 const UniformQuantizationInfo iq_info = _input->info()->quantization_info().uniform();
252 const UniformQuantizationInfo wq_info = _weights->info()->quantization_info().uniform();
253 const UniformQuantizationInfo oq_info = _output->info()->quantization_info().uniform();
254
Giorgio Arenad051e972018-06-20 11:46:42 +0100255 build_opts.add_option("-DSRC_DIM_1=" + support::cpp11::to_string(_input->info()->dimension(1)));
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100256 build_opts.add_option("-DINPUT_OFFSET=" + support::cpp11::to_string(-iq_info.offset));
257 build_opts.add_option("-DWEIGHTS_OFFSET=" + support::cpp11::to_string(-wq_info.offset));
258 build_opts.add_option("-DOUTPUT_OFFSET=" + support::cpp11::to_string(oq_info.offset));
259 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 +0100260 build_opts.add_option_if(is_quantized_per_channel, "-DPER_CHANNEL_QUANTIZATION");
261 build_opts.add_option_if(is_dot8_supported, "-DIS_DOT8");
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000262
Michele Di Giorgio14cbfb22019-10-23 10:53:10 +0100263 // Compute non-per-channel multiplier and shift anyway to make OpenCL kernel simpler
264 float multiplier = iq_info.scale * wq_info.scale / oq_info.scale;
265 int output_multiplier = 0;
266 int output_shift = 0;
267 quantization::calculate_quantized_multiplier(multiplier, &output_multiplier, &output_shift);
268 build_opts.add_option("-DOUTPUT_MULTIPLIER=" + support::cpp11::to_string(output_multiplier));
269 build_opts.add_option("-DOUTPUT_SHIFT=" + support::cpp11::to_string(output_shift));
270
Giorgio Arenad051e972018-06-20 11:46:42 +0100271 if(act_info.enabled())
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000272 {
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100273 const int a_val = quantize_qasymm8(act_info.a(), oq_info);
274 const int b_val = quantize_qasymm8(act_info.b(), oq_info);
275 const int o1 = oq_info.offset;
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000276
Giorgio Arenad051e972018-06-20 11:46:42 +0100277 build_opts.add_option("-DA_VAL=" + support::cpp11::to_string(a_val));
278 build_opts.add_option("-DB_VAL=" + support::cpp11::to_string(b_val));
279 build_opts.add_option("-DCONST_0=" + support::cpp11::to_string(o1));
280
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100281 const float s1 = iq_info.scale;
Isabella Gottardi9197c962019-02-27 09:29:21 +0000282 build_opts.add_option("-DS1_VAL=" + float_to_string_with_full_precision(s1));
283 build_opts.add_option("-DO1_VAL=" + support::cpp11::to_string(o1));
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000284 }
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100285
286 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(input->info()->data_type()));
287 build_opts.add_option("-DWEIGHTS_TYPE=" + get_cl_type_from_data_type(weights->info()->data_type()));
288 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 +0000289 }
Giorgio Arenae6bb3c62018-08-23 11:19:11 +0100290 else
291 {
Manuel Bottinia788c2f2019-04-08 13:18:00 +0100292 build_opts.add_option_if(act_info.enabled(), "-DA_VAL=" + float_to_string_with_full_precision(act_info.a()));
293 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 +0100294 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(_input->info()->data_type()));
295 }
Giorgio Arenaeff8d952018-07-02 15:29:57 +0100296
Usama Arife73686a2019-04-08 17:30:48 +0100297 if(is_stride_1_dilation_1)
Giorgio Arenad051e972018-06-20 11:46:42 +0100298 {
299 build_opts.add_option("-DNUM_ROWS_PROCESSED=" + support::cpp11::to_string(_num_rows_processed_per_iteration));
300 build_opts.add_option("-DNUM_PLANES_PROCESSED=" + support::cpp11::to_string(_num_planes_processed_per_iteration));
301 build_opts.add_option("-DDST_DIM_2=" + support::cpp11::to_string(_output->info()->dimension(2)));
302 }
303 else
304 {
Georgios Pinitas3f8aac42018-12-24 13:09:02 +0000305 build_opts.add_option("-DCONV_STRIDE_X=" + support::cpp11::to_string(conv_info.stride().first));
Giorgio Arenad051e972018-06-20 11:46:42 +0100306 build_opts.add_option("-DCONV_STRIDE_Y=" + support::cpp11::to_string(_conv_stride_y));
307 }
Georgios Pinitas37044642018-10-30 14:53:25 +0000308 build_opts.add_option_if(_input->info()->tensor_shape().total_size_upper(3) > 1,
309 "-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 +0000310
Pablo Tello47104362019-02-27 13:32:51 +0000311 std::string kernel_name;
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000312 // Create kernel
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100313 if(_is_quantized)
Pablo Tello47104362019-02-27 13:32:51 +0000314 {
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100315 kernel_name = std::string("dwc_3x3_reshaped_quantized8");
Usama Arife73686a2019-04-08 17:30:48 +0100316 kernel_name += (is_dot8_supported && is_stride_1_dilation_1 ? "_dot8" : "");
317 kernel_name += (is_stride_1_dilation_1 ? "_stride1" : "");
Pablo Tello47104362019-02-27 13:32:51 +0000318 kernel_name += "_nhwc";
319 }
320 else
321 {
322 kernel_name = std::string("depthwise_convolution_3x3_nhwc");
Usama Arife73686a2019-04-08 17:30:48 +0100323 kernel_name += (is_stride_1_dilation_1 ? "_stride1" : "");
Pablo Tello47104362019-02-27 13:32:51 +0000324 }
325
Manuel Bottinia788c2f2019-04-08 13:18:00 +0100326 build_opts.add_option_if(input->info()->data_type() == DataType::F16, "-DIS_F16");
327 build_opts.add_option_if(input->info()->data_type() == DataType::F32, "-DIS_F32");
328
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100329 ICLKernel::configure_internal(win_config.second);
giuros016d109962019-01-07 17:47:19 +0000330 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel(kernel_name, build_opts.options()));
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000331
332 // Set config_id for enabling LWS tuning
333 _config_id = kernel_name;
334 _config_id += "_";
335 _config_id += support::cpp11::to_string(input->info()->dimension(0));
336 _config_id += "_";
337 _config_id += support::cpp11::to_string(input->info()->dimension(1));
338 _config_id += "_";
339 _config_id += support::cpp11::to_string(input->info()->dimension(2));
340 _config_id += "_";
341 _config_id += support::cpp11::to_string(output->info()->dimension(0));
342 _config_id += "_";
343 _config_id += support::cpp11::to_string(output->info()->dimension(1));
Giorgio Arenad051e972018-06-20 11:46:42 +0100344 _config_id += "_";
345 _config_id += string_from_data_type(input->info()->data_type());
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000346}
347
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100348Status CLDepthwiseConvolutionLayer3x3NHWCKernel::validate(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *biases, const ITensorInfo *output,
349 const PadStrideInfo &conv_info, unsigned int depth_multiplier, ActivationLayerInfo act_info, const Size2D &dilation,
350 const ITensorInfo *output_multipliers, const ITensorInfo *output_shifts)
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000351{
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100352 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 +0100353 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input->clone().get(), weights->clone().get(),
354 biases != nullptr ? biases->clone().get() : nullptr,
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100355 output->clone().get(), conv_info, depth_multiplier, dilation,
356 (output_multipliers != nullptr) ? output_multipliers->clone().get() : nullptr,
357 (output_shifts != nullptr) ? output_shifts->clone().get() : nullptr)
Georgios Pinitasb2d9ebb2018-05-14 12:21:51 +0100358 .first);
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000359
360 return Status{};
361}
362
363void CLDepthwiseConvolutionLayer3x3NHWCKernel::run(const Window &window, cl::CommandQueue &queue)
364{
365 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
366 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IKernel::window(), window);
367
Georgios Pinitas37044642018-10-30 14:53:25 +0000368 // Collapse window
369 Window window_collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
370 const size_t total_batches = _input->info()->tensor_shape().total_size_upper(3);
371
372 Window win = window_collapsed;
373 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 +0100374
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000375 // Create input window and adjust
Giorgio Arenad051e972018-06-20 11:46:42 +0100376 Window win_in = win;
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000377 win_in.set_dimension_step(Window::DimY, _num_rows_processed_per_iteration);
378 win_in.set_dimension_step(Window::DimZ, _conv_stride_y);
379
380 ARM_COMPUTE_ERROR_ON((win_in.y().step() < window.y().step()) || (win_in.z().step() < window.z().step()));
381
Georgios Pinitas37044642018-10-30 14:53:25 +0000382 Window slice_in = win_in.first_slice_window_4D();
383 Window slice_out = win.first_slice_window_4D();
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000384
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100385 unsigned int idx = 2 * num_arguments_per_4D_tensor() + (_is_quantized ? num_arguments_per_2D_tensor() : num_arguments_per_3D_tensor());
386
387 if(_is_quantized)
388 {
389 Window slice;
390 slice.use_tensor_dimensions(_output_multipliers->info()->tensor_shape());
391 slice.set_dimension_step(Window::DimX, window.x().step());
392 add_1D_tensor_argument(idx, _output_multipliers, slice);
393 add_1D_tensor_argument(idx, _output_shifts, slice);
394 }
Giorgio Arenaeff8d952018-07-02 15:29:57 +0100395
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000396 if(_biases != nullptr)
397 {
Giorgio Arenaeff8d952018-07-02 15:29:57 +0100398 Window win_biases;
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000399 win_biases.use_tensor_dimensions(_biases->info()->tensor_shape());
400 win_biases.set_dimension_step(Window::DimX, window.x().step());
401 add_1D_tensor_argument(idx, _biases, win_biases);
402 }
403
Gian Marco Iodice96aa6b12019-06-27 16:55:51 +0100404 // Calculate the max_offset.
405 // max_offset is the offset for the last NOT valid value in the Z dimension (spatial dimension Y for NHWC)
406 // |******************|
407 // | pad_top |
408 // |******************|
409 // | |
410 // | plane0 |
411 // | batch0 |
412 // |__________________|
413 // |******************| Batch 0
414 // | pad_bottom |
415 // | pad_top |
416 // |******************|
417 // | |
418 // | plane1 |
419 // | batch0 |
420 // |__________________|-----> max_offset
421 // |******************|
422 // | pad_bottom |
423 // | pad_top |
424 // |******************|
425 // | |
426 // | plane0 |
427 // | batch1 |
428 // |__________________|
429 // |******************| Batch 1
430 // | pad_bottom |
431 // | pad_top |
432 // |******************|
433 // | |
434 // | plane1 |
435 // | batch1 |
436 // |__________________|
437 // | pad_bottom |
438 // |******************|
Giorgio Arenaeff8d952018-07-02 15:29:57 +0100439 const int max_offset = _input->info()->strides_in_bytes().z() * _input->info()->dimension(2) - (_input->info()->padding().bottom + _input->info()->padding().top) *
440 _input->info()->strides_in_bytes().y();
441 _kernel.setArg(idx, max_offset);
Giorgio Arenad051e972018-06-20 11:46:42 +0100442
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000443 do
444 {
445 unsigned int idx = 0;
Georgios Pinitas37044642018-10-30 14:53:25 +0000446 add_4D_tensor_argument(idx, _input, slice_in);
447 add_4D_tensor_argument(idx, _output, slice_out);
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100448 if(_is_quantized)
giuros016d109962019-01-07 17:47:19 +0000449 {
450 add_2D_tensor_argument(idx, _weights, slice_out);
451 }
452 else
453 {
454 add_3D_tensor_argument(idx, _weights, slice_out);
455 }
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100456 enqueue(queue, *this, slice_out, lws_hint());
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000457 }
Georgios Pinitas37044642018-10-30 14:53:25 +0000458 while(win.slide_window_slice_4D(slice_out) && win_in.slide_window_slice_4D(slice_in));
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000459}
giuros016d109962019-01-07 17:47:19 +0000460} // namespace arm_compute