blob: f9229ba294480951f2f6ccfd8dde0955a80abe89 [file] [log] [blame]
Giorgio Arena93a690e2017-08-01 16:09:33 +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 */
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000024#include "arm_compute/core/CL/kernels/CLDepthwiseConvolutionLayer3x3Kernel.h"
Giorgio Arena93a690e2017-08-01 16:09:33 +010025
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/ICLKernel.h"
30#include "arm_compute/core/CL/ICLTensor.h"
31#include "arm_compute/core/Error.h"
32#include "arm_compute/core/Helpers.h"
33#include "arm_compute/core/TensorInfo.h"
34#include "arm_compute/core/Types.h"
35#include "arm_compute/core/Utils.h"
Georgios Pinitas1250a5a2018-01-02 13:27:37 +000036#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Dmitry Savenkod7295b72017-11-20 22:00:08 +070037#include "arm_compute/core/utils/quantization/AsymmHelpers.h"
Giorgio Arena93a690e2017-08-01 16:09:33 +010038
39using namespace arm_compute;
Georgios Pinitas1250a5a2018-01-02 13:27:37 +000040using namespace arm_compute::misc::shape_calculator;
Georgios Pinitas236bfe72017-11-23 15:59:55 +000041
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000042CLDepthwiseConvolutionLayer3x3Kernel::CLDepthwiseConvolutionLayer3x3Kernel()
Jaroslaw Rzepecki16cdf892017-10-27 13:15:03 +010043 : _border_size(0), _input(), _output(), _weights(), _biases(), _conv_stride_x(0), _conv_stride_y(0), _conv_pad_left(0), _conv_pad_top(0)
Giorgio Arena93a690e2017-08-01 16:09:33 +010044{
45}
46
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000047BorderSize CLDepthwiseConvolutionLayer3x3Kernel::border_size() const
Giorgio Arena93a690e2017-08-01 16:09:33 +010048{
49 return _border_size;
50}
51
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000052void CLDepthwiseConvolutionLayer3x3Kernel::configure(const ICLTensor *input, const ICLTensor *weights, const ICLTensor *biases, ICLTensor *output, const PadStrideInfo &conv_info)
Giorgio Arena93a690e2017-08-01 16:09:33 +010053{
Dmitry Savenkod7295b72017-11-20 22:00:08 +070054 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::QASYMM8, DataType::F32);
Georgios Pinitas236bfe72017-11-23 15:59:55 +000055 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(input, weights);
Giorgio Arena93a690e2017-08-01 16:09:33 +010056 ARM_COMPUTE_ERROR_ON(weights->info()->dimension(0) != 3 || weights->info()->dimension(1) != 3);
57
Georgios Pinitas81a26ad2017-10-23 20:29:30 +010058 if(biases != nullptr)
59 {
Dmitry Savenkod7295b72017-11-20 22:00:08 +070060 if(is_data_type_quantized_asymmetric(weights->info()->data_type()))
61 {
62 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(biases, 1, DataType::S32);
63 }
64 else
65 {
66 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(weights, biases);
67 }
Georgios Pinitas81a26ad2017-10-23 20:29:30 +010068 ARM_COMPUTE_ERROR_ON(biases->info()->dimension(0) != weights->info()->dimension(2));
69 ARM_COMPUTE_ERROR_ON(biases->info()->num_dimensions() > 1);
70 }
71
Georgios Pinitas236bfe72017-11-23 15:59:55 +000072 // Get convolved dimensions
Georgios Pinitas1250a5a2018-01-02 13:27:37 +000073 const TensorShape output_shape = compute_depthwise_convolution_shape(*input->info(), *weights->info(), conv_info);
Georgios Pinitasc26ecf82017-09-22 13:44:05 +010074
Georgios Pinitas236bfe72017-11-23 15:59:55 +000075 // Output auto inizialitation if not yet initialized
76 auto_init_if_empty(*output->info(),
77 output_shape,
78 1,
79 input->info()->data_type(),
80 input->info()->fixed_point_position(),
81 input->info()->quantization_info());
82
83 ARM_COMPUTE_ERROR_ON_MISMATCHING_DIMENSIONS(output->info()->tensor_shape(), output_shape);
Georgios Pinitasc26ecf82017-09-22 13:44:05 +010084
Giorgio Arena93a690e2017-08-01 16:09:33 +010085 _input = input;
86 _output = output;
87 _weights = weights;
Georgios Pinitas81a26ad2017-10-23 20:29:30 +010088 _biases = biases;
Giorgio Arena93a690e2017-08-01 16:09:33 +010089 _conv_stride_x = conv_info.stride().first;
90 _conv_stride_y = conv_info.stride().second;
Jaroslaw Rzepecki16cdf892017-10-27 13:15:03 +010091 _conv_pad_left = conv_info.pad_left();
92 _conv_pad_top = conv_info.pad_top();
93 _border_size = BorderSize(_conv_pad_top, conv_info.pad_right(), conv_info.pad_bottom(), _conv_pad_left);
Giorgio Arena93a690e2017-08-01 16:09:33 +010094
95 // Set build options
Georgios Pinitasc26ecf82017-09-22 13:44:05 +010096 ARM_COMPUTE_ERROR_ON(_conv_stride_x < 1 || _conv_stride_x > 3);
Dmitry Savenkod7295b72017-11-20 22:00:08 +070097 CLBuildOptions build_opts;
98 build_opts.add_option("-DCONV_STRIDE_X=" + support::cpp11::to_string(_conv_stride_x));
99 build_opts.add_option_if(_biases != nullptr, "-DHAS_BIAS");
Giorgio Arena93a690e2017-08-01 16:09:33 +0100100
Anthony Barbiera2ea7532017-11-28 10:33:22 +0000101 // Create kernel
Dmitry Savenkod7295b72017-11-20 22:00:08 +0700102 std::string kernel_name = is_data_type_quantized_asymmetric(_input->info()->data_type()) ? "depthwise_convolution_3x3_quantized" : "depthwise_convolution_3x3";
103 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel(kernel_name, build_opts.options()));
Giorgio Arena93a690e2017-08-01 16:09:33 +0100104
Anthony Barbiera2ea7532017-11-28 10:33:22 +0000105 // Set static arguments
106 if(is_data_type_quantized_asymmetric(_input->info()->data_type()))
107 {
108 float multiplier = _input->info()->quantization_info().scale * _weights->info()->quantization_info().scale / _output->info()->quantization_info().scale;
109 int output_multiplier = 0;
110 int output_shift = 0;
111 quantization::calculate_quantized_multiplier_less_than_one(multiplier, &output_multiplier, &output_shift);
112
113 unsigned int idx = 3 * num_arguments_per_3D_tensor() + ((_biases != nullptr) ? num_arguments_per_1D_tensor() : 0);
114
115 _kernel.setArg(idx++, -_input->info()->quantization_info().offset);
116 _kernel.setArg(idx++, -_weights->info()->quantization_info().offset);
117 _kernel.setArg(idx++, _output->info()->quantization_info().offset);
118 _kernel.setArg(idx++, output_multiplier);
119 _kernel.setArg(idx++, output_shift);
120 }
121
122 // Configure the local work size for Bifrost with a value obtained
123 // via exhaustive autotuning for the MobileNets tensor shapes.
124 const GPUTarget gpu_target = get_arch_from_target(get_target());
125 if(gpu_target == GPUTarget::BIFROST)
126 {
Georgios Pinitas57f249b2017-12-06 17:21:12 +0000127 // Assume uniform padding and striding.
128 const size_t pad = _conv_pad_left;
129 const size_t stride = _conv_stride_x;
130 const size_t width = input->info()->dimension(0);
131 if(pad == 1)
Anthony Barbiera2ea7532017-11-28 10:33:22 +0000132 {
Georgios Pinitas57f249b2017-12-06 17:21:12 +0000133 const size_t width_by_stride = width / stride;
134 if(width_by_stride == 28) // 56/2 or 28/1
135 {
136 _lws_hint = cl::NDRange(7, 4, 3);
137 }
138 else if(width_by_stride == 14) // 28/2 or 14/1
139 {
140 _lws_hint = cl::NDRange(7, 7, 4);
141 }
Anthony Barbiera2ea7532017-11-28 10:33:22 +0000142 }
Georgios Pinitas57f249b2017-12-06 17:21:12 +0000143 else if(pad == 0)
Anthony Barbiera2ea7532017-11-28 10:33:22 +0000144 {
Georgios Pinitas57f249b2017-12-06 17:21:12 +0000145 if(width >= 56) // 56 or 112
146 {
147 _lws_hint = cl::NDRange(8, 5, 2);
148 }
149 else if(width >= 14) // 14 or 28
150 {
151 _lws_hint = cl::NDRange(1, 5, 2);
152 }
153 else // 7
154 {
155 _lws_hint = cl::NDRange(1, 1, 2);
156 }
Anthony Barbiera2ea7532017-11-28 10:33:22 +0000157 }
158 }
159
Giorgio Arena93a690e2017-08-01 16:09:33 +0100160 // Configure kernel window
161 const unsigned int num_elems_processed_per_iteration = 2;
162 const unsigned int num_elems_written_per_iteration = 2;
Georgios Pinitasc26ecf82017-09-22 13:44:05 +0100163 const unsigned int num_elems_read_per_iteration = 3 + _conv_stride_x;
Giorgio Arena93a690e2017-08-01 16:09:33 +0100164 const unsigned int num_rows_read_per_iteration = 3;
165
166 Window win = calculate_max_window(*output->info(), Steps(num_elems_processed_per_iteration));
167
Georgios Pinitasc26ecf82017-09-22 13:44:05 +0100168 AccessWindowRectangle input_access(input->info(), -border_size().left, -border_size().top, num_elems_read_per_iteration, num_rows_read_per_iteration, _conv_stride_x, _conv_stride_y);
Giorgio Arena93a690e2017-08-01 16:09:33 +0100169 AccessWindowHorizontal output_access(output->info(), 0, num_elems_written_per_iteration);
170 AccessWindowStatic weights_access(weights->info(), 0, 0, weights->info()->dimension(0), weights->info()->dimension(1));
171
172 update_window_and_padding(win, input_access, weights_access, output_access);
173
174 output_access.set_valid_region(win, ValidRegion(Coordinates(), output->info()->tensor_shape()));
175
176 ICLKernel::configure(win);
177}
178
Giorgio Arena04a8f8c2017-11-23 11:45:24 +0000179void CLDepthwiseConvolutionLayer3x3Kernel::run(const Window &window, cl::CommandQueue &queue)
Giorgio Arena93a690e2017-08-01 16:09:33 +0100180{
181 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
182 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IKernel::window(), window);
183
Georgios Pinitasb6f182d32017-11-29 10:17:56 +0000184 // Create input window and adjust
185 Window win_in = window;
186 win_in.adjust(Window::DimX, -_conv_pad_left, true);
187 win_in.adjust(Window::DimY, -_conv_pad_top, true);
188 win_in.set_dimension_step(Window::DimX, window.x().step() * _conv_stride_x);
189 win_in.set_dimension_step(Window::DimY, window.y().step() * _conv_stride_y);
190
191 Window slice_in = win_in.first_slice_window_3D();
Giorgio Arena93a690e2017-08-01 16:09:33 +0100192 Window slice_out = window.first_slice_window_3D();
193 Window slice_weights = window.first_slice_window_3D();
Giorgio Arena93a690e2017-08-01 16:09:33 +0100194 slice_weights.set_dimension_step(Window::DimX, 0);
195 slice_weights.set_dimension_step(Window::DimY, 0);
196
Georgios Pinitas81a26ad2017-10-23 20:29:30 +0100197 // Set biases
198 if(_biases != nullptr)
199 {
200 unsigned int idx = 3 * num_arguments_per_3D_tensor();
201 Window slice_biases;
202 slice_biases.use_tensor_dimensions(_biases->info()->tensor_shape());
203 add_1D_tensor_argument(idx, _biases, slice_biases);
204 }
205
Giorgio Arena93a690e2017-08-01 16:09:33 +0100206 do
207 {
208 unsigned int idx = 0;
209 add_3D_tensor_argument(idx, _input, slice_in);
210 add_3D_tensor_argument(idx, _output, slice_out);
211 add_3D_tensor_argument(idx, _weights, slice_weights);
212
Anthony Barbiera2ea7532017-11-28 10:33:22 +0000213 enqueue(queue, *this, slice_out, _lws_hint);
Giorgio Arena93a690e2017-08-01 16:09:33 +0100214 }
Georgios Pinitasb6f182d32017-11-29 10:17:56 +0000215 while(window.slide_window_slice_3D(slice_out) && win_in.slide_window_slice_3D(slice_in));
Giorgio Arena9fe41442017-08-23 16:36:24 +0100216}