blob: 8f7a62157f9893b599b78c57c212f8f76e59e3c3 [file] [log] [blame]
Isabella Gottardif07d28d2018-02-06 14:52:43 +00001/*
Michele Di Giorgioebc3a902018-11-16 16:04:25 +00002 * Copyright (c) 2017-2019 ARM Limited.
Isabella Gottardif07d28d2018-02-06 14:52:43 +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/CLGEMMConvolutionLayer.h"
25
26#include "arm_compute/core/PixelValue.h"
27#include "arm_compute/core/Size2D.h"
28#include "arm_compute/core/Utils.h"
29#include "arm_compute/core/Validate.h"
Georgios Pinitas78c00902018-01-09 17:33:11 +000030#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Isabella Gottardif07d28d2018-02-06 14:52:43 +000031#include "arm_compute/core/utils/quantization/AsymmHelpers.h"
32#include "arm_compute/runtime/CL/CLScheduler.h"
33
34#include <cmath>
35#include <memory>
36#include <tuple>
37
38using namespace arm_compute;
Georgios Pinitas78c00902018-01-09 17:33:11 +000039using namespace arm_compute::misc::shape_calculator;
Isabella Gottardif07d28d2018-02-06 14:52:43 +000040
Georgios Pinitasd8734b52017-12-22 15:27:52 +000041CLConvolutionLayerReshapeWeights::CLConvolutionLayerReshapeWeights()
42 : _weights_reshape_kernel()
Isabella Gottardif07d28d2018-02-06 14:52:43 +000043{
44}
45
Gian Marco Iodice916d1bc2018-08-13 11:20:41 +010046void CLConvolutionLayerReshapeWeights::configure(const ICLTensor *weights, const ICLTensor *biases, ICLTensor *output, unsigned int num_groups)
Isabella Gottardif07d28d2018-02-06 14:52:43 +000047{
Georgios Pinitas78c00902018-01-09 17:33:11 +000048 // Perform validation step
Isabella Gottardif07d28d2018-02-06 14:52:43 +000049 ARM_COMPUTE_ERROR_ON_NULLPTR(weights, output);
Georgios Pinitas78c00902018-01-09 17:33:11 +000050 ARM_COMPUTE_ERROR_THROW_ON(CLConvolutionLayerReshapeWeights::validate(weights->info(),
51 (biases != nullptr) ? biases->info() : nullptr,
Gian Marco Iodice916d1bc2018-08-13 11:20:41 +010052 output->info(),
53 num_groups));
Georgios Pinitas78c00902018-01-09 17:33:11 +000054
55 const bool append_biases = (biases != nullptr) && !is_data_type_quantized_asymmetric(weights->info()->data_type());
56 const ICLTensor *biases_to_use = (append_biases) ? biases : nullptr;
57
Gian Marco Iodice916d1bc2018-08-13 11:20:41 +010058 _weights_reshape_kernel.configure(weights, biases_to_use, output, num_groups);
Georgios Pinitas78c00902018-01-09 17:33:11 +000059
60 output->info()->set_quantization_info(weights->info()->quantization_info());
61}
62
Gian Marco Iodice916d1bc2018-08-13 11:20:41 +010063Status CLConvolutionLayerReshapeWeights::validate(const ITensorInfo *weights, const ITensorInfo *biases, const ITensorInfo *output, unsigned int num_groups)
Georgios Pinitas78c00902018-01-09 17:33:11 +000064{
65 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(weights);
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010066 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(weights, 1, DataType::QASYMM8, DataType::F16, DataType::F32);
Georgios Pinitas78c00902018-01-09 17:33:11 +000067 ARM_COMPUTE_RETURN_ERROR_ON(weights->num_dimensions() > 4);
Isabella Gottardif07d28d2018-02-06 14:52:43 +000068
69 if(biases != nullptr)
70 {
Georgios Pinitas19ea4192018-06-19 13:09:53 +010071 const int idx_kernels = get_data_layout_dimension_index(weights->data_layout(), DataLayoutDimension::BATCHES);
Georgios Pinitas78c00902018-01-09 17:33:11 +000072 ARM_COMPUTE_RETURN_ERROR_ON(is_data_type_quantized_asymmetric(weights->data_type()));
73 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(weights, biases);
Georgios Pinitas19ea4192018-06-19 13:09:53 +010074 ARM_COMPUTE_RETURN_ERROR_ON(biases->dimension(0) != weights->dimension(idx_kernels));
Georgios Pinitas78c00902018-01-09 17:33:11 +000075 ARM_COMPUTE_RETURN_ERROR_ON(biases->num_dimensions() > 1);
Isabella Gottardif07d28d2018-02-06 14:52:43 +000076 }
77
Georgios Pinitas78c00902018-01-09 17:33:11 +000078 if((output != nullptr) && (output->total_size() != 0))
Isabella Gottardif07d28d2018-02-06 14:52:43 +000079 {
Georgios Pinitas78c00902018-01-09 17:33:11 +000080 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(weights, output);
Isabella Gottardif07d28d2018-02-06 14:52:43 +000081
Gian Marco Iodice916d1bc2018-08-13 11:20:41 +010082 CLWeightsReshapeKernel::validate(weights, biases, output, num_groups);
Isabella Gottardif07d28d2018-02-06 14:52:43 +000083 }
84
Georgios Pinitas78c00902018-01-09 17:33:11 +000085 return Status{};
Isabella Gottardif07d28d2018-02-06 14:52:43 +000086}
87
88void CLConvolutionLayerReshapeWeights::run()
89{
Isabella Gottardif07d28d2018-02-06 14:52:43 +000090 CLScheduler::get().enqueue(_weights_reshape_kernel);
Isabella Gottardif07d28d2018-02-06 14:52:43 +000091}
92
93CLGEMMConvolutionLayer::CLGEMMConvolutionLayer(std::shared_ptr<IMemoryManager> memory_manager)
Gian Marco Iodice4b908652018-10-18 10:21:02 +010094 : _memory_group(memory_manager), _reshape_weights(), _im2col_kernel(), _mm_gemm(memory_manager), _mm_gemmlowp(memory_manager), _col2im_kernel(), _activationlayer_function(), _add_bias_kernel(),
95 _original_weights(nullptr), _im2col_output(), _weights_reshaped(), _gemm_output(), _data_layout(DataLayout::NCHW), _append_bias(false), _skip_im2col(false), _skip_col2im(false), _is_quantized(false),
Michele Di Giorgioebc3a902018-11-16 16:04:25 +000096 _is_activationlayer_enabled(false), _is_prepared(false), _run_addition(true)
Isabella Gottardif07d28d2018-02-06 14:52:43 +000097{
98}
99
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100100void CLGEMMConvolutionLayer::configure_mm(const ICLTensor *input, const ICLTensor *weights, const ICLTensor *biases, ICLTensor *output, const GEMMLowpOutputStageInfo &gemmlowp_output_stage,
101 int gemm_3d_depth)
Isabella Gottardif07d28d2018-02-06 14:52:43 +0000102{
103 ARM_COMPUTE_ERROR_ON_NULLPTR(input, weights);
Michele Di Giorgioebc3a902018-11-16 16:04:25 +0000104 ARM_COMPUTE_ERROR_THROW_ON(validate_mm(input->info(), weights->info(), biases != nullptr ? biases->info() : nullptr, output->info(), gemmlowp_output_stage, gemm_3d_depth, _skip_im2col,
105 _run_addition));
Georgios Pinitas78c00902018-01-09 17:33:11 +0000106
Georgios Pinitas932491f2018-09-21 16:33:15 +0100107 const GEMMInfo &gemm_info = GEMMInfo(false, false, true /* Reshape weights only for the first run */,
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100108 gemm_3d_depth, _skip_im2col /* Reinterpret the input as 3D if im2col is skipped */,
109 false, gemmlowp_output_stage);
Georgios Pinitas932491f2018-09-21 16:33:15 +0100110
Isabella Gottardif07d28d2018-02-06 14:52:43 +0000111 if(_is_quantized)
112 {
Georgios Pinitas78c00902018-01-09 17:33:11 +0000113 // Since we need negative offsets for computing convolution, we need to change QuantizationInfo()
114 // Extract and negate input and weights offset
115 const QuantizationInfo input_quantization_info = input->info()->quantization_info();
116 const QuantizationInfo weights_quantization_info = weights->info()->quantization_info();
Isabella Gottardif07d28d2018-02-06 14:52:43 +0000117
Georgios Pinitas78c00902018-01-09 17:33:11 +0000118 input->info()->set_quantization_info(QuantizationInfo(input_quantization_info.scale, -input_quantization_info.offset));
119 weights->info()->set_quantization_info(QuantizationInfo(weights_quantization_info.scale, -weights_quantization_info.offset));
Isabella Gottardif07d28d2018-02-06 14:52:43 +0000120
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100121 _mm_gemmlowp.configure(input, weights, biases, output, gemm_info);
Isabella Gottardif07d28d2018-02-06 14:52:43 +0000122
Georgios Pinitas78c00902018-01-09 17:33:11 +0000123 // Revert back QuantizatioInfo as input and weights could be used in other convolution layers
124 input->info()->set_quantization_info(input_quantization_info);
125 weights->info()->set_quantization_info(weights_quantization_info);
Isabella Gottardif07d28d2018-02-06 14:52:43 +0000126 }
127 else
128 {
Michele Di Giorgioebc3a902018-11-16 16:04:25 +0000129 // Bias does not need to be added in GEMM if im2col is being used or the Matrix Addition kernel needs to be run
130 const bool skip_bias_in_gemm = _run_addition || !_skip_im2col;
Georgios Pinitas78c00902018-01-09 17:33:11 +0000131 // Configure matrix multiply function
Michele Di Giorgioebc3a902018-11-16 16:04:25 +0000132 _mm_gemm.configure(input, weights, (skip_bias_in_gemm) ? nullptr : biases, output, 1.0f, 1.0f, gemm_info);
Isabella Gottardif07d28d2018-02-06 14:52:43 +0000133 }
134}
135
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100136Status CLGEMMConvolutionLayer::validate_mm(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *biases, const ITensorInfo *output,
Michele Di Giorgioebc3a902018-11-16 16:04:25 +0000137 const GEMMLowpOutputStageInfo &gemmlowp_output_stage, int gemm_3d_depth, bool skip_im2col, bool run_addition)
Georgios Pinitas78c00902018-01-09 17:33:11 +0000138{
139 const bool is_quantized = is_data_type_quantized_asymmetric(input->data_type());
140
Georgios Pinitas932491f2018-09-21 16:33:15 +0100141 const GEMMInfo &gemm_info = GEMMInfo(false, false, true /* Reshape weights only for the first run */,
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100142 gemm_3d_depth, skip_im2col /* Reinterpret the input as 3D if im2col is skipped */,
143 false, gemmlowp_output_stage);
Georgios Pinitas932491f2018-09-21 16:33:15 +0100144
Georgios Pinitas78c00902018-01-09 17:33:11 +0000145 if(is_quantized)
146 {
147 // Since we need negative offsets for computing convolution, we need to change QuantizationInfo()
148 // Extract and negate input and weights offset
149 const QuantizationInfo input_quantization_info = input->quantization_info();
150 const QuantizationInfo weights_quantization_info = weights->quantization_info();
151
152 std::unique_ptr<ITensorInfo> input_qa = input->clone();
153 std::unique_ptr<ITensorInfo> weights_qa = weights->clone();
154 input_qa->set_quantization_info(QuantizationInfo(input_quantization_info.scale, -input_quantization_info.offset));
155 weights_qa->set_quantization_info(QuantizationInfo(weights_quantization_info.scale, -weights_quantization_info.offset));
156
157 // Perform validation step on GEMMLowp
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100158 return CLGEMMLowpMatrixMultiplyCore::validate(input_qa.get(), weights_qa.get(), biases, output, gemm_info);
Georgios Pinitas78c00902018-01-09 17:33:11 +0000159 }
160 else
161 {
Michele Di Giorgioebc3a902018-11-16 16:04:25 +0000162 // Bias does not need to be added in GEMM if im2col is being used or the Matrix Addition kernel needs to be run
163 const bool skip_bias_in_gemm = run_addition || !skip_im2col;
Georgios Pinitas78c00902018-01-09 17:33:11 +0000164 // Perform validation step on Matrix multiply function
Michele Di Giorgioebc3a902018-11-16 16:04:25 +0000165 return CLGEMM::validate(input, weights, (skip_bias_in_gemm) ? nullptr : biases, output, 1.0f, 1.0f, gemm_info);
Georgios Pinitas78c00902018-01-09 17:33:11 +0000166 }
Georgios Pinitas78c00902018-01-09 17:33:11 +0000167}
168
Alex Gilday7da29b62018-03-23 14:16:00 +0000169void CLGEMMConvolutionLayer::configure(const ICLTensor *input, const ICLTensor *weights, const ICLTensor *biases, ICLTensor *output, const PadStrideInfo &conv_info, const WeightsInfo &weights_info,
Gian Marco Iodice916d1bc2018-08-13 11:20:41 +0100170 const Size2D &dilation, const ActivationLayerInfo &act_info, unsigned int num_groups)
Isabella Gottardif07d28d2018-02-06 14:52:43 +0000171{
172 ARM_COMPUTE_ERROR_ON_NULLPTR(input, weights, output);
Georgios Pinitas78c00902018-01-09 17:33:11 +0000173
174 ARM_COMPUTE_ERROR_THROW_ON(CLGEMMConvolutionLayer::validate(input->info(),
175 weights->info(),
176 biases != nullptr ? biases->info() : nullptr,
177 output->info(),
178 conv_info,
Alex Gilday7da29b62018-03-23 14:16:00 +0000179 weights_info,
Isabella Gottardi3f217ec2018-02-12 14:59:19 +0000180 dilation,
Gian Marco Iodice916d1bc2018-08-13 11:20:41 +0100181 act_info,
182 num_groups));
Isabella Gottardif07d28d2018-02-06 14:52:43 +0000183
Georgios Pinitas19ea4192018-06-19 13:09:53 +0100184 const DataType data_type = input->info()->data_type();
185 const DataLayout data_layout = input->info()->data_layout();
186 const int idx_width = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
187 const int idx_height = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT);
Georgios Pinitas19ea4192018-06-19 13:09:53 +0100188 const int idx_kernels = get_data_layout_dimension_index(data_layout, DataLayoutDimension::BATCHES);
189
190 const unsigned int kernel_width = weights->info()->dimension(idx_width);
191 const unsigned int kernel_height = weights->info()->dimension(idx_height);
192
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100193 _is_prepared = weights_info.retain_internal_weights();
194 _original_weights = weights;
195 _is_quantized = is_data_type_quantized_asymmetric(input->info()->data_type());
196 _data_layout = data_layout;
197 _skip_im2col = (data_layout == DataLayout::NHWC && kernel_width == 1 && kernel_height == 1 && conv_info.stride().first == 1 && conv_info.stride().second == 1);
198 _skip_col2im = data_layout == DataLayout::NHWC;
199 _append_bias = (biases != nullptr) && (!_is_quantized);
200 _is_activationlayer_enabled = act_info.enabled();
Michele Di Giorgioebc3a902018-11-16 16:04:25 +0000201 // In case of F16, fused bias will be used in GEMM
202 _run_addition = (_skip_im2col) && (_append_bias) && (data_type != DataType::F16);
Isabella Gottardif07d28d2018-02-06 14:52:43 +0000203
Georgios Pinitas78c00902018-01-09 17:33:11 +0000204 // Set the GPU target for im2col and col2im
Isabella Gottardif07d28d2018-02-06 14:52:43 +0000205 _im2col_kernel.set_target(CLScheduler::get().target());
206 _col2im_kernel.set_target(CLScheduler::get().target());
207
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100208 const ICLTensor *gemm_input_to_use = input;
209 ICLTensor *gemm_output_to_use = output;
Isabella Gottardif07d28d2018-02-06 14:52:43 +0000210
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100211 const ICLTensor *biases_to_use = (_append_bias && !_skip_im2col) ? biases : nullptr;
Isabella Gottardif07d28d2018-02-06 14:52:43 +0000212
213 // Get parameters from conv_info
214 unsigned int stride_x = 0;
215 unsigned int stride_y = 0;
216 std::tie(stride_x, stride_y) = conv_info.stride();
217
218 // Get convolved dimensions
219 unsigned int conv_w = 0;
220 unsigned int conv_h = 0;
Georgios Pinitas19ea4192018-06-19 13:09:53 +0100221 std::tie(conv_w, conv_h) = scaled_dimensions(input->info()->dimension(idx_width),
222 input->info()->dimension(idx_height),
223 kernel_width,
224 kernel_height,
225 conv_info,
226 dilation);
Isabella Gottardif07d28d2018-02-06 14:52:43 +0000227
Gian Marco Iodice916d1bc2018-08-13 11:20:41 +0100228 unsigned int mat_weights_cols = weights->info()->dimension(idx_kernels) / num_groups;
Isabella Gottardif07d28d2018-02-06 14:52:43 +0000229
Georgios Pinitas78c00902018-01-09 17:33:11 +0000230 // _weights_reshaped will be auto configured in the kernel.
231 // Just append biases and do not transpose 1xW as it will be reshaped in CLGEMM
Gian Marco Iodice916d1bc2018-08-13 11:20:41 +0100232 _reshape_weights.configure(weights, biases_to_use, &_weights_reshaped, num_groups);
Isabella Gottardif07d28d2018-02-06 14:52:43 +0000233
Isabella Gottardif07d28d2018-02-06 14:52:43 +0000234 // Create tensor to store im2col reshaped inputs
Georgios Pinitas19ea4192018-06-19 13:09:53 +0100235 if(!_skip_im2col)
236 {
Georgios Pinitas19ea4192018-06-19 13:09:53 +0100237 _memory_group.manage(&_im2col_output);
238
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100239 // Configure and tune im2col. im2col output shape is auto-initialized
Gian Marco Iodice916d1bc2018-08-13 11:20:41 +0100240 _im2col_kernel.configure(input, &_im2col_output, Size2D(kernel_width, kernel_height), conv_info, _append_bias, dilation, num_groups);
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100241
242 // Set quantization info
243 _im2col_output.info()->set_quantization_info(input->info()->quantization_info());
Georgios Pinitas19ea4192018-06-19 13:09:53 +0100244 CLScheduler::get().tune_kernel_static(_im2col_kernel);
245
246 // Update GEMM input
247 gemm_input_to_use = &_im2col_output;
248 }
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100249 else if(_append_bias)
250 {
251 // Configure add bias kernel
giuros01164a2722018-11-20 18:34:46 +0000252 _add_bias_kernel.configure(ArithmeticOperation::ADD, output, biases, output, ConvertPolicy::SATURATE);
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100253 }
Isabella Gottardif07d28d2018-02-06 14:52:43 +0000254
255 // Create GEMM output tensor
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100256 if(!_skip_col2im)
Georgios Pinitas19ea4192018-06-19 13:09:53 +0100257 {
Georgios Pinitas932491f2018-09-21 16:33:15 +0100258 TensorShape shape_gemm;
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100259
260 // If we cannot skip col2im it means we run im2col as well
261 shape_gemm = _im2col_output.info()->tensor_shape();
262 shape_gemm.set(0, mat_weights_cols);
263 shape_gemm.set(1, conv_w * conv_h);
264
Georgios Pinitasf52cd782019-03-25 14:06:14 +0000265 // TODO(COMPMID-2078): input->clone() doesn't work with subtensors for grouped convolutions.
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100266 TensorInfo info_gemm(shape_gemm, 1, data_type);
Georgios Pinitas932491f2018-09-21 16:33:15 +0100267 info_gemm.set_quantization_info(output->info()->quantization_info()).set_data_layout(input->info()->data_layout());
Georgios Pinitas19ea4192018-06-19 13:09:53 +0100268 _gemm_output.allocator()->init(info_gemm);
269 _memory_group.manage(&_gemm_output);
270
271 // Update GEMM output
272 gemm_output_to_use = &_gemm_output;
273 }
Isabella Gottardif07d28d2018-02-06 14:52:43 +0000274
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100275 GEMMLowpOutputStageInfo gemmlowp_output_stage;
276 gemmlowp_output_stage.type = GEMMLowpOutputStageType::QUANTIZE_DOWN_FIXEDPOINT;
277 gemmlowp_output_stage.gemmlowp_offset = 0;
278 gemmlowp_output_stage.gemmlowp_multiplier = 0;
279 gemmlowp_output_stage.gemmlowp_shift = 0;
Isabella Gottardif07d28d2018-02-06 14:52:43 +0000280
281 // Configure output stage for quantized case
282 if(_is_quantized)
283 {
Georgios Pinitas9be0c5a2018-02-19 12:46:29 +0000284 const QuantizationInfo output_quant_info = (output->info()->total_size() == 0) ? input->info()->quantization_info() : output->info()->quantization_info();
285
giuros01164a2722018-11-20 18:34:46 +0000286 const float multiplier = (input->info()->quantization_info().scale * weights->info()->quantization_info().scale) / output_quant_info.scale;
287 int output_multiplier = 0;
288 int output_shift = 0;
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100289 quantization::calculate_quantized_multiplier_less_than_one(multiplier, &output_multiplier, &output_shift);
290
291 int min_activation = 0;
292 int max_activation = 0;
293
294 const std::set<ActivationLayerInfo::ActivationFunction> supported_acts = { ActivationLayerInfo::ActivationFunction::RELU,
Gian Marco Iodice3139f032018-11-05 14:26:32 +0000295 ActivationLayerInfo::ActivationFunction::BOUNDED_RELU,
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100296 ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU
297 };
298
299 if(_is_activationlayer_enabled && supported_acts.count(act_info.activation()) != 0)
Georgios Pinitas932491f2018-09-21 16:33:15 +0100300 {
Georgios Pinitasc73e2b82018-11-08 13:33:16 +0000301 const int a_const_int = output_quant_info.quantize(act_info.a(), RoundingPolicy::TO_NEAREST_UP);
302 const int b_const_int = output_quant_info.quantize(act_info.b(), RoundingPolicy::TO_NEAREST_UP);
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100303
Georgios Pinitasc73e2b82018-11-08 13:33:16 +0000304 min_activation = act_info.activation() != ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU ? output_quant_info.offset : b_const_int;
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100305 max_activation = act_info.activation() == ActivationLayerInfo::ActivationFunction::RELU ? 255 : a_const_int;
306
307 // If the activation layer is RELU, BOUNDED_RELU or LU_BOUNDED_RELU, we can use the GEMMLowp output stage to perform this operation
308 _is_activationlayer_enabled = false;
Georgios Pinitas932491f2018-09-21 16:33:15 +0100309 }
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100310
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100311 // Set the GEMMLowp output stage info
312 gemmlowp_output_stage.gemmlowp_offset = output_quant_info.offset;
313 gemmlowp_output_stage.gemmlowp_multiplier = output_multiplier;
314 gemmlowp_output_stage.gemmlowp_shift = output_shift;
315 gemmlowp_output_stage.gemmlowp_min_bound = min_activation;
316 gemmlowp_output_stage.gemmlowp_max_bound = max_activation;
317 }
318
319 // Configure and tune GEMM
Gian Marco Iodice3139f032018-11-05 14:26:32 +0000320 // In case of NHWC, we need to run GEMM3D (gemm_3d_depth != 0) in order to avoid reshaping the output matrix
321 const unsigned int gemm_3d_depth = (data_layout == DataLayout::NHWC) ? conv_h : 0;
322
323 configure_mm(gemm_input_to_use, &_weights_reshaped, biases, gemm_output_to_use, gemmlowp_output_stage, gemm_3d_depth);
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100324
325 if(!_skip_im2col)
326 {
327 _im2col_output.allocator()->allocate();
Isabella Gottardif07d28d2018-02-06 14:52:43 +0000328 }
329
Georgios Pinitas932491f2018-09-21 16:33:15 +0100330 if(!_skip_col2im)
Georgios Pinitas19ea4192018-06-19 13:09:53 +0100331 {
Georgios Pinitas932491f2018-09-21 16:33:15 +0100332 // Configure and tune Col2Im
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100333 _col2im_kernel.configure(gemm_output_to_use, output, Size2D(conv_w, conv_h), num_groups);
Georgios Pinitas932491f2018-09-21 16:33:15 +0100334 CLScheduler::get().tune_kernel_static(_col2im_kernel);
Georgios Pinitas19ea4192018-06-19 13:09:53 +0100335 }
336
Georgios Pinitas932491f2018-09-21 16:33:15 +0100337 if(!_skip_col2im)
Georgios Pinitas19ea4192018-06-19 13:09:53 +0100338 {
339 _gemm_output.allocator()->allocate();
340 }
341
342 ARM_COMPUTE_ERROR_ON_MSG((output->info()->dimension(idx_width) != conv_w) || (output->info()->dimension(idx_height) != conv_h),
343 "Output shape does not match the expected one");
Isabella Gottardif07d28d2018-02-06 14:52:43 +0000344
Isabella Gottardi3f217ec2018-02-12 14:59:19 +0000345 if(_is_activationlayer_enabled)
346 {
347 _activationlayer_function.configure(output, nullptr, act_info);
348 }
349
Georgios Pinitas78c00902018-01-09 17:33:11 +0000350 ARM_COMPUTE_UNUSED(weights_info);
351}
352
353Status CLGEMMConvolutionLayer::validate(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *biases, const ITensorInfo *output, const PadStrideInfo &conv_info,
Gian Marco Iodice916d1bc2018-08-13 11:20:41 +0100354 const WeightsInfo &weights_info, const Size2D &dilation, const ActivationLayerInfo &act_info, unsigned int num_groups)
Georgios Pinitas78c00902018-01-09 17:33:11 +0000355{
356 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, weights, output);
357 ARM_COMPUTE_RETURN_ERROR_ON_MSG(weights_info.are_reshaped(), "Weights already reshaped are not supported!");
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +0100358 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::QASYMM8, DataType::F16, DataType::F32);
Georgios Pinitas78c00902018-01-09 17:33:11 +0000359 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, weights);
Georgios Pinitas19ea4192018-06-19 13:09:53 +0100360 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_LAYOUT(input, weights);
Gian Marco Iodice916d1bc2018-08-13 11:20:41 +0100361 ARM_COMPUTE_RETURN_ERROR_ON_MSG((num_groups != 1) && (input->data_layout() != DataLayout::NCHW), "Grouping (num_groups != 1) with NHWC data layout is not supported");
362 ARM_COMPUTE_RETURN_ERROR_ON_MSG((num_groups != 1) && (input->data_type() == DataType::QASYMM8), "Grouping (num_groups != 1) is not supported with QASYMM8");
363 ARM_COMPUTE_RETURN_ERROR_ON(((input->dimension(2) / weights->dimension(2)) != num_groups) && (input->data_layout() == DataLayout::NCHW));
Georgios Pinitas78c00902018-01-09 17:33:11 +0000364
Georgios Pinitas19ea4192018-06-19 13:09:53 +0100365 const DataLayout data_layout = input->data_layout();
366 const DataType data_type = input->data_type();
367 const int idx_width = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
368 const int idx_height = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT);
369 const int idx_channel = get_data_layout_dimension_index(data_layout, DataLayoutDimension::CHANNEL);
370 const int idx_kernels = get_data_layout_dimension_index(data_layout, DataLayoutDimension::BATCHES);
Isabella Gottardi3f217ec2018-02-12 14:59:19 +0000371
Georgios Pinitas19ea4192018-06-19 13:09:53 +0100372 const unsigned int kernel_width = weights->dimension(idx_width);
373 const unsigned int kernel_height = weights->dimension(idx_height);
374
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100375 TensorInfo im2col_reshaped_info, info_gemm, weights_reshaped_info;
376 const ITensorInfo *gemm_input_to_use = input;
377 const ITensorInfo *gemm_output_to_use = output;
378 const ITensorInfo *weights_to_use = weights;
Georgios Pinitas19ea4192018-06-19 13:09:53 +0100379
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100380 const bool is_quantized = is_data_type_quantized_asymmetric(data_type);
381 const bool append_bias = (biases != nullptr) && (!is_quantized);
382 const bool skip_im2col = (data_layout == DataLayout::NHWC && kernel_width == 1 && kernel_height == 1 && conv_info.stride().first == 1 && conv_info.stride().second == 1);
383 const bool skip_col2im = data_layout == DataLayout::NHWC;
384 bool is_activationlayer_enabled = act_info.enabled();
Michele Di Giorgioebc3a902018-11-16 16:04:25 +0000385 // In case of F16, fused bias will be used in GEMM
386 const bool run_addition = (skip_im2col) && (append_bias) && (data_type != DataType::F16);
Georgios Pinitas78c00902018-01-09 17:33:11 +0000387
Gian Marco Iodice916d1bc2018-08-13 11:20:41 +0100388 ARM_COMPUTE_RETURN_ERROR_ON((weights->dimension(idx_channel) * num_groups) != input->dimension(idx_channel));
Georgios Pinitas19ea4192018-06-19 13:09:53 +0100389 ARM_COMPUTE_RETURN_ERROR_ON(weights->num_dimensions() > 4);
Georgios Pinitas78c00902018-01-09 17:33:11 +0000390
Georgios Pinitas19ea4192018-06-19 13:09:53 +0100391 // Validate biases
Georgios Pinitas78c00902018-01-09 17:33:11 +0000392 if(biases != nullptr)
393 {
394 if(is_quantized)
395 {
396 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(biases, 1, DataType::S32);
397 }
398 else
399 {
400 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, biases);
401 }
Georgios Pinitas19ea4192018-06-19 13:09:53 +0100402 ARM_COMPUTE_RETURN_ERROR_ON(biases->dimension(0) != weights->dimension(idx_kernels));
Georgios Pinitas78c00902018-01-09 17:33:11 +0000403 ARM_COMPUTE_RETURN_ERROR_ON(biases->num_dimensions() > 1);
404 }
405
Georgios Pinitas19ea4192018-06-19 13:09:53 +0100406 if(act_info.enabled())
407 {
408 ARM_COMPUTE_ERROR_ON(act_info.b() > act_info.a());
409 }
410
411 // Get convolved dimensions
412 unsigned int conv_w = 0;
413 unsigned int conv_h = 0;
414
415 std::tie(conv_w, conv_h) = scaled_dimensions(input->dimension(idx_width),
416 input->dimension(idx_height),
417 kernel_width,
418 kernel_height,
419 conv_info,
420 dilation);
421
Gian Marco Iodice916d1bc2018-08-13 11:20:41 +0100422 unsigned int mat_weights_cols = weights->dimension(idx_kernels) / num_groups;
Georgios Pinitas19ea4192018-06-19 13:09:53 +0100423
424 // Output tensor auto inizialitation if not yet initialized
Gian Marco Iodice916d1bc2018-08-13 11:20:41 +0100425 ARM_COMPUTE_RETURN_ON_ERROR(CLConvolutionLayerReshapeWeights::validate(weights, is_quantized ? nullptr : biases, nullptr, num_groups));
426 weights_reshaped_info = TensorInfo(compute_weights_reshaped_shape(*weights, (append_bias && !skip_im2col), num_groups), 1, data_type);
Georgios Pinitas19ea4192018-06-19 13:09:53 +0100427 weights_to_use = &weights_reshaped_info;
428
429 if(!skip_im2col)
430 {
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100431 const Size2D kernel_dims(kernel_width, kernel_height);
432
433 // Output tensor auto initialization if not yet initialized
Gian Marco Iodice916d1bc2018-08-13 11:20:41 +0100434 TensorShape expected_output_shape = compute_im2col_conv_shape(input, kernel_dims, conv_info, append_bias, dilation, num_groups == 1, num_groups);
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100435
436 auto_init_if_empty(im2col_reshaped_info, input->clone()->set_tensor_shape(expected_output_shape));
437
Gian Marco Iodice916d1bc2018-08-13 11:20:41 +0100438 ARM_COMPUTE_RETURN_ON_ERROR(CLIm2ColKernel::validate(input, &im2col_reshaped_info, kernel_dims, conv_info, append_bias, dilation, num_groups));
Georgios Pinitas19ea4192018-06-19 13:09:53 +0100439 gemm_input_to_use = &im2col_reshaped_info;
440 }
Michele Di Giorgioebc3a902018-11-16 16:04:25 +0000441 else if(run_addition)
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100442 {
443 // Validate add bias kernel
giuros01164a2722018-11-20 18:34:46 +0000444 ARM_COMPUTE_RETURN_ON_ERROR(CLSaturatedArithmeticOperationKernel::validate(ArithmeticOperation::ADD, output, biases, output, ConvertPolicy::SATURATE));
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100445 }
Georgios Pinitas19ea4192018-06-19 13:09:53 +0100446
447 // Create GEMM output tensor
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100448 if(!skip_col2im)
Georgios Pinitas19ea4192018-06-19 13:09:53 +0100449 {
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100450 TensorShape shape_gemm;
451
452 shape_gemm = gemm_input_to_use->tensor_shape();
453 shape_gemm.set(0, mat_weights_cols);
454 shape_gemm.set(1, conv_w * conv_h);
455
456 info_gemm = TensorInfo(shape_gemm, 1, data_type);
Georgios Pinitas932491f2018-09-21 16:33:15 +0100457 info_gemm.set_quantization_info(output->quantization_info()).set_data_layout(input->data_layout());
Georgios Pinitas19ea4192018-06-19 13:09:53 +0100458 gemm_output_to_use = &info_gemm;
459 }
460
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100461 GEMMLowpOutputStageInfo gemmlowp_output_stage;
462 gemmlowp_output_stage.type = GEMMLowpOutputStageType::QUANTIZE_DOWN_FIXEDPOINT;
463 gemmlowp_output_stage.gemmlowp_offset = 0;
464 gemmlowp_output_stage.gemmlowp_multiplier = 0;
465 gemmlowp_output_stage.gemmlowp_shift = 0;
Georgios Pinitas19ea4192018-06-19 13:09:53 +0100466
467 if(is_quantized)
468 {
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100469 const QuantizationInfo output_quant_info = (output->total_size() == 0) ? input->quantization_info() : output->quantization_info();
470
giuros01164a2722018-11-20 18:34:46 +0000471 const float multiplier = (input->quantization_info().scale * weights->quantization_info().scale) / output_quant_info.scale;
472 int output_multiplier = 0;
473 int output_shift = 0;
Gian Marco Iodice3139f032018-11-05 14:26:32 +0000474
475 ARM_COMPUTE_RETURN_ON_ERROR(quantization::calculate_quantized_multiplier_less_than_one(multiplier, &output_multiplier, &output_shift));
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100476
477 int min_activation = 0;
478 int max_activation = 0;
479
480 const std::set<ActivationLayerInfo::ActivationFunction> supported_acts = { ActivationLayerInfo::ActivationFunction::RELU,
481 ActivationLayerInfo::ActivationFunction::BOUNDED_RELU,
482 ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU
483 };
484
485 if(is_activationlayer_enabled && supported_acts.count(act_info.activation()) != 0)
Georgios Pinitas932491f2018-09-21 16:33:15 +0100486 {
Georgios Pinitasc73e2b82018-11-08 13:33:16 +0000487 const int a_const_int = output_quant_info.quantize(act_info.a(), RoundingPolicy::TO_NEAREST_UP);
488 const int b_const_int = output_quant_info.quantize(act_info.b(), RoundingPolicy::TO_NEAREST_UP);
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100489
Georgios Pinitasc73e2b82018-11-08 13:33:16 +0000490 min_activation = act_info.activation() != ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU ? output_quant_info.offset : b_const_int;
491 max_activation = act_info.activation() == ActivationLayerInfo::ActivationFunction::RELU ? 255 : a_const_int;
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100492
493 // If the activation layer is RELU, BOUNDED_RELU or LU_BOUNDED_RELU, we can use the GEMMLowp output stage to perform this operation
494 is_activationlayer_enabled = false;
Georgios Pinitas932491f2018-09-21 16:33:15 +0100495 }
Gian Marco Iodice3139f032018-11-05 14:26:32 +0000496
497 // Set the GEMMLowp output stage info
498 gemmlowp_output_stage.gemmlowp_offset = output_quant_info.offset;
499 gemmlowp_output_stage.gemmlowp_multiplier = output_multiplier;
500 gemmlowp_output_stage.gemmlowp_shift = output_shift;
501 gemmlowp_output_stage.gemmlowp_min_bound = min_activation;
502 gemmlowp_output_stage.gemmlowp_max_bound = max_activation;
Georgios Pinitas19ea4192018-06-19 13:09:53 +0100503 }
504
Gian Marco Iodice3139f032018-11-05 14:26:32 +0000505 // In case of NHWC, we need to run GEMM3D (gemm_3d_depth != 0) in order to avoid reshaping the output matrix
506 const unsigned int gemm_3d_depth = (data_layout == DataLayout::NHWC) ? conv_h : 0;
507
Michele Di Giorgioebc3a902018-11-16 16:04:25 +0000508 ARM_COMPUTE_RETURN_ON_ERROR(validate_mm(gemm_input_to_use, weights_to_use, biases, gemm_output_to_use, gemmlowp_output_stage, gemm_3d_depth, skip_im2col, run_addition));
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100509
Georgios Pinitas19ea4192018-06-19 13:09:53 +0100510 // Validate Col2Im
Georgios Pinitas932491f2018-09-21 16:33:15 +0100511 if(!skip_col2im)
Georgios Pinitas19ea4192018-06-19 13:09:53 +0100512 {
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100513 ARM_COMPUTE_RETURN_ON_ERROR(CLCol2ImKernel::validate(gemm_output_to_use, output, Size2D(conv_w, conv_h), num_groups));
Georgios Pinitas19ea4192018-06-19 13:09:53 +0100514 }
515
Isabella Gottardi3f217ec2018-02-12 14:59:19 +0000516 //Validate Activation Layer
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100517 if(is_activationlayer_enabled)
Isabella Gottardi3f217ec2018-02-12 14:59:19 +0000518 {
Vidhya Sudhan Loganathanedf357c2018-04-27 14:25:30 +0100519 ARM_COMPUTE_RETURN_ON_ERROR(CLActivationLayer::validate(output, nullptr, act_info));
Isabella Gottardi3f217ec2018-02-12 14:59:19 +0000520 }
521
Georgios Pinitas78c00902018-01-09 17:33:11 +0000522 return Status{};
Isabella Gottardif07d28d2018-02-06 14:52:43 +0000523}
524
525void CLGEMMConvolutionLayer::run()
526{
Georgios Pinitase0437672018-05-02 14:07:55 +0100527 prepare();
Isabella Gottardif07d28d2018-02-06 14:52:43 +0000528
529 _memory_group.acquire();
530
531 // Run im2col
Georgios Pinitas19ea4192018-06-19 13:09:53 +0100532 if(!_skip_im2col)
533 {
534 CLScheduler::get().enqueue(_im2col_kernel);
535 }
Isabella Gottardif07d28d2018-02-06 14:52:43 +0000536
Georgios Pinitas78c00902018-01-09 17:33:11 +0000537 // Runs CLGEMM or CLGEMMLowpMatrixMultiplyCore functions
538 if(_is_quantized)
Isabella Gottardif07d28d2018-02-06 14:52:43 +0000539 {
Georgios Pinitas78c00902018-01-09 17:33:11 +0000540 // Run gemmlowp
541 _mm_gemmlowp.run();
Isabella Gottardif07d28d2018-02-06 14:52:43 +0000542 }
543 else
544 {
Georgios Pinitas78c00902018-01-09 17:33:11 +0000545 // Run gemm
546 _mm_gemm.run();
Isabella Gottardif07d28d2018-02-06 14:52:43 +0000547 }
548
Michele Di Giorgioebc3a902018-11-16 16:04:25 +0000549 if(_run_addition)
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100550 {
551 CLScheduler::get().enqueue(_add_bias_kernel);
552 }
553
Isabella Gottardif07d28d2018-02-06 14:52:43 +0000554 // Reshape output matrix
Georgios Pinitas932491f2018-09-21 16:33:15 +0100555 if(!_skip_col2im)
Georgios Pinitas19ea4192018-06-19 13:09:53 +0100556 {
Georgios Pinitas932491f2018-09-21 16:33:15 +0100557 CLScheduler::get().enqueue(_col2im_kernel, false);
Georgios Pinitas19ea4192018-06-19 13:09:53 +0100558 }
Isabella Gottardif07d28d2018-02-06 14:52:43 +0000559
Isabella Gottardi3f217ec2018-02-12 14:59:19 +0000560 //Run Activation Layer if enabled
561 if(_is_activationlayer_enabled)
562 {
563 _activationlayer_function.run();
564 }
565
Isabella Gottardif07d28d2018-02-06 14:52:43 +0000566 _memory_group.release();
Georgios Pinitase0437672018-05-02 14:07:55 +0100567}
Georgios Pinitas82b51482018-04-24 15:14:12 +0100568
Georgios Pinitase0437672018-05-02 14:07:55 +0100569void CLGEMMConvolutionLayer::prepare()
570{
571 if(!_is_prepared)
572 {
Georgios Pinitas72219332018-06-05 14:56:06 +0100573 ARM_COMPUTE_ERROR_ON(!_original_weights->is_used());
Georgios Pinitase0437672018-05-02 14:07:55 +0100574
Georgios Pinitas72219332018-06-05 14:56:06 +0100575 // Run weights reshaping and mark original weights tensor as unused
576 _weights_reshaped.allocator()->allocate();
577 _reshape_weights.run();
578 _original_weights->mark_as_unused();
579
580 // Prepare GEMM
581 _is_quantized ? _mm_gemmlowp.prepare() : _mm_gemm.prepare();
582 if(!_weights_reshaped.is_used())
Georgios Pinitase0437672018-05-02 14:07:55 +0100583 {
Georgios Pinitas72219332018-06-05 14:56:06 +0100584 _weights_reshaped.allocator()->free();
Georgios Pinitase0437672018-05-02 14:07:55 +0100585 }
586
587 CLScheduler::get().queue().finish();
588 _is_prepared = true;
589 }
Isabella Gottardif07d28d2018-02-06 14:52:43 +0000590}