blob: 676a121a7649c2194d32fb805caf9fc3ecb476e4 [file] [log] [blame]
Anthony Barbier8140e1e2017-12-14 23:48:46 +00001/*
Anthony Barbier06ea0482018-02-22 15:45:35 +00002 * Copyright (c) 2017-2018 ARM Limited.
Anthony Barbier8140e1e2017-12-14 23:48:46 +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/runtime/CL/functions/CLDepthwiseConvolutionLayer.h"
25
26#include "arm_compute/core/CL/ICLTensor.h"
Jenkinsb3a371b2018-05-23 11:36:53 +010027#include "arm_compute/core/CL/kernels/CLDepthwiseConvolutionLayer3x3NCHWKernel.h"
28#include "arm_compute/core/CL/kernels/CLDepthwiseConvolutionLayer3x3NHWCKernel.h"
Anthony Barbier8140e1e2017-12-14 23:48:46 +000029#include "arm_compute/core/PixelValue.h"
Anthony Barbier06ea0482018-02-22 15:45:35 +000030#include "arm_compute/core/utils/misc/ShapeCalculator.h"
31#include "arm_compute/core/utils/quantization/AsymmHelpers.h"
Anthony Barbier8140e1e2017-12-14 23:48:46 +000032#include "arm_compute/runtime/CL/CLScheduler.h"
33#include "support/ToolchainSupport.h"
34
35using namespace arm_compute;
Anthony Barbier06ea0482018-02-22 15:45:35 +000036using namespace arm_compute::misc;
37using namespace arm_compute::misc::shape_calculator;
Anthony Barbier8140e1e2017-12-14 23:48:46 +000038
39CLDepthwiseConvolutionLayer3x3::CLDepthwiseConvolutionLayer3x3()
Jenkinsb3a371b2018-05-23 11:36:53 +010040 : _kernel(nullptr), _border_handler()
Anthony Barbier8140e1e2017-12-14 23:48:46 +000041{
42}
43
Jenkinsb3a371b2018-05-23 11:36:53 +010044void CLDepthwiseConvolutionLayer3x3::configure(ICLTensor *input, const ICLTensor *weights, const ICLTensor *biases, ICLTensor *output, const PadStrideInfo &conv_info, unsigned int depth_multiplier,
45 ActivationLayerInfo act_info)
Anthony Barbier8140e1e2017-12-14 23:48:46 +000046{
Anthony Barbier06ea0482018-02-22 15:45:35 +000047 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::QASYMM8, DataType::F16, DataType::F32);
Anthony Barbier8140e1e2017-12-14 23:48:46 +000048 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(input, weights);
49
Jenkinsb3a371b2018-05-23 11:36:53 +010050 if(input->info()->data_layout() == DataLayout::NCHW)
51 {
52 _kernel = arm_compute::support::cpp14::make_unique<CLDepthwiseConvolutionLayer3x3NCHWKernel>();
53 }
54 else
55 {
56 _kernel = arm_compute::support::cpp14::make_unique<CLDepthwiseConvolutionLayer3x3NHWCKernel>();
57 }
58
59 _kernel->set_target(CLScheduler::get().target());
60 _kernel->configure(input, weights, biases, output, conv_info, depth_multiplier, act_info);
Anthony Barbier8140e1e2017-12-14 23:48:46 +000061
62 // Configure border handler
63 PixelValue &&zero_value(0.f);
64 if(is_data_type_quantized_asymmetric(input->info()->data_type()))
65 {
66 zero_value = PixelValue(static_cast<uint8_t>(input->info()->quantization_info().offset));
67 }
Jenkinsb3a371b2018-05-23 11:36:53 +010068 _border_handler.configure(input, _kernel->border_size(), BorderMode::CONSTANT, zero_value);
69}
70
71Status CLDepthwiseConvolutionLayer3x3::validate(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *biases, const ITensorInfo *output, const PadStrideInfo &conv_info,
72 unsigned int depth_multiplier,
73 ActivationLayerInfo act_info, GPUTarget gpu_target)
74{
75 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, weights, output);
76 ARM_COMPUTE_RETURN_ERROR_ON(input->data_layout() != DataLayout::NCHW && input->data_layout() != DataLayout::NHWC);
77
78 if(input->data_layout() == DataLayout::NCHW)
79 {
80 return CLDepthwiseConvolutionLayer3x3NCHWKernel::validate(input, weights, biases, output, conv_info, depth_multiplier, act_info, gpu_target);
81 }
82
83 return CLDepthwiseConvolutionLayer3x3NHWCKernel::validate(input, weights, biases, output, conv_info, depth_multiplier, act_info);
Anthony Barbier8140e1e2017-12-14 23:48:46 +000084}
85
86void CLDepthwiseConvolutionLayer3x3::run()
87{
88 CLScheduler::get().enqueue(_border_handler);
Jenkinsb3a371b2018-05-23 11:36:53 +010089 CLScheduler::get().enqueue(*_kernel);
Anthony Barbier8140e1e2017-12-14 23:48:46 +000090}
91
92CLDepthwiseConvolutionLayer::CLDepthwiseConvolutionLayer()
Anthony Barbier06ea0482018-02-22 15:45:35 +000093 : _im2col_kernel(), _weights_reshape_kernel(), _v2mm_kernel(), _vector_to_tensor_kernel(), _output_stage_kernel(), _v2mm_input_fill_border(), _v2mm_weights_fill_border(), _input_reshaped(),
Jenkinsb3a371b2018-05-23 11:36:53 +010094 _weights_reshaped(), _v2mm_output(), _output_reshaped(), _is_first_run(true), _is_quantized(false), _original_weights(nullptr)
Anthony Barbier8140e1e2017-12-14 23:48:46 +000095{
96}
97
Jenkinsb3a371b2018-05-23 11:36:53 +010098void CLDepthwiseConvolutionLayer::configure(ICLTensor *input, const ICLTensor *weights, const ICLTensor *biases, ICLTensor *output, const PadStrideInfo &conv_info, unsigned int depth_multiplier)
Anthony Barbier8140e1e2017-12-14 23:48:46 +000099{
Jenkinsb3a371b2018-05-23 11:36:53 +0100100 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::QASYMM8, DataType::F16, DataType::F32);
Anthony Barbier8140e1e2017-12-14 23:48:46 +0000101 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(input, weights);
Anthony Barbier8140e1e2017-12-14 23:48:46 +0000102
103 const size_t weights_w = weights->info()->dimension(0);
104 const size_t weights_h = weights->info()->dimension(1);
105 const size_t weights_z = weights->info()->dimension(2);
106
Jenkinsb3a371b2018-05-23 11:36:53 +0100107 _is_first_run = true;
108 _original_weights = weights;
109 _is_quantized = is_data_type_quantized_asymmetric(input->info()->data_type());
Anthony Barbier8140e1e2017-12-14 23:48:46 +0000110
Anthony Barbier06ea0482018-02-22 15:45:35 +0000111 bool append_bias = (biases != nullptr) && !_is_quantized;
112 const GPUTarget gpu_target = CLScheduler::get().target();
113
114 // Calculate output shape
Jenkinsb3a371b2018-05-23 11:36:53 +0100115 TensorShape output_shape = shape_calculator::compute_depthwise_convolution_shape(*input->info(), *weights->info(), conv_info, depth_multiplier);
116
117 // Output auto inizialitation if not yet initialized
118 auto_init_if_empty(*output->info(), input->info()->clone()->set_tensor_shape(output_shape));
119 ARM_COMPUTE_ERROR_ON_MISMATCHING_DIMENSIONS(output->info()->tensor_shape(), output_shape);
Anthony Barbier06ea0482018-02-22 15:45:35 +0000120
121 // Output width and height
Jenkinsb3a371b2018-05-23 11:36:53 +0100122 const unsigned int conv_w = output_shape.x();
123 const unsigned int conv_h = output_shape.y();
Anthony Barbier8140e1e2017-12-14 23:48:46 +0000124
125 // Set up intermediate tensors
Anthony Barbier06ea0482018-02-22 15:45:35 +0000126 const size_t patch_size = weights_w * weights_h + ((append_bias) ? 1 : 0);
Anthony Barbier8140e1e2017-12-14 23:48:46 +0000127 const size_t conv_size = conv_w * conv_h;
128
129 // Im2Col configuration
130 TensorShape shape_im2col = input->info()->tensor_shape();
131 shape_im2col.set(0, patch_size);
132 shape_im2col.set(1, conv_size);
133 shape_im2col.set(2, weights_z);
Anthony Barbier06ea0482018-02-22 15:45:35 +0000134 _input_reshaped.allocator()->init(input->info()->clone()->set_is_resizable(true).reset_padding().set_tensor_shape(shape_im2col));
Anthony Barbier8140e1e2017-12-14 23:48:46 +0000135 _im2col_kernel.set_target(gpu_target);
Jenkinsb3a371b2018-05-23 11:36:53 +0100136 _im2col_kernel.configure(input, &_input_reshaped, Size2D(weights_w, weights_h), conv_info, append_bias, depth_multiplier);
Anthony Barbier8140e1e2017-12-14 23:48:46 +0000137
138 // Weights reshape configuration
139 const TensorShape shape_weights_reshape(patch_size, weights_z);
Anthony Barbier06ea0482018-02-22 15:45:35 +0000140 _weights_reshaped.allocator()->init(weights->info()->clone()->set_is_resizable(true).reset_padding().set_tensor_shape(shape_weights_reshape));
141 _weights_reshape_kernel.configure(weights, &_weights_reshaped, append_bias ? biases : nullptr);
Anthony Barbier8140e1e2017-12-14 23:48:46 +0000142
143 // GEMV configuration
Anthony Barbier06ea0482018-02-22 15:45:35 +0000144 DataType v2mm_dt = (input->info()->data_type() == DataType::QASYMM8) ? DataType::S32 : input->info()->data_type();
Anthony Barbier8140e1e2017-12-14 23:48:46 +0000145 TensorShape shape_v2mm_out = input->info()->tensor_shape();
146 shape_v2mm_out.set(0, conv_size * weights_z);
147 shape_v2mm_out.set(1, 1);
148 shape_v2mm_out.set(2, 1);
Anthony Barbier06ea0482018-02-22 15:45:35 +0000149 _v2mm_output.allocator()->init(input->info()->clone()->set_is_resizable(true).reset_padding().set_data_type(v2mm_dt).set_tensor_shape(shape_v2mm_out));
Anthony Barbier8140e1e2017-12-14 23:48:46 +0000150 _v2mm_kernel.set_target(gpu_target);
151 _v2mm_kernel.configure(&_input_reshaped, &_weights_reshaped, &_v2mm_output);
Jenkinsb3a371b2018-05-23 11:36:53 +0100152 _output_reshaped.allocator()->init(_v2mm_output.info()->clone()->set_is_resizable(true).reset_padding().set_tensor_shape(output_shape));
Anthony Barbier06ea0482018-02-22 15:45:35 +0000153 _vector_to_tensor_kernel.configure(&_v2mm_output, (_is_quantized) ? &_output_reshaped : output, conv_w, conv_h);
Anthony Barbier8140e1e2017-12-14 23:48:46 +0000154
Anthony Barbier06ea0482018-02-22 15:45:35 +0000155 // Output staged configuration
156 if(_is_quantized)
157 {
158 const QuantizationInfo output_quant_info = (output->info()->total_size() == 0) ? input->info()->quantization_info() : output->info()->quantization_info();
159
160 float multiplier = input->info()->quantization_info().scale * weights->info()->quantization_info().scale / output_quant_info.scale;
161 int output_multiplier, output_shift;
162 quantization::calculate_quantized_multiplier_less_than_one(multiplier, &output_multiplier, &output_shift);
163 _output_stage_kernel.configure(&_output_reshaped, biases, output, output_multiplier, output_shift, output_quant_info.offset);
164 _output_reshaped.allocator()->allocate();
165 }
166
167 // Fill borders on inputs
168 PixelValue zero_in(static_cast<int32_t>(0));
169 PixelValue zero_w(static_cast<int32_t>(0));
170 if(_is_quantized)
171 {
172 zero_in = PixelValue(static_cast<int32_t>(input->info()->quantization_info().offset));
173 zero_w = PixelValue(static_cast<int32_t>(weights->info()->quantization_info().offset));
174 }
Anthony Barbier8140e1e2017-12-14 23:48:46 +0000175 BorderSize border_size = _v2mm_kernel.border_size();
Anthony Barbier06ea0482018-02-22 15:45:35 +0000176 _v2mm_input_fill_border.configure(&_input_reshaped, border_size, BorderMode::CONSTANT, zero_in);
Anthony Barbier8140e1e2017-12-14 23:48:46 +0000177
178 border_size.bottom = 0;
Anthony Barbier06ea0482018-02-22 15:45:35 +0000179 _v2mm_weights_fill_border.configure(&_weights_reshaped, border_size, BorderMode::CONSTANT, zero_w);
Anthony Barbier8140e1e2017-12-14 23:48:46 +0000180
181 // Allocate intermediate tensors
182 _input_reshaped.allocator()->allocate();
183 _weights_reshaped.allocator()->allocate();
184 _v2mm_output.allocator()->allocate();
185}
186
Jenkinsb3a371b2018-05-23 11:36:53 +0100187Status CLDepthwiseConvolutionLayer::validate(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *biases, const ITensorInfo *output, const PadStrideInfo &conv_info,
188 unsigned int depth_multiplier)
189{
190 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, weights, output);
191 ARM_COMPUTE_RETURN_ERROR_ON((input->dimension(2) * depth_multiplier) != weights->dimension(2));
192
193 const bool is_quantized = is_data_type_quantized_asymmetric(input->data_type());
194 const bool append_bias = (biases != nullptr) && !is_quantized;
195 const TensorShape output_shape = shape_calculator::compute_depthwise_convolution_shape(*input, *weights, conv_info, depth_multiplier);
196 const size_t weights_w = weights->dimension(0);
197 const size_t weights_h = weights->dimension(1);
198 const size_t weights_z = weights->dimension(2);
199 const unsigned int conv_w = output_shape.x();
200 const unsigned int conv_h = output_shape.y();
201 const size_t patch_size = weights_w * weights_h + ((append_bias) ? 1 : 0);
202 const size_t conv_size = conv_w * conv_h;
203
204 TensorShape shape_im2col = input->tensor_shape();
205 shape_im2col.set(0, patch_size);
206 shape_im2col.set(1, conv_size);
207 shape_im2col.set(2, weights_z);
208 TensorInfo input_reshaped(input->clone()->set_is_resizable(true).reset_padding().set_tensor_shape(shape_im2col));
209 ARM_COMPUTE_RETURN_ON_ERROR(CLDepthwiseIm2ColKernel::validate(input, &input_reshaped, Size2D(weights_w, weights_h), conv_info, append_bias, depth_multiplier));
210
211 const TensorShape shape_weights_reshape(patch_size, weights_z);
212 TensorInfo weights_reshaped(weights->clone()->set_is_resizable(true).reset_padding().set_tensor_shape(shape_weights_reshape));
213 ARM_COMPUTE_RETURN_ON_ERROR(CLDepthwiseWeightsReshapeKernel::validate(weights, &weights_reshaped, append_bias ? biases : nullptr));
214
215 DataType v2mm_dt = (input->data_type() == DataType::QASYMM8) ? DataType::S32 : input->data_type();
216 TensorShape shape_v2mm_out = input->tensor_shape();
217 shape_v2mm_out.set(0, conv_size * weights_z);
218 shape_v2mm_out.set(1, 1);
219 shape_v2mm_out.set(2, 1);
220 TensorInfo v2mm_output(input->clone()->set_is_resizable(true).reset_padding().set_data_type(v2mm_dt).set_tensor_shape(shape_v2mm_out));
221 ARM_COMPUTE_RETURN_ON_ERROR(CLGEMMMatrixVectorMultiplyKernel::validate(&input_reshaped, &weights_reshaped, &v2mm_output));
222
223 TensorInfo output_reshaped(v2mm_output.clone()->set_is_resizable(true).reset_padding().set_tensor_shape(output_shape));
224 ARM_COMPUTE_RETURN_ON_ERROR(CLDepthwiseVectorToTensorKernel::validate(&v2mm_output, (is_quantized) ? &output_reshaped : output, conv_w, conv_h));
225
226 if(is_quantized)
227 {
228 ARM_COMPUTE_RETURN_ON_ERROR(CLDirectConvolutionLayerOutputStageKernel::validate(&output_reshaped, biases, output));
229 }
230
231 return Status{};
232}
233
Anthony Barbier8140e1e2017-12-14 23:48:46 +0000234void CLDepthwiseConvolutionLayer::run()
235{
Jenkinsb3a371b2018-05-23 11:36:53 +0100236 // Run weights reshaping (Runs once for every configure)
237 if(_is_first_run)
238 {
239 ARM_COMPUTE_ERROR_ON(!_original_weights->is_used());
240
241 CLScheduler::get().enqueue(_weights_reshape_kernel);
242 CLScheduler::get().enqueue(_v2mm_weights_fill_border);
243 _is_first_run = false;
244
245 // Mark original weights tensor as unused
246 _original_weights->mark_as_unused();
247 }
248
Anthony Barbier8140e1e2017-12-14 23:48:46 +0000249 CLScheduler::get().enqueue(_im2col_kernel);
Anthony Barbier8140e1e2017-12-14 23:48:46 +0000250 CLScheduler::get().enqueue(_v2mm_input_fill_border);
Anthony Barbier8140e1e2017-12-14 23:48:46 +0000251 CLScheduler::get().enqueue(_v2mm_kernel);
Anthony Barbier8140e1e2017-12-14 23:48:46 +0000252 CLScheduler::get().enqueue(_vector_to_tensor_kernel);
Anthony Barbier06ea0482018-02-22 15:45:35 +0000253 if(_is_quantized)
254 {
255 CLScheduler::get().enqueue(_output_stage_kernel);
256 }
Anthony Barbier8140e1e2017-12-14 23:48:46 +0000257}