blob: c4b70ca82b8e86fb4e5e6dcc4e2862a4d6685587 [file] [log] [blame]
steniu0127b386c2017-07-18 17:37:43 +01001/*
Gunes Bayirfdb53422022-05-25 10:09:39 +01002 * Copyright (c) 2017-2022 Arm Limited.
steniu0127b386c2017-07-18 17:37:43 +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 */
Georgios Pinitas7891a732021-08-20 21:39:25 +010024#include "src/gpu/cl/kernels/ClDirectConv2dKernel.h"
steniu0127b386c2017-07-18 17:37:43 +010025
steniu0127b386c2017-07-18 17:37:43 +010026#include "arm_compute/core/CL/CLKernelLibrary.h"
27#include "arm_compute/core/CL/ICLTensor.h"
steniu0127b386c2017-07-18 17:37:43 +010028#include "arm_compute/core/Helpers.h"
steniu0127b386c2017-07-18 17:37:43 +010029#include "arm_compute/core/ITensor.h"
Gian Marco Iodice2cc50b32022-05-30 14:41:49 +010030#include "arm_compute/core/KernelDescriptors.h"
Gian Marco Iodiced95c3e82021-01-19 17:39:02 +000031#include "arm_compute/core/PixelValue.h"
Gian Marco Iodice5cb4d6a2017-08-08 10:53:00 +010032#include "arm_compute/core/Utils.h"
Giorgio Arenac0f54432018-03-16 14:02:34 +000033#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Chunosovd621bca2017-11-03 17:33:15 +070034#include "arm_compute/core/utils/quantization/AsymmHelpers.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010035#include "src/core/AccessWindowStatic.h"
Gian Marco Iodice0b76f7d2021-04-08 17:20:00 +010036#include "src/core/CL/CLUtils.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010037#include "src/core/CL/CLValidate.h"
38#include "src/core/helpers/AutoConfiguration.h"
39#include "src/core/helpers/WindowHelpers.h"
Georgios Pinitas7891a732021-08-20 21:39:25 +010040#include "src/gpu/cl/kernels/gemm/ClGemmHelpers.h"
Sheri Zhang1efed922021-03-10 22:43:38 +000041#include "support/Cast.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000042#include "support/StringSupport.h"
Gian Marco Iodice2cc50b32022-05-30 14:41:49 +010043
Michele Di Giorgio14cbfb22019-10-23 10:53:10 +010044namespace arm_compute
45{
Sheri Zhang1efed922021-03-10 22:43:38 +000046namespace opencl
47{
48namespace kernels
49{
Georgios Pinitas30902ed2017-11-14 15:32:57 +000050namespace
51{
Georgios Pinitas9fc3be62021-05-29 04:01:51 +010052Status validate_arguments(const ITensorInfo *src, const ITensorInfo *weights, const ITensorInfo *biases, const ITensorInfo *dst,
Gian Marco Iodice2cc50b32022-05-30 14:41:49 +010053 const PadStrideInfo &conv_info, const ActivationLayerInfo &act_info, const DirectConvComputeKernelInfo &desc)
Georgios Pinitas30902ed2017-11-14 15:32:57 +000054{
Sheri Zhang1efed922021-03-10 22:43:38 +000055 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(src);
56 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(src, 1, DataType::QASYMM8_SIGNED, DataType::QASYMM8, DataType::F16, DataType::F32);
57 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(src, weights);
Pablo Tello3d319462018-06-21 15:13:17 +010058
Sheri Zhang1efed922021-03-10 22:43:38 +000059 const DataLayout data_layout = src->data_layout();
Pablo Tello3d319462018-06-21 15:13:17 +010060 const int width_idx = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
61 const int height_idx = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT);
62 const int channel_idx = get_data_layout_dimension_index(data_layout, DataLayoutDimension::CHANNEL);
63
Giorgio Arena945ae9e2021-10-13 11:13:04 +010064 ARM_COMPUTE_RETURN_ERROR_ON_MSG(weights->dimension(channel_idx) != src->dimension(channel_idx), "Weights feature map dimension should match the respective src's one");
Pablo Tello3d319462018-06-21 15:13:17 +010065 ARM_COMPUTE_RETURN_ERROR_ON_MSG(weights->num_dimensions() > 4, "Weights can be at most 4 dimensional");
Georgios Pinitas30902ed2017-11-14 15:32:57 +000066
Gian Marco Iodiceff1fe3e2021-01-02 09:58:51 +000067 if(data_layout == DataLayout::NCHW)
68 {
Giorgio Arena945ae9e2021-10-13 11:13:04 +010069 ARM_COMPUTE_RETURN_ERROR_ON_MSG(weights->dimension(width_idx) != weights->dimension(height_idx), "Weights should have same width and height");
70 ARM_COMPUTE_RETURN_ERROR_ON_MSG((weights->dimension(width_idx) == 1) && std::get<0>(conv_info.stride()) > 3, "Strides larger than 3 not supported for 1x1 convolution.");
71 ARM_COMPUTE_RETURN_ERROR_ON_MSG((weights->dimension(width_idx) == 3 || weights->dimension(width_idx) == 5 || weights->dimension(width_idx) == 9) && std::get<0>(conv_info.stride()) > 2,
72 "Strides larger than 2 not supported for 3x3, 5x5, 9x9 convolution.");
73 ARM_COMPUTE_RETURN_ERROR_ON_MSG(!is_data_type_float(src->data_type()) && act_info.enabled(), "Activation supported only for floating point and NHWC.");
74
Sheri Zhang1efed922021-03-10 22:43:38 +000075 if(is_data_type_quantized(src->data_type()))
Gian Marco Iodiceff1fe3e2021-01-02 09:58:51 +000076 {
77 ARM_COMPUTE_RETURN_ERROR_ON_MSG(weights->dimension(width_idx) != 1 && weights->dimension(width_idx) != 3 && weights->dimension(width_idx) != 5 && weights->dimension(width_idx) != 9,
Gian Marco Iodiced95c3e82021-01-19 17:39:02 +000078 "Kernel sizes other than 1x1, 3x3, 5x5 or 9x9 are not supported with quantized data types");
Gian Marco Iodiceff1fe3e2021-01-02 09:58:51 +000079 }
80 else
81 {
82 ARM_COMPUTE_RETURN_ERROR_ON_MSG(weights->dimension(width_idx) != 1 && weights->dimension(width_idx) != 3 && weights->dimension(width_idx) != 5,
83 "Kernel sizes other than 1x1, 3x3 or 5x5 are not supported with float data types");
84 }
85 }
86
Gian Marco Iodice2cc50b32022-05-30 14:41:49 +010087 if(data_layout == DataLayout::NHWC)
88 {
89 ARM_COMPUTE_RETURN_ERROR_ON_MSG(desc.n0 != 1 && desc.n0 != 2 && desc.n0 != 3 && desc.n0 != 4 && desc.n0 != 8 && desc.n0 != 16,
90 "N0 can only be: 1, 2, 3, 4, 8, and 16");
91 ARM_COMPUTE_RETURN_ERROR_ON_MSG(desc.k0 != 1 && desc.k0 != 2 && desc.k0 != 3 && desc.k0 != 4 && desc.k0 != 8 && desc.k0 != 16,
92 "K0 can only be: 1, 2, 3, 4, 8, and 16");
93 if(desc.export_weights_to_cl_image)
94 {
95 ARM_COMPUTE_RETURN_ERROR_ON_MSG(desc.k0 != 4 && desc.k0 != 8 && desc.k0 != 16,
96 "K0 can only be: 4, 8, and 16");
97 ARM_COMPUTE_RETURN_ERROR_ON_MSG(!export_weights_to_cl_image(weights),
98 "Export to CLImage is not supported for this weight configuration");
99 }
100 }
101
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000102 if(biases != nullptr)
103 {
Sheri Zhang1efed922021-03-10 22:43:38 +0000104 if(is_data_type_quantized_asymmetric(src->data_type()))
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000105 {
106 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(biases, 1, DataType::S32);
107 }
108 else
109 {
110 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(weights, biases);
111 }
112 ARM_COMPUTE_RETURN_ERROR_ON_MSG(biases->dimension(0) != weights->dimension(3),
Giorgio Arena945ae9e2021-10-13 11:13:04 +0100113 "Biases size and number of dst feature maps should match");
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000114 ARM_COMPUTE_RETURN_ERROR_ON_MSG(biases->num_dimensions() > 1,
115 "Biases should be one dimensional");
116 }
117
Sheri Zhang1efed922021-03-10 22:43:38 +0000118 // Checks performed when dst is configured
119 if(dst->total_size() != 0)
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000120 {
Sheri Zhang1efed922021-03-10 22:43:38 +0000121 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DIMENSIONS(dst->tensor_shape(),
122 misc::shape_calculator::compute_deep_convolution_shape(*src, *weights, conv_info));
123 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(src, dst);
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000124 }
125
Sheri Zhang1efed922021-03-10 22:43:38 +0000126 const auto data_type = src->data_type();
Michele Di Giorgio14cbfb22019-10-23 10:53:10 +0100127 if(is_data_type_quantized(data_type))
128 {
Sheri Zhang1efed922021-03-10 22:43:38 +0000129 const UniformQuantizationInfo iqinfo = src->quantization_info().uniform();
Michele Di Giorgio14cbfb22019-10-23 10:53:10 +0100130 const UniformQuantizationInfo wqinfo = weights->quantization_info().uniform();
Sheri Zhang1efed922021-03-10 22:43:38 +0000131 const UniformQuantizationInfo oqinfo = dst->quantization_info().uniform();
Michele Di Giorgio14cbfb22019-10-23 10:53:10 +0100132
133 float multiplier = iqinfo.scale * wqinfo.scale / oqinfo.scale;
134 int output_multiplier = 0;
135 int output_shift = 0;
136 ARM_COMPUTE_RETURN_ON_ERROR(quantization::calculate_quantized_multiplier(multiplier, &output_multiplier, &output_shift));
137 }
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000138 return Status{};
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000139}
Giorgio Arena59486342017-12-01 10:42:47 +0000140} // namespace
141
Giorgio Arena4a95bba2021-06-28 11:00:27 +0100142ClDirectConv2dKernel::ClDirectConv2dKernel()
143{
144 _type = CLKernelType::DIRECT;
145}
146
Manuel Bottinib4bb6a02021-05-24 16:01:32 +0100147void ClDirectConv2dKernel::configure(const CLCompileContext &compile_context, ITensorInfo *src, ITensorInfo *weights, ITensorInfo *biases, ITensorInfo *dst,
Gian Marco Iodice2cc50b32022-05-30 14:41:49 +0100148 const PadStrideInfo &conv_info, const ActivationLayerInfo &act_info, const DirectConvComputeKernelInfo &desc)
Giorgio Arena59486342017-12-01 10:42:47 +0000149{
Sheri Zhang1efed922021-03-10 22:43:38 +0000150 ARM_COMPUTE_ERROR_ON_NULLPTR(src, weights, dst);
Giorgio Arena59486342017-12-01 10:42:47 +0000151
Gian Marco Iodiceff1fe3e2021-01-02 09:58:51 +0000152 // Perform validation
Gian Marco Iodice2cc50b32022-05-30 14:41:49 +0100153 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(src, weights, biases, dst, conv_info, act_info, desc));
Giorgio Arena59486342017-12-01 10:42:47 +0000154
Sheri Zhang1efed922021-03-10 22:43:38 +0000155 const int conv_stride_x = std::get<0>(conv_info.stride());
156 const int conv_stride_y = std::get<1>(conv_info.stride());
157
158 _data_layout = src->data_layout();
159 _conv_info = conv_info;
Pablo Tello3d319462018-06-21 15:13:17 +0100160
Gian Marco Iodiceff1fe3e2021-01-02 09:58:51 +0000161 const unsigned int width_idx = get_data_layout_dimension_index(_data_layout, DataLayoutDimension::WIDTH);
162 const unsigned int height_idx = get_data_layout_dimension_index(_data_layout, DataLayoutDimension::HEIGHT);
163 const unsigned int channel_idx = get_data_layout_dimension_index(_data_layout, DataLayoutDimension::CHANNEL);
Sheri Zhang1efed922021-03-10 22:43:38 +0000164 const unsigned int kernel_size = weights->dimension(width_idx);
165 const DataType data_type = src->data_type();
Giorgio Arena59486342017-12-01 10:42:47 +0000166
Adnan AlSinan30124352021-12-02 19:12:20 +0000167 const GPUTarget gpu_target = get_target();
168 unsigned int _num_elems_processed_per_iteration = 0;
169
170 // Get dst shape
171 TensorShape output_shape = misc::shape_calculator::compute_deep_convolution_shape(*src, *weights, conv_info);
172
173 // Output auto inizialitation if not yet initialized
174 auto_init_if_empty(*dst, output_shape,
175 1,
176 src->data_type(),
177 src->quantization_info());
Giorgio Arena59486342017-12-01 10:42:47 +0000178
Gian Marco Iodiceff1fe3e2021-01-02 09:58:51 +0000179 // Configure kernel window
Adnan AlSinan30124352021-12-02 19:12:20 +0000180 Window win;
181 if(_data_layout == DataLayout::NHWC)
182 {
Gian Marco Iodice2cc50b32022-05-30 14:41:49 +0100183 output_shape.collapse(2U, 1U);
184 const unsigned int n0 = adjust_vec_size(desc.n0, output_shape[0]);
185 const unsigned int m0 = adjust_vec_size(desc.m0, output_shape[1]);
Adnan AlSinan30124352021-12-02 19:12:20 +0000186
187 // Create window and update padding
Gian Marco Iodice2cc50b32022-05-30 14:41:49 +0100188 win = calculate_max_window(output_shape, Steps(n0, m0));
Adnan AlSinan30124352021-12-02 19:12:20 +0000189 }
190 else if(_data_layout == DataLayout::NCHW)
191 {
192 _num_elems_processed_per_iteration = 1u;
193 win = calculate_max_window(*dst, Steps(_num_elems_processed_per_iteration));
194 }
195
196 ICLKernel::configure_internal(win);
Gian Marco Iodiceff1fe3e2021-01-02 09:58:51 +0000197
Giorgio Arena59486342017-12-01 10:42:47 +0000198 std::stringstream kernel_name;
Gian Marco Iodiceff1fe3e2021-01-02 09:58:51 +0000199 CLBuildOptions build_options;
200
Georgios Pinitas7fdcfb12020-01-09 16:45:46 +0000201 if(_data_layout == DataLayout::NHWC)
Pablo Tello3d319462018-06-21 15:13:17 +0100202 {
Gian Marco Iodiceff1fe3e2021-01-02 09:58:51 +0000203 kernel_name << "direct_convolution_nhwc";
Giorgio Arena59486342017-12-01 10:42:47 +0000204
Gian Marco Iodice2cc50b32022-05-30 14:41:49 +0100205 const unsigned int n0 = win.x().step();
206 const unsigned int m0 = win.y().step();
207 const unsigned int k0 = adjust_vec_size(desc.k0, src->dimension(channel_idx));
208 const unsigned int partial_store_n0 = dst->dimension(channel_idx) % n0;
209 const unsigned int pad_left = conv_info.pad_left();
210 const unsigned int pad_top = conv_info.pad_top();
211
212 _export_to_cl_image = desc.export_weights_to_cl_image;
Gian Marco Iodice5c9eed82021-03-19 11:26:20 +0000213
Gian Marco Iodice0b76f7d2021-04-08 17:20:00 +0100214 // Update the padding for the weights tensor if we can export to cl_image
Gian Marco Iodice2cc50b32022-05-30 14:41:49 +0100215 if(_export_to_cl_image)
Gian Marco Iodice0b76f7d2021-04-08 17:20:00 +0100216 {
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100217 gemm::update_padding_for_cl_image(weights);
Gian Marco Iodice0b76f7d2021-04-08 17:20:00 +0100218 }
Pablo Tello3d319462018-06-21 15:13:17 +0100219
Sheri Zhang1efed922021-03-10 22:43:38 +0000220 if(biases != nullptr)
Teresa Charlin8d8a1c52021-02-03 17:01:23 +0000221 {
222 build_options.add_option(std::string("-DHAS_BIAS"));
Sheri Zhang1efed922021-03-10 22:43:38 +0000223 build_options.add_option(std::string("-DBIA_DATA_TYPE=" + get_cl_type_from_data_type(biases->data_type())));
Teresa Charlin8d8a1c52021-02-03 17:01:23 +0000224 }
Gian Marco Iodice5c9eed82021-03-19 11:26:20 +0000225
Gunes Bayirfdb53422022-05-25 10:09:39 +0100226 // Conditions of -cl-fast-relaxed-math causing accuracy issues can be traced from COMPMID-5324
227 const auto act_function = act_info.activation();
228 const auto dst_data_type = dst->data_type();
229
230 if((gpu_target != GPUTarget::G71 && (gpu_target & GPUTarget::GPU_ARCH_MASK) == GPUTarget::BIFROST)
231 && (act_function == ActivationLayerInfo::ActivationFunction::BOUNDED_RELU || act_function == ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU)
232 && (dst_data_type == DataType::F32 || dst_data_type == DataType::F16))
233 {
234 // -cl-fast-relaxed-math also sets -cl-finite-math-only and -cl-unsafe-math-optimizations
235 // to disable -cl-finite-math-only, we only include -cl-unsafe-math-optimizations
236 build_options.add_option("-cl-unsafe-math-optimizations");
237 }
238 else
239 {
240 build_options.add_option("-cl-fast-relaxed-math");
241 }
242
Gian Marco Iodice5c9eed82021-03-19 11:26:20 +0000243 build_options.add_option("-DSRC_TENSOR_TYPE=BUFFER");
Sheri Zhang1efed922021-03-10 22:43:38 +0000244 build_options.add_option("-DSRC_DATA_TYPE=" + get_cl_type_from_data_type(src->data_type()));
Gian Marco Iodice5c9eed82021-03-19 11:26:20 +0000245 build_options.add_option("-DDST_TENSOR_TYPE=BUFFER");
Gunes Bayirfdb53422022-05-25 10:09:39 +0100246 build_options.add_option("-DDST_DATA_TYPE=" + get_cl_type_from_data_type(dst_data_type));
Gian Marco Iodice2cc50b32022-05-30 14:41:49 +0100247 build_options.add_option_if_else(_export_to_cl_image, "-DWEI_TENSOR_TYPE=IMAGE", "-DWEI_TENSOR_TYPE=BUFFER");
Sheri Zhang1efed922021-03-10 22:43:38 +0000248 build_options.add_option("-DWEI_WIDTH=" + support::cpp11::to_string(weights->dimension(width_idx)));
249 build_options.add_option("-DWEI_HEIGHT=" + support::cpp11::to_string(weights->dimension(height_idx)));
250 build_options.add_option("-DWEI_DATA_TYPE=" + get_cl_type_from_data_type(weights->data_type()));
251 build_options.add_option("-DSTRIDE_X=" + support::cpp11::to_string(conv_stride_x));
252 build_options.add_option("-DSTRIDE_Y=" + support::cpp11::to_string(conv_stride_y));
Gian Marco Iodiceff1fe3e2021-01-02 09:58:51 +0000253 build_options.add_option("-DPAD_LEFT=" + support::cpp11::to_string(pad_left));
254 build_options.add_option("-DPAD_TOP=" + support::cpp11::to_string(pad_top));
255 build_options.add_option("-DN0=" + support::cpp11::to_string(n0));
256 build_options.add_option("-DM0=" + support::cpp11::to_string(m0));
257 build_options.add_option("-DK0=" + support::cpp11::to_string(k0));
Gian Marco Iodice5c9eed82021-03-19 11:26:20 +0000258 build_options.add_option("-DPARTIAL_N0=" + support::cpp11::to_string(partial_store_n0));
Giorgio Arena8d071272021-12-07 13:49:10 +0000259 build_options.add_option_if((src->dimension(channel_idx) % k0) != 0, "-DLEFTOVER_LOOP");
Gunes Bayirfdb53422022-05-25 10:09:39 +0100260 build_options.add_option("-DACTIVATION_TYPE=" + lower_string(string_from_activation_func(act_function)));
Michele Di Giorgio14cbfb22019-10-23 10:53:10 +0100261
262 if(is_data_type_quantized(data_type))
263 {
Sheri Zhang1efed922021-03-10 22:43:38 +0000264 const UniformQuantizationInfo iqinfo = src->quantization_info().uniform();
265 const UniformQuantizationInfo wqinfo = weights->quantization_info().uniform();
266 const UniformQuantizationInfo oqinfo = dst->quantization_info().uniform();
Michele Di Giorgio14cbfb22019-10-23 10:53:10 +0100267
Sheri Zhang1efed922021-03-10 22:43:38 +0000268 PixelValue zero_value = PixelValue(0, src->data_type(), src->quantization_info());
Gian Marco Iodiced95c3e82021-01-19 17:39:02 +0000269 int zero_value_s32;
270 zero_value.get(zero_value_s32);
271
Michele Di Giorgio14cbfb22019-10-23 10:53:10 +0100272 float multiplier = iqinfo.scale * wqinfo.scale / oqinfo.scale;
273 int output_multiplier = 0;
274 int output_shift = 0;
275 quantization::calculate_quantized_multiplier(multiplier, &output_multiplier, &output_shift);
Gian Marco Iodiced95c3e82021-01-19 17:39:02 +0000276 build_options.add_option("-DIS_QUANTIZED");
Gian Marco Iodiceff1fe3e2021-01-02 09:58:51 +0000277 build_options.add_option("-DDST_MULTIPLIER=" + support::cpp11::to_string(output_multiplier));
278 build_options.add_option("-DDST_SHIFT=" + support::cpp11::to_string(output_shift));
279 build_options.add_option("-DSRC_OFFSET=" + support::cpp11::to_string(-iqinfo.offset));
280 build_options.add_option("-DWEI_OFFSET=" + support::cpp11::to_string(-wqinfo.offset));
281 build_options.add_option("-DDST_OFFSET=" + support::cpp11::to_string(oqinfo.offset));
Gian Marco Iodiced95c3e82021-01-19 17:39:02 +0000282 build_options.add_option("-DZERO_VALUE=" + support::cpp11::to_string(zero_value_s32));
Gian Marco Iodiceff1fe3e2021-01-02 09:58:51 +0000283 build_options.add_option("-DACC_DATA_TYPE=" + get_cl_type_from_data_type(DataType::S32));
Michele Di Giorgio14cbfb22019-10-23 10:53:10 +0100284 }
285 else
286 {
Gian Marco Iodiceff1fe3e2021-01-02 09:58:51 +0000287 build_options.add_option("-DACC_DATA_TYPE=" + get_cl_type_from_data_type(data_type));
Gian Marco Iodice5c9eed82021-03-19 11:26:20 +0000288 build_options.add_option("-DZERO_VALUE=" + support::cpp11::to_string(0));
Gian Marco Iodiceff1fe3e2021-01-02 09:58:51 +0000289 build_options.add_option("-DSRC_OFFSET=" + support::cpp11::to_string(0));
290 build_options.add_option("-DWEI_OFFSET=" + support::cpp11::to_string(0));
291 build_options.add_option("-DDST_OFFSET=" + support::cpp11::to_string(0));
Georgios Pinitas9fc3be62021-05-29 04:01:51 +0100292 build_options.add_option_if(act_info.enabled(), "-DA_VAL=" + float_to_string_with_full_precision(act_info.a()));
293 build_options.add_option_if(act_info.enabled(), "-DB_VAL=" + float_to_string_with_full_precision(act_info.b()));
Gian Marco Iodiceff1fe3e2021-01-02 09:58:51 +0000294 }
295 }
296 else
297 {
Gian Marco Iodice2cc50b32022-05-30 14:41:49 +0100298 _export_to_cl_image = false;
299
Adnan AlSinan30124352021-12-02 19:12:20 +0000300 kernel_name << "direct_convolution_nchw";
Sheri Zhang1efed922021-03-10 22:43:38 +0000301 build_options.add_option_if(biases != nullptr, std::string("-DHAS_BIAS"));
Adnan AlSinan30124352021-12-02 19:12:20 +0000302 build_options.add_option("-DSRC_WIDTH=" + support::cpp11::to_string(src->dimension(width_idx)));
303 build_options.add_option("-DSRC_HEIGHT=" + support::cpp11::to_string(src->dimension(height_idx)));
304 build_options.add_option("-DSRC_CHANNELS=" + support::cpp11::to_string(src->dimension(channel_idx)));
305 build_options.add_option("-DPAD_LEFT=" + support::cpp11::to_string(conv_info.pad_left()));
306 build_options.add_option("-DPAD_TOP=" + support::cpp11::to_string(conv_info.pad_top()));
307 build_options.add_option("-DSTRIDE_X=" + support::cpp11::to_string(conv_stride_x));
308 build_options.add_option("-DSTRIDE_Y=" + support::cpp11::to_string(conv_stride_y));
309 build_options.add_option("-DWEI_WIDTH=" + support::cpp11::to_string(weights->dimension(width_idx)));
310 build_options.add_option("-DWEI_HEIGHT=" + support::cpp11::to_string(weights->dimension(height_idx)));
311 build_options.add_option(std::string("-DDATA_TYPE=" + get_cl_type_from_data_type(data_type)));
312 build_options.add_option(std::string("-DDATA_SIZE=" + get_data_size_from_data_type(data_type)));
313 build_options.add_option(std::string("-DWEIGHTS_DEPTH=" + support::cpp11::to_string(weights->dimension(channel_idx))));
314 build_options.add_option(std::string("-DSTRIDE_X=" + support::cpp11::to_string(conv_stride_x)));
315 build_options.add_option(std::string("-DDATA_TYPE_PROMOTED=" + get_cl_type_from_data_type(data_type)));
316 build_options.add_option(std::string("-DVEC_SIZE=" + support::cpp11::to_string(_num_elems_processed_per_iteration)));
317 build_options.add_option(std::string("-DVEC_SIZE_LEFTOVER=" + support::cpp11::to_string(src->dimension(0) % _num_elems_processed_per_iteration)));
Gian Marco Iodiceff1fe3e2021-01-02 09:58:51 +0000318
Adnan AlSinan30124352021-12-02 19:12:20 +0000319 if(is_data_type_quantized(data_type))
Gian Marco Iodiceff1fe3e2021-01-02 09:58:51 +0000320 {
Adnan AlSinan30124352021-12-02 19:12:20 +0000321 const UniformQuantizationInfo iqinfo = src->quantization_info().uniform();
322 const UniformQuantizationInfo wqinfo = weights->quantization_info().uniform();
323 const UniformQuantizationInfo oqinfo = dst->quantization_info().uniform();
Gian Marco Iodiceff1fe3e2021-01-02 09:58:51 +0000324
Adnan AlSinan30124352021-12-02 19:12:20 +0000325 float multiplier = iqinfo.scale * wqinfo.scale / oqinfo.scale;
326 int output_multiplier = 0;
327 int output_shift = 0;
328 quantization::calculate_quantized_multiplier(multiplier, &output_multiplier, &output_shift);
329 build_options.add_option("-DIS_QUANTIZED");
330 build_options.add_option("-DOUTPUT_MULTIPLIER=" + support::cpp11::to_string(output_multiplier));
331 build_options.add_option("-DOUTPUT_SHIFT=" + support::cpp11::to_string(output_shift));
332 build_options.add_option("-DKERNEL_SIZE=" + support::cpp11::to_string(kernel_size));
333 build_options.add_option("-DINPUT_OFFSET=" + support::cpp11::to_string(-iqinfo.offset));
334 build_options.add_option("-DWEIGHTS_OFFSET=" + support::cpp11::to_string(-wqinfo.offset));
335 build_options.add_option("-DOUTPUT_OFFSET=" + support::cpp11::to_string(oqinfo.offset));
Michele Di Giorgio14cbfb22019-10-23 10:53:10 +0100336 }
Giorgio Arena59486342017-12-01 10:42:47 +0000337 }
338
Gian Marco Iodiceff1fe3e2021-01-02 09:58:51 +0000339 _kernel = create_kernel(compile_context, kernel_name.str(), build_options.options());
Giorgio Arena59486342017-12-01 10:42:47 +0000340
Giorgio Arena59486342017-12-01 10:42:47 +0000341 // Set config_id for enabling LWS tuning
Gian Marco Iodiceff1fe3e2021-01-02 09:58:51 +0000342 _config_id = kernel_name.str();
343 _config_id += "_";
Giorgio Arena59486342017-12-01 10:42:47 +0000344 _config_id += lower_string(string_from_data_type(data_type));
345 _config_id += "_";
346 _config_id += support::cpp11::to_string(kernel_size);
347 _config_id += "_";
Georgios Pinitas15997872018-02-19 13:58:22 +0000348 _config_id += support::cpp11::to_string(border_size().left);
Giorgio Arena59486342017-12-01 10:42:47 +0000349 _config_id += "_";
Georgios Pinitas15997872018-02-19 13:58:22 +0000350 _config_id += support::cpp11::to_string(border_size().top);
Giorgio Arena59486342017-12-01 10:42:47 +0000351 _config_id += "_";
Georgios Pinitas15997872018-02-19 13:58:22 +0000352 _config_id += support::cpp11::to_string(border_size().right);
Giorgio Arena59486342017-12-01 10:42:47 +0000353 _config_id += "_";
Georgios Pinitas15997872018-02-19 13:58:22 +0000354 _config_id += support::cpp11::to_string(border_size().bottom);
Giorgio Arena59486342017-12-01 10:42:47 +0000355 _config_id += "_";
Sheri Zhang1efed922021-03-10 22:43:38 +0000356 _config_id += support::cpp11::to_string(conv_stride_x);
Giorgio Arena59486342017-12-01 10:42:47 +0000357 _config_id += "_";
Sheri Zhang1efed922021-03-10 22:43:38 +0000358 _config_id += support::cpp11::to_string(conv_stride_y);
Giorgio Arena59486342017-12-01 10:42:47 +0000359 _config_id += "_";
Sheri Zhang1efed922021-03-10 22:43:38 +0000360 _config_id += support::cpp11::to_string(dst->dimension(width_idx));
Giorgio Arena59486342017-12-01 10:42:47 +0000361 _config_id += "_";
Sheri Zhang1efed922021-03-10 22:43:38 +0000362 _config_id += support::cpp11::to_string(dst->dimension(height_idx));
Pablo Tello3d319462018-06-21 15:13:17 +0100363 _config_id += "_";
Georgios Pinitas7fdcfb12020-01-09 16:45:46 +0000364 _config_id += lower_string(string_from_data_layout(_data_layout));
Giorgio Arena59486342017-12-01 10:42:47 +0000365}
366
Georgios Pinitas9fc3be62021-05-29 04:01:51 +0100367Status ClDirectConv2dKernel::validate(const ITensorInfo *src, const ITensorInfo *weights, const ITensorInfo *biases, const ITensorInfo *dst,
Gian Marco Iodice2cc50b32022-05-30 14:41:49 +0100368 const PadStrideInfo &conv_info, const ActivationLayerInfo &act_info, const DirectConvComputeKernelInfo &desc)
Giorgio Arena59486342017-12-01 10:42:47 +0000369{
Gian Marco Iodice2cc50b32022-05-30 14:41:49 +0100370 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(src, weights, biases, dst, conv_info, act_info, desc));
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000371 return Status{};
Giorgio Arena59486342017-12-01 10:42:47 +0000372}
373
Manuel Bottinib4bb6a02021-05-24 16:01:32 +0100374void ClDirectConv2dKernel::run_op(ITensorPack &tensors, const Window &window, cl::CommandQueue &queue)
steniu0127b386c2017-07-18 17:37:43 +0100375{
376 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
377 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IKernel::window(), window);
378
379 // Get initial windows
Gian Marco Iodiceff1fe3e2021-01-02 09:58:51 +0000380 Window slice = window.first_slice_window_3D();
steniu0127b386c2017-07-18 17:37:43 +0100381
Sheri Zhang1efed922021-03-10 22:43:38 +0000382 const auto src = utils::cast::polymorphic_downcast<const ICLTensor *>(tensors.get_const_tensor(TensorType::ACL_SRC_0));
383 const auto weights = utils::cast::polymorphic_downcast<const ICLTensor *>(tensors.get_const_tensor(TensorType::ACL_SRC_1));
384 const auto biases = utils::cast::polymorphic_downcast<const ICLTensor *>(tensors.get_const_tensor(TensorType::ACL_SRC_2));
385 auto dst = utils::cast::polymorphic_downcast<ICLTensor *>(tensors.get_tensor(TensorType::ACL_DST));
386
Gian Marco Iodiceff1fe3e2021-01-02 09:58:51 +0000387 if(_data_layout == DataLayout::NHWC)
steniu0127b386c2017-07-18 17:37:43 +0100388 {
Gian Marco Iodice0b76f7d2021-04-08 17:20:00 +0100389 cl::Image2D weights_cl_image;
390
Gian Marco Iodice2cc50b32022-05-30 14:41:49 +0100391 if(_export_to_cl_image)
Gian Marco Iodice0b76f7d2021-04-08 17:20:00 +0100392 {
393 const size_t image_w = weights->info()->dimension(0) / 4;
394 const size_t image_h = weights->info()->dimension(1) * weights->info()->dimension(2) * weights->info()->dimension(3);
395 const TensorShape shape2d(image_w, image_h);
396 const size_t image_row_pitch = weights->info()->strides_in_bytes()[1];
397
398 // Export cl_buffer to cl_image
399 weights_cl_image = create_image2d_from_buffer(CLKernelLibrary::get().context(), weights->cl_buffer(), shape2d, weights->info()->data_type(), image_row_pitch);
400 }
401
steniu0127b386c2017-07-18 17:37:43 +0100402 unsigned int idx = 0;
Gian Marco Iodice78baa482021-12-01 09:26:14 +0000403 add_4d_tensor_nhwc_argument(idx, src);
404 add_4d_tensor_nhwc_argument(idx, dst);
Gian Marco Iodice2cc50b32022-05-30 14:41:49 +0100405 if(_export_to_cl_image)
Gian Marco Iodice0b76f7d2021-04-08 17:20:00 +0100406 {
407 _kernel.setArg(idx++, weights_cl_image);
408 }
Gian Marco Iodice78baa482021-12-01 09:26:14 +0000409 add_4d_tensor_nhwc_argument(idx, weights);
Sheri Zhang1efed922021-03-10 22:43:38 +0000410 if(biases != nullptr)
Gian Marco Iodiceff1fe3e2021-01-02 09:58:51 +0000411 {
Sheri Zhang1efed922021-03-10 22:43:38 +0000412 add_1D_tensor_argument(idx, biases, slice);
Gian Marco Iodiceff1fe3e2021-01-02 09:58:51 +0000413 }
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100414 enqueue(queue, *this, slice, lws_hint());
steniu0127b386c2017-07-18 17:37:43 +0100415 }
Gian Marco Iodiceff1fe3e2021-01-02 09:58:51 +0000416 else
417 {
Adnan AlSinan30124352021-12-02 19:12:20 +0000418 unsigned int idx1 = 2 * num_arguments_per_3D_tensor();
Sheri Zhang1efed922021-03-10 22:43:38 +0000419 add_3D_tensor_argument(idx1, weights, slice);
Gian Marco Iodiceff1fe3e2021-01-02 09:58:51 +0000420
Sheri Zhang1efed922021-03-10 22:43:38 +0000421 if(biases != nullptr)
Gian Marco Iodiceff1fe3e2021-01-02 09:58:51 +0000422 {
423 Window slice_biases;
Sheri Zhang1efed922021-03-10 22:43:38 +0000424 slice_biases.use_tensor_dimensions(biases->info()->tensor_shape());
425 add_1D_tensor_argument(idx1, biases, slice_biases);
Gian Marco Iodiceff1fe3e2021-01-02 09:58:51 +0000426 }
427
Sheri Zhang1efed922021-03-10 22:43:38 +0000428 _kernel.setArg(idx1++, static_cast<unsigned int>(weights->info()->strides_in_bytes()[3]));
Gian Marco Iodiceff1fe3e2021-01-02 09:58:51 +0000429
430 do
431 {
432 unsigned int idx = 0;
Adnan AlSinan30124352021-12-02 19:12:20 +0000433 add_3D_tensor_argument(idx, src, slice);
Sheri Zhang1efed922021-03-10 22:43:38 +0000434 add_3D_tensor_argument(idx, dst, slice);
Gian Marco Iodiceff1fe3e2021-01-02 09:58:51 +0000435 enqueue(queue, *this, slice, lws_hint());
436 }
Adnan AlSinan30124352021-12-02 19:12:20 +0000437 while(window.slide_window_slice_3D(slice));
Gian Marco Iodiceff1fe3e2021-01-02 09:58:51 +0000438 }
steniu0127b386c2017-07-18 17:37:43 +0100439}
Sheri Zhang1efed922021-03-10 22:43:38 +0000440} // namespace kernels
441} // namespace opencl
Michele Di Giorgio14cbfb22019-10-23 10:53:10 +0100442} // namespace arm_compute