blob: 53e46390c156b9d4c27cad9dc2f666c58a5a0751 [file] [log] [blame]
steniu0127b386c2017-07-18 17:37:43 +01001/*
2 * Copyright (c) 2017 ARM Limited.
3 *
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/CLDirectConvolutionLayerKernel.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"
29#include "arm_compute/core/CL/ICLTensor.h"
30#include "arm_compute/core/Error.h"
31#include "arm_compute/core/Helpers.h"
32#include "arm_compute/core/IAccessWindow.h"
33#include "arm_compute/core/ITensor.h"
34#include "arm_compute/core/Types.h"
Gian Marco Iodice5cb4d6a2017-08-08 10:53:00 +010035#include "arm_compute/core/Utils.h"
steniu0127b386c2017-07-18 17:37:43 +010036#include "arm_compute/core/Validate.h"
Chunosovd621bca2017-11-03 17:33:15 +070037#include "arm_compute/core/utils/quantization/AsymmHelpers.h"
steniu0127b386c2017-07-18 17:37:43 +010038#include "support/ToolchainSupport.h"
39
40using namespace arm_compute;
41
SiCong Lic51b72f2017-07-28 14:46:20 +010042CLDirectConvolutionLayerKernel::CLDirectConvolutionLayerKernel()
steniu0127b386c2017-07-18 17:37:43 +010043 : _input(nullptr), _biases(nullptr), _weights(nullptr), _output(nullptr), _border_size(0), _conv_pad_x(0), _conv_pad_y(0), _conv_stride_x(0), _conv_stride_y(0)
44{
45}
46
SiCong Lic51b72f2017-07-28 14:46:20 +010047BorderSize CLDirectConvolutionLayerKernel::border_size() const
steniu0127b386c2017-07-18 17:37:43 +010048{
49 return _border_size;
50}
51
SiCong Lic51b72f2017-07-28 14:46:20 +010052void CLDirectConvolutionLayerKernel::configure(const ICLTensor *input, const ICLTensor *weights, const ICLTensor *biases, ICLTensor *output, const PadStrideInfo &conv_info)
steniu0127b386c2017-07-18 17:37:43 +010053{
Chunosovd621bca2017-11-03 17:33:15 +070054 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::QASYMM8, DataType::QS8, DataType::QS16, DataType::F16, DataType::F32);
Gian Marco Iodice5cb4d6a2017-08-08 10:53:00 +010055 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(input, weights);
56 ARM_COMPUTE_ERROR_ON_MSG(weights->info()->dimension(0) != weights->info()->dimension(1),
steniu01db006682017-08-09 16:26:22 +010057 "Weights should have same width as length");
58 ARM_COMPUTE_ERROR_ON_MSG(weights->info()->dimension(0) != 1 && weights->info()->dimension(0) != 3 && weights->info()->dimension(0) != 5,
59 "Kernel sizes other than 1x1, 3x3 or 5x5 are not supported");
steniu0127b386c2017-07-18 17:37:43 +010060 ARM_COMPUTE_ERROR_ON(weights->info()->dimension(2) != input->info()->dimension(2));
61 ARM_COMPUTE_ERROR_ON(weights->info()->dimension(0) != weights->info()->dimension(1));
62 ARM_COMPUTE_ERROR_ON(weights->info()->num_dimensions() > 4);
Gian Marco Iodice5cb4d6a2017-08-08 10:53:00 +010063 ARM_COMPUTE_ERROR_ON_MSG((weights->info()->dimension(0) == 1) && std::get<0>(conv_info.stride()) > 3, "Strides larger than 3 not supported for 1x1 convolution.");
steniu01db006682017-08-09 16:26:22 +010064 ARM_COMPUTE_ERROR_ON_MSG((weights->info()->dimension(0) == 3 || weights->info()->dimension(0) == 5) && std::get<0>(conv_info.stride()) > 2, "Strides larger than 2 not supported for 3x3 convolution.");
steniu0127b386c2017-07-18 17:37:43 +010065
steniu0127b386c2017-07-18 17:37:43 +010066 if(biases != nullptr)
67 {
68 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(weights, biases);
69 ARM_COMPUTE_ERROR_ON(biases->info()->dimension(0) != weights->info()->dimension(3));
70 ARM_COMPUTE_ERROR_ON(biases->info()->num_dimensions() > 1);
71 }
72
Gian Marco Iodice5cb4d6a2017-08-08 10:53:00 +010073 const unsigned int kernel_size = weights->info()->dimension(0);
Chunosovd621bca2017-11-03 17:33:15 +070074 const DataType data_type = input->info()->data_type();
Gian Marco Iodice5cb4d6a2017-08-08 10:53:00 +010075
76 // Get convolved dimensions
77 unsigned int output_width = 0;
78 unsigned int output_height = 0;
79 std::tie(output_width, output_height) = scaled_dimensions(input->info()->dimension(0), input->info()->dimension(1), kernel_size, kernel_size, conv_info);
80
81 TensorShape output_shape = input->info()->tensor_shape();
82 output_shape.set(0, output_width);
83 output_shape.set(1, output_height);
84 output_shape.set(2, weights->info()->dimension(3));
85
86 // Output auto inizialitation if not yet initialized
87 auto_init_if_empty(*output->info(), output_shape, 1, input->info()->data_type(), input->info()->fixed_point_position());
88
89 ARM_COMPUTE_ERROR_ON_MISMATCHING_DIMENSIONS(output->info()->tensor_shape(), output_shape);
90 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
91 ARM_COMPUTE_ERROR_ON_MISMATCHING_FIXED_POINT(input, output);
92
steniu0127b386c2017-07-18 17:37:43 +010093 _conv_stride_x = std::get<0>(conv_info.stride());
94 _conv_stride_y = std::get<1>(conv_info.stride());
Gian Marco Iodice5cb4d6a2017-08-08 10:53:00 +010095 _conv_pad_x = std::min(std::get<0>(conv_info.pad()), kernel_size / 2);
96 _conv_pad_y = std::min(std::get<1>(conv_info.pad()), kernel_size / 2);
steniu0127b386c2017-07-18 17:37:43 +010097
98 _input = input;
99 _weights = weights;
100 _output = output;
101 _biases = biases;
102 _border_size = BorderSize(_conv_pad_y, _conv_pad_x);
103
Gian Marco Iodice1246b632017-08-16 18:38:32 +0100104 const GPUTarget gpu_target = get_arch_from_target(get_target());
Michalis Spyroudef665a2017-08-14 11:26:37 +0100105
Chunosovd621bca2017-11-03 17:33:15 +0700106 std::stringstream kernel_name;
107 kernel_name << "direct_convolution" << kernel_size << "x" << kernel_size;
steniu0127b386c2017-07-18 17:37:43 +0100108
Chunosovd621bca2017-11-03 17:33:15 +0700109 CLBuildOptions build_options;
110 build_options.add_option_if(_biases != nullptr, std::string("-DHAS_BIAS"));
steniu0127b386c2017-07-18 17:37:43 +0100111
Chunosovd621bca2017-11-03 17:33:15 +0700112 if((gpu_target == GPUTarget::BIFROST) && (kernel_size <= 5) && (_conv_stride_x == 1) && (_conv_stride_y == 1) && (data_type == DataType::F32))
113 {
114 build_options.add_option(std::string("-DWEIGHTS_DEPTH=" + support::cpp11::to_string(_weights->info()->dimension(2))));
115
116 kernel_name << "_f32_bifrost";
117 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel(kernel_name.str(), build_options.options()));
steniu0127b386c2017-07-18 17:37:43 +0100118
Gian Marco Iodice1246b632017-08-16 18:38:32 +0100119 // Configure kernel window
120 Window win = calculate_max_window(*output->info());
Gian Marco Iodice5cb4d6a2017-08-08 10:53:00 +0100121
Gian Marco Iodice1246b632017-08-16 18:38:32 +0100122 unsigned int num_elems_read_per_iteration_x = 0;
123 unsigned int num_elems_read_per_iteration_y = 0;
124 unsigned int num_elems_written_per_iteration_x = 0;
125 unsigned int num_elems_written_per_iteration_y = 0;
steniu0127b386c2017-07-18 17:37:43 +0100126
Gian Marco Iodice1246b632017-08-16 18:38:32 +0100127 switch(kernel_size)
128 {
Gian Marco Iodice1c8409d2017-09-06 17:24:25 +0100129 case 1:
130 {
131 num_elems_read_per_iteration_x = 4;
132 num_elems_read_per_iteration_y = 4;
133 num_elems_written_per_iteration_x = 4;
134 num_elems_written_per_iteration_y = 4;
135 break;
136 }
Gian Marco Iodice1246b632017-08-16 18:38:32 +0100137 case 3:
138 {
139 num_elems_read_per_iteration_x = 6;
140 num_elems_read_per_iteration_y = 5;
141 num_elems_written_per_iteration_x = 4;
142 num_elems_written_per_iteration_y = 3;
143 break;
144 }
145 case 5:
146 {
147 num_elems_read_per_iteration_x = 8;
148 num_elems_read_per_iteration_y = 6;
149 num_elems_written_per_iteration_x = 4;
150 num_elems_written_per_iteration_y = 2;
151 break;
152 }
153 default:
154 {
155 ARM_COMPUTE_ERROR("Kernel size not optimized for Bifrost");
156 }
157 }
steniu0127b386c2017-07-18 17:37:43 +0100158
Gian Marco Iodice1246b632017-08-16 18:38:32 +0100159 // Calculate right and bottom border
160 const int input_width = input->info()->dimension(0) - kernel_size / 2 + _conv_pad_x;
161 const int input_height = input->info()->dimension(1) - kernel_size / 2 + _conv_pad_y;
steniu0127b386c2017-07-18 17:37:43 +0100162
Gian Marco Iodice1246b632017-08-16 18:38:32 +0100163 // Create window and update padding
164 win = calculate_max_window(*output->info(), Steps(num_elems_written_per_iteration_x, num_elems_written_per_iteration_y));
Gian Marco Iodice5cb4d6a2017-08-08 10:53:00 +0100165
Gian Marco Iodice1246b632017-08-16 18:38:32 +0100166 AccessWindowStatic input_access(input->info(), -_conv_pad_x, -_conv_pad_y, input_width + num_elems_read_per_iteration_x, input_height + num_elems_read_per_iteration_y);
167 AccessWindowStatic weights_access(weights->info(), 0, 0, kernel_size, kernel_size);
168 AccessWindowRectangle output_access(output->info(), 0, 0, num_elems_written_per_iteration_x, num_elems_written_per_iteration_y);
steniu0127b386c2017-07-18 17:37:43 +0100169
Gian Marco Iodice1246b632017-08-16 18:38:32 +0100170 update_window_and_padding(win, input_access, weights_access, output_access);
steniu0127b386c2017-07-18 17:37:43 +0100171
Gian Marco Iodice1246b632017-08-16 18:38:32 +0100172 output_access.set_valid_region(win, ValidRegion(Coordinates(), output->info()->tensor_shape()));
173
174 ICLKernel::configure(win);
175 }
176 else
177 {
Chunosovd621bca2017-11-03 17:33:15 +0700178 bool is_quantized_fixed_point = is_data_type_fixed_point(data_type);
179 bool is_quantized_asymm = is_data_type_quantized_assymetric(data_type);
180 DataType promoted_type = (is_quantized_fixed_point) ? get_promoted_data_type(data_type) : data_type;
Gian Marco Iodice1246b632017-08-16 18:38:32 +0100181
Chunosovd621bca2017-11-03 17:33:15 +0700182 build_options.add_option_if(is_quantized_asymm, std::string("-DKERNEL_SIZE=" + support::cpp11::to_string(kernel_size)));
183 build_options.add_option(std::string("-DDATA_TYPE=" + get_cl_type_from_data_type(data_type)));
184 build_options.add_option(std::string("-DDATA_SIZE=" + get_data_size_from_data_type(data_type)));
185 build_options.add_option(std::string("-DWEIGHTS_DEPTH=" + support::cpp11::to_string(_weights->info()->dimension(2))));
186 build_options.add_option(std::string("-DSTRIDE_X=" + support::cpp11::to_string(_conv_stride_x)));
187 build_options.add_option_if(is_quantized_fixed_point,
188 std::string("-DFIXED_POINT_POSITION=" + support::cpp11::to_string(input->info()->fixed_point_position())));
189 build_options.add_option(std::string("-DDATA_TYPE_PROMOTED=" + get_cl_type_from_data_type(promoted_type)));
Gian Marco Iodice1246b632017-08-16 18:38:32 +0100190
Chunosovd621bca2017-11-03 17:33:15 +0700191 // Create kernel
192 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel(is_quantized_asymm ? "direct_convolution_1x1_3x3_5x5_quantized" : kernel_name.str(),
193 build_options.options()));
Gian Marco Iodice1246b632017-08-16 18:38:32 +0100194
195 // Configure kernel window
196
197 bool is_stride2 = ((kernel_size != 1) && (_conv_stride_x == 2));
198
199 const unsigned int num_elems_read_per_iteration_x = 8 + 2 * (kernel_size / 2) + (is_stride2 ? 6 + kernel_size / 2 : 0);
200 const unsigned int num_elems_read_per_iteration_y = kernel_size;
201 const unsigned int num_elems_written_per_iteration_x = 8;
202 const unsigned int num_elems_written_per_iteration_y = 1;
203
204 // Calculate right and bottom border
205 const int input_width = input->info()->dimension(0) - kernel_size / 2 + _conv_pad_x;
206 const int input_height = input->info()->dimension(1) - kernel_size / 2 + _conv_pad_y;
207
208 // Create window and update padding
209 Window win = calculate_max_window(*output->info(), Steps(num_elems_written_per_iteration_x, num_elems_written_per_iteration_y));
210
211 AccessWindowStatic input_access(input->info(), -_conv_pad_x, -_conv_pad_y, input_width + num_elems_read_per_iteration_x, input_height + num_elems_read_per_iteration_y);
212 AccessWindowStatic weights_access(weights->info(), 0, 0, kernel_size, kernel_size);
213 AccessWindowRectangle output_access(output->info(), 0, 0, num_elems_written_per_iteration_x, num_elems_written_per_iteration_y);
214
215 update_window_and_padding(win, input_access, weights_access, output_access);
216
217 output_access.set_valid_region(win, ValidRegion(Coordinates(), output->info()->tensor_shape()));
218
219 ICLKernel::configure(win);
220 }
Gian Marcode691f02017-09-08 16:13:11 +0100221
Chunosovd621bca2017-11-03 17:33:15 +0700222 // Set static kernel arguments
223 if(is_data_type_quantized_assymetric(data_type))
224 {
225 int output_multiplier = 0;
226 int output_shift = 0;
227
228 float multiplier = _input->info()->quantization_info().scale * _weights->info()->quantization_info().scale / _output->info()->quantization_info().scale;
229 ARM_COMPUTE_THROW_ON_ERROR(quantization::calculate_quantized_multiplier_less_than_one(multiplier, &output_multiplier, &output_shift));
230
231 unsigned int idx = 3 * num_arguments_per_3D_tensor() + ((_biases != nullptr) ? num_arguments_per_1D_tensor() : 0) + 1;
232 _kernel.setArg(idx++, -_input->info()->quantization_info().offset);
233 _kernel.setArg(idx++, -_weights->info()->quantization_info().offset);
234 _kernel.setArg(idx++, _output->info()->quantization_info().offset);
235 _kernel.setArg(idx++, output_multiplier);
236 _kernel.setArg(idx++, output_shift);
237 }
238
Gian Marcode691f02017-09-08 16:13:11 +0100239 // Set config_id for enabling LWS tuning
240 _config_id = "direct_convolution_";
Chunosovd621bca2017-11-03 17:33:15 +0700241 _config_id += lower_string(string_from_data_type(data_type));
Gian Marcode691f02017-09-08 16:13:11 +0100242 _config_id += "_";
243 _config_id += support::cpp11::to_string(kernel_size);
244 _config_id += "_";
245 _config_id += support::cpp11::to_string(_conv_pad_x);
246 _config_id += "_";
247 _config_id += support::cpp11::to_string(_conv_pad_y);
248 _config_id += "_";
249 _config_id += support::cpp11::to_string(_conv_stride_x);
250 _config_id += "_";
251 _config_id += support::cpp11::to_string(_conv_stride_y);
252 _config_id += "_";
253 _config_id += support::cpp11::to_string(output->info()->dimension(0));
254 _config_id += "_";
255 _config_id += support::cpp11::to_string(output->info()->dimension(1));
steniu0127b386c2017-07-18 17:37:43 +0100256}
257
SiCong Lic51b72f2017-07-28 14:46:20 +0100258void CLDirectConvolutionLayerKernel::run(const Window &window, cl::CommandQueue &queue)
steniu0127b386c2017-07-18 17:37:43 +0100259{
260 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
261 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IKernel::window(), window);
262
263 // Get initial windows
264 Window slice = window.first_slice_window_3D();
265 Window win_in = window;
266
267 win_in.adjust(Window::DimX, -_conv_pad_x, true);
268 win_in.adjust(Window::DimY, -_conv_pad_y, true);
269 win_in.set_dimension_step(Window::DimX, window.x().step() * _conv_stride_x);
270 win_in.set_dimension_step(Window::DimY, window.y().step() * _conv_stride_y);
271
272 Window slice_in = win_in.first_slice_window_3D();
273
274 unsigned int idx1 = 2 * num_arguments_per_3D_tensor();
275 add_3D_tensor_argument(idx1, _weights, slice);
276
277 if(_biases != nullptr)
278 {
279 Window slice_biases;
SiCong Li86b53332017-08-23 11:02:43 +0100280 slice_biases.use_tensor_dimensions(_biases->info()->tensor_shape());
steniu0127b386c2017-07-18 17:37:43 +0100281 add_1D_tensor_argument(idx1, _biases, slice_biases);
282 }
283
Gian Marco Iodice5cb4d6a2017-08-08 10:53:00 +0100284 _kernel.setArg(idx1++, static_cast<unsigned int>(_weights->info()->strides_in_bytes()[3]));
285
steniu0127b386c2017-07-18 17:37:43 +0100286 do
287 {
288 unsigned int idx = 0;
289 add_3D_tensor_argument(idx, _input, slice_in);
290 add_3D_tensor_argument(idx, _output, slice);
291
292 enqueue(queue, *this, slice, _lws_hint);
293 }
294 while(window.slide_window_slice_3D(slice) && win_in.slide_window_slice_3D(slice_in));
295}