blob: 4afca2b31f4b8f5dd451c6d0b8b6f6eeef4ff0e6 [file] [log] [blame]
Giorgio Arenadfca60b2018-01-31 10:30:59 +00001/*
Matthew Bentham758b5ba2020-03-05 23:37:48 +00002 * 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
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"
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{
202 ARM_COMPUTE_ERROR_ON_NULLPTR(input, weights, output);
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100203 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), weights->info(), (biases != nullptr) ? biases->info() : nullptr, output->info(),
204 conv_info, depth_multiplier, act_info, dilation,
205 (output_multipliers != nullptr) ? output_multipliers->info() : nullptr,
206 (output_shifts != nullptr) ? output_shifts->info() : nullptr));
207 auto win_config = validate_and_configure_window(input->info(), weights->info(), biases != nullptr ? biases->info() : nullptr, output->info(),
208 conv_info, depth_multiplier, dilation,
209 (output_multipliers != nullptr) ? output_multipliers->info() : nullptr,
210 (output_shifts != nullptr) ? output_shifts->info() : nullptr);
giuros016d109962019-01-07 17:47:19 +0000211 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000212
Usama Arife73686a2019-04-08 17:30:48 +0100213 const bool is_stride_1 = ((conv_info.stride().first == conv_info.stride().second) && (conv_info.stride().first == 1));
214 const bool is_stride_1_dilation_1 = (is_stride_1 && dilation.x() == 1 && dilation.y() == 1);
215
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100216 const bool is_quantized_per_channel = is_data_type_quantized_per_channel(weights->info()->data_type());
217 const bool is_dot8_supported = dot8_supported(CLKernelLibrary::get().get_device()) && !is_quantized_per_channel;
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000218
Giorgio Arenad051e972018-06-20 11:46:42 +0100219 _input = input;
220 _output = output;
221 _weights = weights;
222 _biases = biases;
223 _conv_stride_y = conv_info.stride().second;
Usama Arife73686a2019-04-08 17:30:48 +0100224 _num_rows_processed_per_iteration = is_stride_1_dilation_1 ? 2 : 1;
225 _num_planes_processed_per_iteration = is_stride_1_dilation_1 ? 2 : 1;
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100226 _output_multipliers = output_multipliers;
227 _output_shifts = output_shifts;
228 _is_quantized = is_data_type_quantized_asymmetric(input->info()->data_type());
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100229
230 // 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 +0100231 if(is_dot8_supported && _is_quantized)
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100232 {
233 _num_planes_processed_per_iteration = 1;
234 }
235
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100236 _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 +0000237
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100238 const unsigned int num_elems_accessed_per_iteration = _is_quantized ? 4 : (8 / input->info()->element_size());
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000239
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000240 CLBuildOptions build_opts;
Usama Arif6a98a6e2019-05-10 17:07:27 +0100241 build_opts.add_option("-DACTIVATION_TYPE=" + lower_string(string_from_activation_func(act_info.activation())));
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000242 build_opts.add_option_if(_biases != nullptr, "-DHAS_BIAS");
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000243 build_opts.add_option("-DVEC_SIZE=" + support::cpp11::to_string(num_elems_accessed_per_iteration));
Giorgio Arenafa23f112018-06-19 11:27:38 +0100244 build_opts.add_option("-DSRC_DIM_2=" + support::cpp11::to_string(_input->info()->dimension(2)));
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000245 build_opts.add_option("-DCONV_PAD_TOP=" + support::cpp11::to_string(conv_info.pad_top()));
Giorgio Arenafa23f112018-06-19 11:27:38 +0100246 build_opts.add_option("-DCONV_PAD_LEFT=" + support::cpp11::to_string(conv_info.pad_left()));
Usama Arife73686a2019-04-08 17:30:48 +0100247 build_opts.add_option("-DDILATION_X=" + support::cpp11::to_string(dilation.x()));
248 build_opts.add_option("-DDILATION_Y=" + support::cpp11::to_string(dilation.y()));
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000249
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100250 if(_is_quantized)
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000251 {
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100252 const UniformQuantizationInfo iq_info = _input->info()->quantization_info().uniform();
253 const UniformQuantizationInfo wq_info = _weights->info()->quantization_info().uniform();
254 const UniformQuantizationInfo oq_info = _output->info()->quantization_info().uniform();
255
Giorgio Arenad051e972018-06-20 11:46:42 +0100256 build_opts.add_option("-DSRC_DIM_1=" + support::cpp11::to_string(_input->info()->dimension(1)));
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100257 build_opts.add_option("-DINPUT_OFFSET=" + support::cpp11::to_string(-iq_info.offset));
258 build_opts.add_option("-DWEIGHTS_OFFSET=" + support::cpp11::to_string(-wq_info.offset));
259 build_opts.add_option("-DOUTPUT_OFFSET=" + support::cpp11::to_string(oq_info.offset));
260 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 +0100261 build_opts.add_option_if(is_quantized_per_channel, "-DPER_CHANNEL_QUANTIZATION");
262 build_opts.add_option_if(is_dot8_supported, "-DIS_DOT8");
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000263
Michele Di Giorgio14cbfb22019-10-23 10:53:10 +0100264 // Compute non-per-channel multiplier and shift anyway to make OpenCL kernel simpler
265 float multiplier = iq_info.scale * wq_info.scale / oq_info.scale;
266 int output_multiplier = 0;
267 int output_shift = 0;
268 quantization::calculate_quantized_multiplier(multiplier, &output_multiplier, &output_shift);
269 build_opts.add_option("-DOUTPUT_MULTIPLIER=" + support::cpp11::to_string(output_multiplier));
270 build_opts.add_option("-DOUTPUT_SHIFT=" + support::cpp11::to_string(output_shift));
271
Giorgio Arenad051e972018-06-20 11:46:42 +0100272 if(act_info.enabled())
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000273 {
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100274 const int a_val = quantize_qasymm8(act_info.a(), oq_info);
275 const int b_val = quantize_qasymm8(act_info.b(), oq_info);
276 const int o1 = oq_info.offset;
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000277
Giorgio Arenad051e972018-06-20 11:46:42 +0100278 build_opts.add_option("-DA_VAL=" + support::cpp11::to_string(a_val));
279 build_opts.add_option("-DB_VAL=" + support::cpp11::to_string(b_val));
280 build_opts.add_option("-DCONST_0=" + support::cpp11::to_string(o1));
281
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100282 const float s1 = iq_info.scale;
Isabella Gottardi9197c962019-02-27 09:29:21 +0000283 build_opts.add_option("-DS1_VAL=" + float_to_string_with_full_precision(s1));
284 build_opts.add_option("-DO1_VAL=" + support::cpp11::to_string(o1));
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000285 }
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100286
287 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(input->info()->data_type()));
288 build_opts.add_option("-DWEIGHTS_TYPE=" + get_cl_type_from_data_type(weights->info()->data_type()));
289 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 +0000290 }
Giorgio Arenae6bb3c62018-08-23 11:19:11 +0100291 else
292 {
Manuel Bottinia788c2f2019-04-08 13:18:00 +0100293 build_opts.add_option_if(act_info.enabled(), "-DA_VAL=" + float_to_string_with_full_precision(act_info.a()));
294 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 +0100295 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(_input->info()->data_type()));
296 }
Giorgio Arenaeff8d952018-07-02 15:29:57 +0100297
Usama Arife73686a2019-04-08 17:30:48 +0100298 if(is_stride_1_dilation_1)
Giorgio Arenad051e972018-06-20 11:46:42 +0100299 {
300 build_opts.add_option("-DNUM_ROWS_PROCESSED=" + support::cpp11::to_string(_num_rows_processed_per_iteration));
301 build_opts.add_option("-DNUM_PLANES_PROCESSED=" + support::cpp11::to_string(_num_planes_processed_per_iteration));
302 build_opts.add_option("-DDST_DIM_2=" + support::cpp11::to_string(_output->info()->dimension(2)));
303 }
304 else
305 {
Georgios Pinitas3f8aac42018-12-24 13:09:02 +0000306 build_opts.add_option("-DCONV_STRIDE_X=" + support::cpp11::to_string(conv_info.stride().first));
Giorgio Arenad051e972018-06-20 11:46:42 +0100307 build_opts.add_option("-DCONV_STRIDE_Y=" + support::cpp11::to_string(_conv_stride_y));
308 }
Georgios Pinitas37044642018-10-30 14:53:25 +0000309 build_opts.add_option_if(_input->info()->tensor_shape().total_size_upper(3) > 1,
310 "-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 +0000311
Pablo Tello47104362019-02-27 13:32:51 +0000312 std::string kernel_name;
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000313 // Create kernel
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100314 if(_is_quantized)
Pablo Tello47104362019-02-27 13:32:51 +0000315 {
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100316 kernel_name = std::string("dwc_3x3_reshaped_quantized8");
Usama Arife73686a2019-04-08 17:30:48 +0100317 kernel_name += (is_dot8_supported && is_stride_1_dilation_1 ? "_dot8" : "");
318 kernel_name += (is_stride_1_dilation_1 ? "_stride1" : "");
Pablo Tello47104362019-02-27 13:32:51 +0000319 kernel_name += "_nhwc";
320 }
321 else
322 {
323 kernel_name = std::string("depthwise_convolution_3x3_nhwc");
Usama Arife73686a2019-04-08 17:30:48 +0100324 kernel_name += (is_stride_1_dilation_1 ? "_stride1" : "");
Pablo Tello47104362019-02-27 13:32:51 +0000325 }
326
Manuel Bottinia788c2f2019-04-08 13:18:00 +0100327 build_opts.add_option_if(input->info()->data_type() == DataType::F16, "-DIS_F16");
328 build_opts.add_option_if(input->info()->data_type() == DataType::F32, "-DIS_F32");
329
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100330 ICLKernel::configure_internal(win_config.second);
giuros016d109962019-01-07 17:47:19 +0000331 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel(kernel_name, build_opts.options()));
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000332
333 // Set config_id for enabling LWS tuning
334 _config_id = kernel_name;
335 _config_id += "_";
336 _config_id += support::cpp11::to_string(input->info()->dimension(0));
337 _config_id += "_";
338 _config_id += support::cpp11::to_string(input->info()->dimension(1));
339 _config_id += "_";
340 _config_id += support::cpp11::to_string(input->info()->dimension(2));
341 _config_id += "_";
342 _config_id += support::cpp11::to_string(output->info()->dimension(0));
343 _config_id += "_";
344 _config_id += support::cpp11::to_string(output->info()->dimension(1));
Giorgio Arenad051e972018-06-20 11:46:42 +0100345 _config_id += "_";
346 _config_id += string_from_data_type(input->info()->data_type());
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000347}
348
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100349Status CLDepthwiseConvolutionLayer3x3NHWCKernel::validate(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *biases, const ITensorInfo *output,
350 const PadStrideInfo &conv_info, unsigned int depth_multiplier, ActivationLayerInfo act_info, const Size2D &dilation,
351 const ITensorInfo *output_multipliers, const ITensorInfo *output_shifts)
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000352{
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100353 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 +0100354 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input->clone().get(), weights->clone().get(),
355 biases != nullptr ? biases->clone().get() : nullptr,
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100356 output->clone().get(), conv_info, depth_multiplier, dilation,
357 (output_multipliers != nullptr) ? output_multipliers->clone().get() : nullptr,
358 (output_shifts != nullptr) ? output_shifts->clone().get() : nullptr)
Georgios Pinitasb2d9ebb2018-05-14 12:21:51 +0100359 .first);
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000360
361 return Status{};
362}
363
364void CLDepthwiseConvolutionLayer3x3NHWCKernel::run(const Window &window, cl::CommandQueue &queue)
365{
366 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
367 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IKernel::window(), window);
368
Georgios Pinitas37044642018-10-30 14:53:25 +0000369 // Collapse window
370 Window window_collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
371 const size_t total_batches = _input->info()->tensor_shape().total_size_upper(3);
372
373 Window win = window_collapsed;
374 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 +0100375
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000376 // Create input window and adjust
Giorgio Arenad051e972018-06-20 11:46:42 +0100377 Window win_in = win;
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000378 win_in.set_dimension_step(Window::DimY, _num_rows_processed_per_iteration);
379 win_in.set_dimension_step(Window::DimZ, _conv_stride_y);
380
381 ARM_COMPUTE_ERROR_ON((win_in.y().step() < window.y().step()) || (win_in.z().step() < window.z().step()));
382
Georgios Pinitas37044642018-10-30 14:53:25 +0000383 Window slice_in = win_in.first_slice_window_4D();
384 Window slice_out = win.first_slice_window_4D();
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000385
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100386 unsigned int idx = 2 * num_arguments_per_4D_tensor() + (_is_quantized ? num_arguments_per_2D_tensor() : num_arguments_per_3D_tensor());
387
388 if(_is_quantized)
389 {
390 Window slice;
391 slice.use_tensor_dimensions(_output_multipliers->info()->tensor_shape());
392 slice.set_dimension_step(Window::DimX, window.x().step());
393 add_1D_tensor_argument(idx, _output_multipliers, slice);
394 add_1D_tensor_argument(idx, _output_shifts, slice);
395 }
Giorgio Arenaeff8d952018-07-02 15:29:57 +0100396
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000397 if(_biases != nullptr)
398 {
Giorgio Arenaeff8d952018-07-02 15:29:57 +0100399 Window win_biases;
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000400 win_biases.use_tensor_dimensions(_biases->info()->tensor_shape());
401 win_biases.set_dimension_step(Window::DimX, window.x().step());
402 add_1D_tensor_argument(idx, _biases, win_biases);
403 }
404
Gian Marco Iodice96aa6b12019-06-27 16:55:51 +0100405 // Calculate the max_offset.
406 // max_offset is the offset for the last NOT valid value in the Z dimension (spatial dimension Y for NHWC)
407 // |******************|
408 // | pad_top |
409 // |******************|
410 // | |
411 // | plane0 |
412 // | batch0 |
413 // |__________________|
414 // |******************| Batch 0
415 // | pad_bottom |
416 // | pad_top |
417 // |******************|
418 // | |
419 // | plane1 |
420 // | batch0 |
421 // |__________________|-----> max_offset
422 // |******************|
423 // | pad_bottom |
424 // | pad_top |
425 // |******************|
426 // | |
427 // | plane0 |
428 // | batch1 |
429 // |__________________|
430 // |******************| Batch 1
431 // | pad_bottom |
432 // | pad_top |
433 // |******************|
434 // | |
435 // | plane1 |
436 // | batch1 |
437 // |__________________|
438 // | pad_bottom |
439 // |******************|
Giorgio Arenaeff8d952018-07-02 15:29:57 +0100440 const int max_offset = _input->info()->strides_in_bytes().z() * _input->info()->dimension(2) - (_input->info()->padding().bottom + _input->info()->padding().top) *
441 _input->info()->strides_in_bytes().y();
442 _kernel.setArg(idx, max_offset);
Giorgio Arenad051e972018-06-20 11:46:42 +0100443
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000444 do
445 {
446 unsigned int idx = 0;
Georgios Pinitas37044642018-10-30 14:53:25 +0000447 add_4D_tensor_argument(idx, _input, slice_in);
448 add_4D_tensor_argument(idx, _output, slice_out);
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100449 if(_is_quantized)
giuros016d109962019-01-07 17:47:19 +0000450 {
451 add_2D_tensor_argument(idx, _weights, slice_out);
452 }
453 else
454 {
455 add_3D_tensor_argument(idx, _weights, slice_out);
456 }
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100457 enqueue(queue, *this, slice_out, lws_hint());
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000458 }
Georgios Pinitas37044642018-10-30 14:53:25 +0000459 while(win.slide_window_slice_4D(slice_out) && win_in.slide_window_slice_4D(slice_in));
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000460}
giuros016d109962019-01-07 17:47:19 +0000461} // namespace arm_compute