blob: a39e4c51256ace7e7d42a8d5186701c45aa09892 [file] [log] [blame]
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +00001/*
George Wort2d7e6832019-02-22 16:37:41 +00002 * Copyright (c) 2017-2019 ARM Limited.
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +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/NEON/functions/NEGEMMConvolutionLayer.h"
25
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000026#include "arm_compute/core/Size2D.h"
27#include "arm_compute/core/Utils.h"
28#include "arm_compute/core/Validate.h"
Gian Marco Iodice597a8562018-08-01 15:06:06 +010029#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000030#include "arm_compute/core/utils/quantization/AsymmHelpers.h"
31#include "arm_compute/runtime/NEON/NEScheduler.h"
32#include "support/ToolchainSupport.h"
33
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000034#include <cmath>
Georgios Pinitas08346e92018-10-16 19:10:46 +010035#include <set>
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000036#include <tuple>
37
Gian Marco Iodice597a8562018-08-01 15:06:06 +010038using namespace arm_compute;
39using namespace arm_compute::misc::shape_calculator;
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000040
Gian Marco Iodice597a8562018-08-01 15:06:06 +010041NEConvolutionLayerReshapeWeights::NEConvolutionLayerReshapeWeights()
42 : _weights_reshape_kernel()
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000043{
44}
45
Gian Marco Iodice597a8562018-08-01 15:06:06 +010046void NEConvolutionLayerReshapeWeights::configure(const ITensor *weights, const ITensor *biases, ITensor *output)
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000047{
48 // Perform validation step
49 ARM_COMPUTE_ERROR_ON_NULLPTR(weights, output);
50 ARM_COMPUTE_ERROR_THROW_ON(NEConvolutionLayerReshapeWeights::validate(weights->info(),
51 (biases != nullptr) ? biases->info() : nullptr,
Gian Marco Iodice597a8562018-08-01 15:06:06 +010052 output->info()));
Gian Marco Iodice597a8562018-08-01 15:06:06 +010053 const bool append_biases = (biases != nullptr) && !is_data_type_quantized_asymmetric(weights->info()->data_type());
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000054 const ITensor *biases_to_use = (append_biases) ? biases : nullptr;
55
Gian Marco Iodice597a8562018-08-01 15:06:06 +010056 _weights_reshape_kernel.configure(weights, biases_to_use, output);
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000057
58 output->info()->set_quantization_info(weights->info()->quantization_info());
59}
60
Gian Marco Iodice597a8562018-08-01 15:06:06 +010061Status NEConvolutionLayerReshapeWeights::validate(const ITensorInfo *weights, const ITensorInfo *biases, const ITensorInfo *output)
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000062{
Gian Marco Iodice597a8562018-08-01 15:06:06 +010063 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(weights);
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010064 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(weights, 1, DataType::QASYMM8, DataType::F16, DataType::F32);
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000065 ARM_COMPUTE_RETURN_ERROR_ON(weights->num_dimensions() > 4);
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000066
Gian Marco Iodice597a8562018-08-01 15:06:06 +010067 if(biases != nullptr)
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000068 {
Gian Marco Iodice597a8562018-08-01 15:06:06 +010069 const int idx_kernels = get_data_layout_dimension_index(weights->data_layout(), DataLayoutDimension::BATCHES);
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000070 ARM_COMPUTE_RETURN_ERROR_ON(is_data_type_quantized_asymmetric(weights->data_type()));
71 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(weights, biases);
Gian Marco Iodice597a8562018-08-01 15:06:06 +010072 ARM_COMPUTE_RETURN_ERROR_ON(biases->dimension(0) != weights->dimension(idx_kernels));
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000073 ARM_COMPUTE_RETURN_ERROR_ON(biases->num_dimensions() > 1);
74 }
75
Gian Marco Iodice597a8562018-08-01 15:06:06 +010076 if((output != nullptr) && (output->total_size() != 0))
Michalis Spyroue2503892018-04-23 15:17:31 +010077 {
Gian Marco Iodice597a8562018-08-01 15:06:06 +010078 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(weights, output);
Michalis Spyroue2503892018-04-23 15:17:31 +010079
Gian Marco Iodice597a8562018-08-01 15:06:06 +010080 NEWeightsReshapeKernel::validate(weights, biases, output);
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000081 }
82
83 return Status{};
84}
85
86void NEConvolutionLayerReshapeWeights::run()
87{
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000088 NEScheduler::get().schedule(&_weights_reshape_kernel, 3);
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000089}
90
Michalis Spyrou1a569a32019-09-10 17:20:34 +010091NEGEMMConvolutionLayer::NEGEMMConvolutionLayer(const std::shared_ptr<IMemoryManager> &memory_manager, IWeightsManager *weights_manager)
92 : _memory_group(memory_manager), _weights_manager(weights_manager), _reshape_weights(), _reshape_weights_managed(), _im2col_kernel(), _mm_gemm(memory_manager), _mm_gemmlowp(memory_manager),
93 _col2im_kernel(), _activationlayer_function(), _add_bias_kernel(), _reshape_layer(), _original_weights(nullptr), _im2col_output(), _weights_reshaped(), _gemm_output(), _tmp_output(),
94 _data_layout(DataLayout::NCHW), _append_bias(false), _skip_im2col(false), _skip_col2im(false), _is_quantized(false), _is_activationlayer_enabled(false), _is_prepared(false)
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000095{
96}
97
George Wort2d7e6832019-02-22 16:37:41 +000098void NEGEMMConvolutionLayer::configure_mm(const ITensor *input, const ITensor *weights, const ITensor *biases, ITensor *output, const ActivationLayerInfo &act_info, int gemm_3d_depth)
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000099{
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100100 ARM_COMPUTE_ERROR_ON_NULLPTR(input, weights);
George Wort2d7e6832019-02-22 16:37:41 +0000101 ARM_COMPUTE_ERROR_THROW_ON(validate_mm(input->info(), weights->info(), biases == nullptr ? nullptr : biases->info(), output == nullptr ? nullptr : output->info(), act_info, gemm_3d_depth,
102 _skip_im2col));
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100103
Georgios Pinitasbb081ca2018-11-08 10:22:01 +0000104 const GEMMInfo &gemm_info = GEMMInfo(false, false, true /* Reshape weights only for the first run */,
105 gemm_3d_depth, _skip_im2col /* Reinterpret the input as 3D if im2col is skipped */);
106
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000107 if(_is_quantized)
108 {
109 // Since we need negative offsets for computing convolution, we need to change QuantizationInfo()
110 // Extract and negate input and weights offset
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100111 const UniformQuantizationInfo iqinfo = input->info()->quantization_info().uniform();
112 const UniformQuantizationInfo wqinfo = weights->info()->quantization_info().uniform();
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000113
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100114 input->info()->set_quantization_info(QuantizationInfo(iqinfo.scale, -iqinfo.offset));
115 weights->info()->set_quantization_info(QuantizationInfo(wqinfo.scale, -wqinfo.offset));
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000116
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100117 const UniformQuantizationInfo oqinfo = (output->info()->total_size() == 0) ? iqinfo : output->info()->quantization_info().uniform();
George Wort2d7e6832019-02-22 16:37:41 +0000118
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100119 float multiplier = iqinfo.scale * wqinfo.scale / oqinfo.scale;
Michalis Spyroua4f378d2019-04-26 14:54:54 +0100120 int output_multiplier;
121 int output_shift;
George Wort2d7e6832019-02-22 16:37:41 +0000122 quantization::calculate_quantized_multiplier_less_than_one(multiplier, &output_multiplier, &output_shift);
123
124 // Merge activation with output stage
125 int min_activation = 0;
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100126 int max_activation = 255;
George Wort2d7e6832019-02-22 16:37:41 +0000127
128 const std::set<ActivationLayerInfo::ActivationFunction> supported_acts = { ActivationLayerInfo::ActivationFunction::RELU,
129 ActivationLayerInfo::ActivationFunction::BOUNDED_RELU,
130 ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU
131 };
132 if(_is_activationlayer_enabled && supported_acts.count(act_info.activation()) != 0)
133 {
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100134 const int a_const_int = quantize_qasymm8(act_info.a(), oqinfo);
135 const int b_const_int = quantize_qasymm8(act_info.b(), oqinfo);
George Wort2d7e6832019-02-22 16:37:41 +0000136
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100137 min_activation = act_info.activation() != ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU ? oqinfo.offset : b_const_int;
George Wort2d7e6832019-02-22 16:37:41 +0000138 max_activation = act_info.activation() == ActivationLayerInfo::ActivationFunction::RELU ? 255 : a_const_int;
139
140 _is_activationlayer_enabled = false;
141 }
142
143 GEMMLowpOutputStageInfo output_info;
144 output_info.type = GEMMLowpOutputStageType::QUANTIZE_DOWN_FIXEDPOINT;
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100145 output_info.gemmlowp_offset = oqinfo.offset;
George Wort2d7e6832019-02-22 16:37:41 +0000146 output_info.gemmlowp_multiplier = output_multiplier;
147 output_info.gemmlowp_shift = output_shift;
148 output_info.gemmlowp_min_bound = min_activation;
149 output_info.gemmlowp_max_bound = max_activation;
150
151 _mm_gemmlowp.configure(input, weights, biases, output, GEMMInfo(false, false, true, gemm_3d_depth, _skip_im2col, false, output_info));
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000152
153 // Revert back QuantizatioInfo as input and weights could be used in other convolution layers
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100154 input->info()->set_quantization_info(QuantizationInfo(iqinfo.scale, iqinfo.offset));
155 weights->info()->set_quantization_info(QuantizationInfo(wqinfo.scale, wqinfo.offset));
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000156 }
157 else
158 {
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100159 // Configure matrix multiply function
Georgios Pinitasbb081ca2018-11-08 10:22:01 +0000160 _mm_gemm.configure(input, weights, nullptr, output, 1.0f, 0.0f, gemm_info);
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000161 }
162}
163
George Wort2d7e6832019-02-22 16:37:41 +0000164Status NEGEMMConvolutionLayer::validate_mm(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *biases, const ITensorInfo *output, const ActivationLayerInfo &act_info,
165 int gemm_3d_depth, bool skip_im2col)
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100166{
George Wort2d7e6832019-02-22 16:37:41 +0000167 const bool is_quantized = is_data_type_quantized_asymmetric(input->data_type());
168 const bool is_activation_enabled = act_info.enabled();
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100169
Georgios Pinitasbb081ca2018-11-08 10:22:01 +0000170 const GEMMInfo &gemm_info = GEMMInfo(false, false, true /* Reshape weights only for the first run */,
171 gemm_3d_depth, skip_im2col /* Reinterpret the input as 3D if im2col is skipped */);
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100172 if(is_quantized)
173 {
174 // Since we need negative offsets for computing convolution, we need to change QuantizationInfo()
175 // Extract and negate input and weights offset
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100176 const UniformQuantizationInfo iqinfo = input->quantization_info().uniform();
177 const UniformQuantizationInfo wqinfo = weights->quantization_info().uniform();
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100178
179 std::unique_ptr<ITensorInfo> input_qa = input->clone();
180 std::unique_ptr<ITensorInfo> weights_qa = weights->clone();
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100181 input_qa->set_quantization_info(QuantizationInfo(iqinfo.scale, -iqinfo.offset));
182 weights_qa->set_quantization_info(QuantizationInfo(wqinfo.scale, -wqinfo.offset));
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100183
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100184 const UniformQuantizationInfo oqinfo = (output->total_size() == 0) ? iqinfo : output->quantization_info().uniform();
George Wort2d7e6832019-02-22 16:37:41 +0000185
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100186 float multiplier = iqinfo.scale * wqinfo.scale / oqinfo.scale;
Michalis Spyroua4f378d2019-04-26 14:54:54 +0100187 int output_multiplier;
188 int output_shift;
Georgios Pinitas4d600c72019-07-30 15:09:10 +0100189 ARM_COMPUTE_RETURN_ON_ERROR(quantization::calculate_quantized_multiplier_less_than_one(multiplier, &output_multiplier, &output_shift));
George Wort2d7e6832019-02-22 16:37:41 +0000190
191 // Merge activation with output stage
192 int min_activation = 0;
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100193 int max_activation = 255;
George Wort2d7e6832019-02-22 16:37:41 +0000194
195 const std::set<ActivationLayerInfo::ActivationFunction> supported_acts = { ActivationLayerInfo::ActivationFunction::RELU,
196 ActivationLayerInfo::ActivationFunction::BOUNDED_RELU,
197 ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU
198 };
199 if(is_activation_enabled && supported_acts.count(act_info.activation()) != 0)
200 {
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100201 const int a_const_int = quantize_qasymm8(act_info.a(), oqinfo);
202 const int b_const_int = quantize_qasymm8(act_info.b(), oqinfo);
George Wort2d7e6832019-02-22 16:37:41 +0000203
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100204 min_activation = act_info.activation() != ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU ? oqinfo.offset : b_const_int;
George Wort2d7e6832019-02-22 16:37:41 +0000205 max_activation = act_info.activation() == ActivationLayerInfo::ActivationFunction::RELU ? 255 : a_const_int;
206 }
207
208 GEMMLowpOutputStageInfo output_info;
209 output_info.type = GEMMLowpOutputStageType::QUANTIZE_DOWN_FIXEDPOINT;
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100210 output_info.gemmlowp_offset = oqinfo.offset;
George Wort2d7e6832019-02-22 16:37:41 +0000211 output_info.gemmlowp_multiplier = output_multiplier;
212 output_info.gemmlowp_shift = output_shift;
213 output_info.gemmlowp_min_bound = min_activation;
214 output_info.gemmlowp_max_bound = max_activation;
215
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100216 // Perform validation step on GEMMLowp
George Wort2d7e6832019-02-22 16:37:41 +0000217 return NEGEMMLowpMatrixMultiplyCore::validate(input_qa.get(), weights_qa.get(), biases, output, GEMMInfo(false, false, true, gemm_3d_depth, skip_im2col, false, output_info));
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100218 }
219 else
220 {
221 // Perform validation step on Matrix multiply function
Gian Marco Iodicedb9d46d2018-08-08 12:29:38 +0100222 return NEGEMM::validate(input, weights, nullptr, output, 1.0f, 0.0f, gemm_info);
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100223 }
Gian Marco Iodicedb9d46d2018-08-08 12:29:38 +0100224}
225
George Wort2d7e6832019-02-22 16:37:41 +0000226Status NEGEMMConvolutionLayer::validate_gemm3d(const ITensorInfo *input_info, const ActivationLayerInfo &act_info, int gemm_3d_depth, bool skip_im2col)
Gian Marco Iodicedb9d46d2018-08-08 12:29:38 +0100227{
George Wort2d7e6832019-02-22 16:37:41 +0000228 const DataType data_type = input_info->data_type();
229 const unsigned int mult_y = skip_im2col ? 1U : gemm_3d_depth;
230 const unsigned int mult_z = skip_im2col ? gemm_3d_depth : 1U;
Gian Marco Iodicedb9d46d2018-08-08 12:29:38 +0100231
232 // Set dummy tensor shapes for the validation
George Wort2d7e6832019-02-22 16:37:41 +0000233 const TensorInfo dummy_input_info(TensorShape(4U, 4U * mult_y, 1U * mult_z), 1, data_type, input_info->quantization_info());
Gian Marco Iodicedb9d46d2018-08-08 12:29:38 +0100234 const TensorInfo dummy_weights_info(TensorShape(4U, 4U), 1, data_type);
George Wort2d7e6832019-02-22 16:37:41 +0000235 const TensorInfo dummy_output_info(TensorShape(4U, 4U, gemm_3d_depth), 1, data_type, input_info->quantization_info());
Gian Marco Iodicedb9d46d2018-08-08 12:29:38 +0100236
George Wort2d7e6832019-02-22 16:37:41 +0000237 return validate_mm(&dummy_input_info, &dummy_weights_info, nullptr, &dummy_output_info, act_info, gemm_3d_depth, skip_im2col);
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100238}
239
Alex Gilday7da29b62018-03-23 14:16:00 +0000240void NEGEMMConvolutionLayer::configure(const ITensor *input, const ITensor *weights, const ITensor *biases, ITensor *output, const PadStrideInfo &conv_info, const WeightsInfo &weights_info,
Gian Marco Iodice916d1bc2018-08-13 11:20:41 +0100241 const Size2D &dilation, const ActivationLayerInfo &act_info, unsigned int num_groups)
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000242{
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000243 ARM_COMPUTE_ERROR_ON_NULLPTR(input, weights, output);
Gian Marco Iodice916d1bc2018-08-13 11:20:41 +0100244 ARM_COMPUTE_UNUSED(num_groups);
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100245 ARM_COMPUTE_ERROR_THROW_ON(NEGEMMConvolutionLayer::validate(input->info(),
246 weights->info(),
247 biases != nullptr ? biases->info() : nullptr,
248 output->info(),
249 conv_info,
250 weights_info,
251 dilation,
Gian Marco Iodice916d1bc2018-08-13 11:20:41 +0100252 act_info,
253 num_groups));
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000254
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100255 const DataType data_type = input->info()->data_type();
256 const DataLayout data_layout = input->info()->data_layout();
257 const int idx_width = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
258 const int idx_height = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT);
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100259 const int idx_kernels = get_data_layout_dimension_index(data_layout, DataLayoutDimension::BATCHES);
Michalis Spyroue2503892018-04-23 15:17:31 +0100260
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100261 const unsigned int kernel_width = weights->info()->dimension(idx_width);
262 const unsigned int kernel_height = weights->info()->dimension(idx_height);
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000263
Georgios Pinitas08346e92018-10-16 19:10:46 +0100264 _is_prepared = weights_info.retain_internal_weights();
265 _original_weights = weights;
266 _is_quantized = is_data_type_quantized_asymmetric(input->info()->data_type());
267 _data_layout = data_layout;
268 _skip_im2col = (data_layout == DataLayout::NHWC && kernel_width == 1 && kernel_height == 1 && conv_info.stride().first == 1 && conv_info.stride().second == 1);
Georgios Pinitas08346e92018-10-16 19:10:46 +0100269 _append_bias = (biases != nullptr) && (!_is_quantized);
270 _is_activationlayer_enabled = act_info.enabled();
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000271
George Wort2d7e6832019-02-22 16:37:41 +0000272 const ITensor *gemm_input_to_use = input;
273 ITensor *gemm_output_to_use = output;
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000274
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100275 // Get convolved dimensions
276 unsigned int conv_w = 0;
277 unsigned int conv_h = 0;
278 std::tie(conv_w, conv_h) = scaled_dimensions(input->info()->dimension(idx_width),
279 input->info()->dimension(idx_height),
280 kernel_width,
281 kernel_height,
282 conv_info,
283 dilation);
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000284
Gian Marco Iodicedb9d46d2018-08-08 12:29:38 +0100285 // Check if GEMM3D is supported
Georgios Pinitase413d252018-11-14 18:29:58 +0000286 if(data_layout == DataLayout::NHWC)
Gian Marco Iodicedb9d46d2018-08-08 12:29:38 +0100287 {
George Wort2d7e6832019-02-22 16:37:41 +0000288 _skip_col2im = bool(validate_gemm3d(input->info(), act_info, conv_h, true));
Gian Marco Iodicedb9d46d2018-08-08 12:29:38 +0100289 // If not supported, we need to perform im2col and col2im (or reshape layer)
Georgios Pinitase413d252018-11-14 18:29:58 +0000290 if(!_skip_col2im)
Gian Marco Iodicedb9d46d2018-08-08 12:29:38 +0100291 {
292 _skip_im2col = false;
Gian Marco Iodicedb9d46d2018-08-08 12:29:38 +0100293 }
294 }
Georgios Pinitase413d252018-11-14 18:29:58 +0000295 else
296 {
297 _skip_col2im = false;
298 }
Gian Marco Iodicedb9d46d2018-08-08 12:29:38 +0100299
Gian Marco Iodicedb9d46d2018-08-08 12:29:38 +0100300 const ITensor *biases_to_use = (_append_bias && !_skip_im2col) ? biases : nullptr;
301
302 // Get parameters from conv_info
303 unsigned int stride_x = 0;
304 unsigned int stride_y = 0;
305 std::tie(stride_x, stride_y) = conv_info.stride();
306
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100307 unsigned int mat_weights_cols = weights->info()->dimension(idx_kernels);
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000308
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100309 // _weights_reshaped will be auto configured in the kernel.
310 // Just append biases and do not transpose 1xW as it will be reshaped in NEGEMM
Michalis Spyrou1a569a32019-09-10 17:20:34 +0100311 const ITensor *weights_to_use = weights;
312
313 if(_weights_manager && _weights_manager->are_weights_managed(weights))
314 {
315 _reshape_weights_managed.configure(weights, biases_to_use);
316 weights_to_use = _weights_manager->acquire(weights, &_reshape_weights_managed);
317 }
318 else
319 {
320 _reshape_weights.configure(weights, biases_to_use, &_weights_reshaped);
321 weights_to_use = &_weights_reshaped;
322 }
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100323
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100324 // Create tensor to store im2col reshaped inputs
Michalis Spyroue2503892018-04-23 15:17:31 +0100325 if(!_skip_im2col)
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000326 {
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100327 _memory_group.manage(&_im2col_output);
Michalis Spyroue2503892018-04-23 15:17:31 +0100328
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100329 // Configure
Giorgio Arena0f170392018-07-18 16:13:12 +0100330 _im2col_kernel.configure(input, &_im2col_output, Size2D(kernel_width, kernel_height), conv_info, _append_bias, dilation);
Michalis Spyroue2503892018-04-23 15:17:31 +0100331
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100332 // Update GEMM input
333 gemm_input_to_use = &_im2col_output;
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000334 }
Michalis Spyroue2503892018-04-23 15:17:31 +0100335 else if(_append_bias)
336 {
337 // Configure add bias kernel
338 _add_bias_kernel.configure(output, biases, output, ConvertPolicy::SATURATE);
339 }
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000340
Gian Marco Iodicedb9d46d2018-08-08 12:29:38 +0100341 // Create temporary GEMM output tensor in case we cannot skip col2im
George Wort2d7e6832019-02-22 16:37:41 +0000342 if(!_skip_col2im)
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000343 {
George Wort2d7e6832019-02-22 16:37:41 +0000344 TensorShape shape_gemm;
Georgios Pinitasbb081ca2018-11-08 10:22:01 +0000345
George Wort2d7e6832019-02-22 16:37:41 +0000346 // Calculate GEMM output shape
347 shape_gemm = _im2col_output.info()->tensor_shape();
348 shape_gemm.set(0, mat_weights_cols);
349 shape_gemm.set(1, conv_w * conv_h);
Georgios Pinitasbb081ca2018-11-08 10:22:01 +0000350
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100351 // FIXME: input->clone() doesn't work with subtensors for grouped convolutions.
George Wort2d7e6832019-02-22 16:37:41 +0000352 TensorInfo info_gemm(shape_gemm, 1, data_type);
Georgios Pinitas041f36d2018-09-18 18:38:37 +0100353 info_gemm.set_quantization_info(output->info()->quantization_info()).set_data_layout(input->info()->data_layout());
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100354 _gemm_output.allocator()->init(info_gemm);
355 _memory_group.manage(&_gemm_output);
356
357 // Update GEMM output
358 gemm_output_to_use = &_gemm_output;
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000359 }
360
Gian Marco Iodicedb9d46d2018-08-08 12:29:38 +0100361 // Configure GEMM
Gian Marco Iodice3139f032018-11-05 14:26:32 +0000362 // In case we need to skip col2im, GEMM3D (gemm_3d_depth != 0) must be called in order to avoid reshaping the output matrix
363 const unsigned int gemm_3d_depth = _skip_col2im ? conv_h : 0;
Michalis Spyrou1a569a32019-09-10 17:20:34 +0100364 configure_mm(gemm_input_to_use, weights_to_use, biases, gemm_output_to_use, act_info, gemm_3d_depth);
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100365
Michalis Spyroue2503892018-04-23 15:17:31 +0100366 if(!_skip_im2col)
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000367 {
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100368 _im2col_output.allocator()->allocate();
369 }
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000370
Georgios Pinitase413d252018-11-14 18:29:58 +0000371 if(!_skip_col2im)
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100372 {
Georgios Pinitase413d252018-11-14 18:29:58 +0000373 if(_data_layout == DataLayout::NCHW)
374 {
375 // Configure col2im
George Wort2d7e6832019-02-22 16:37:41 +0000376 _col2im_kernel.configure(gemm_output_to_use, output, Size2D(conv_w, conv_h));
Georgios Pinitase413d252018-11-14 18:29:58 +0000377 }
378 else
379 {
380 // Configure reshape layer
George Wort2d7e6832019-02-22 16:37:41 +0000381 _reshape_layer.configure(gemm_output_to_use, output);
Georgios Pinitase413d252018-11-14 18:29:58 +0000382 }
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100383 }
384
Georgios Pinitase413d252018-11-14 18:29:58 +0000385 if(_is_quantized && !_skip_col2im)
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100386 {
387 _tmp_output.allocator()->allocate();
Gian Marco Iodicedb9d46d2018-08-08 12:29:38 +0100388 }
389
Georgios Pinitasbb081ca2018-11-08 10:22:01 +0000390 if(!_skip_col2im || _is_quantized)
Gian Marco Iodicedb9d46d2018-08-08 12:29:38 +0100391 {
Michalis Spyroue2503892018-04-23 15:17:31 +0100392 _gemm_output.allocator()->allocate();
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000393 }
394
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100395 ARM_COMPUTE_ERROR_ON_MSG((output->info()->dimension(idx_width) != conv_w) || (output->info()->dimension(idx_height) != conv_h),
396 "Output shape does not match the expected one");
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000397
Georgios Pinitas08346e92018-10-16 19:10:46 +0100398 // Configure Activation Layer
Isabella Gottardi3f217ec2018-02-12 14:59:19 +0000399 if(_is_activationlayer_enabled)
400 {
401 _activationlayer_function.configure(output, nullptr, act_info);
402 }
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100403
404 ARM_COMPUTE_UNUSED(weights_info);
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000405}
406
407Status NEGEMMConvolutionLayer::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 +0100408 const WeightsInfo &weights_info, const Size2D &dilation, const ActivationLayerInfo &act_info, unsigned int num_groups)
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000409{
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100410 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, weights, output);
411 ARM_COMPUTE_RETURN_ERROR_ON_MSG(weights_info.are_reshaped(), "Weights already reshaped are not supported!");
412 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::QASYMM8, DataType::F16, DataType::F32);
413 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, weights);
414 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_LAYOUT(input, weights);
Gian Marco Iodice916d1bc2018-08-13 11:20:41 +0100415 ARM_COMPUTE_RETURN_ERROR_ON_MSG(num_groups > 1, "Grouping (num_groups != 1) is not supported on NEON");
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000416
Michalis Spyroue2503892018-04-23 15:17:31 +0100417 const DataLayout data_layout = input->data_layout();
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100418 const DataType data_type = input->data_type();
Michalis Spyroue2503892018-04-23 15:17:31 +0100419 const int idx_width = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
420 const int idx_height = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT);
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100421 const int idx_channel = get_data_layout_dimension_index(data_layout, DataLayoutDimension::CHANNEL);
422 const int idx_kernels = get_data_layout_dimension_index(data_layout, DataLayoutDimension::BATCHES);
Michalis Spyroue2503892018-04-23 15:17:31 +0100423
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100424 const unsigned int kernel_width = weights->dimension(idx_width);
425 const unsigned int kernel_height = weights->dimension(idx_height);
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000426
Michalis Spyroua4f378d2019-04-26 14:54:54 +0100427 TensorInfo im2col_reshaped_info{};
428 TensorInfo info_gemm{};
429 TensorInfo tmp_info{};
430 TensorInfo weights_reshaped_info{};
George Wort2d7e6832019-02-22 16:37:41 +0000431 const ITensorInfo *gemm_input_to_use = input;
432 const ITensorInfo *gemm_output_to_use = output;
433 const ITensorInfo *weights_to_use = weights;
Ioan-Cristian Szabob4e3e1c2017-11-30 17:17:17 +0000434
Georgios Pinitas08346e92018-10-16 19:10:46 +0100435 const bool is_quantized = is_data_type_quantized_asymmetric(data_type);
436 const bool append_bias = (biases != nullptr) && (!is_quantized);
437 bool skip_im2col = (data_layout == DataLayout::NHWC && kernel_width == 1 && kernel_height == 1 && conv_info.stride().first == 1 && conv_info.stride().second == 1);
Georgios Pinitas08346e92018-10-16 19:10:46 +0100438 bool is_activation_enabled = act_info.enabled();
Gian Marco Iodicedb9d46d2018-08-08 12:29:38 +0100439
440 // Get convolved dimensions
441 unsigned int conv_w = 0;
442 unsigned int conv_h = 0;
443
444 std::tie(conv_w, conv_h) = scaled_dimensions(input->dimension(idx_width),
445 input->dimension(idx_height),
446 kernel_width,
447 kernel_height,
448 conv_info,
449 dilation);
450
451 // Check if GEMM3D is supported
Georgios Pinitase413d252018-11-14 18:29:58 +0000452 bool skip_col2im = false;
453 if(data_layout == DataLayout::NHWC)
454 {
George Wort2d7e6832019-02-22 16:37:41 +0000455 skip_col2im = bool(validate_gemm3d(input, act_info, conv_h, true));
Georgios Pinitase413d252018-11-14 18:29:58 +0000456 // If not supported, we need to perform im2col and col2im (or reshape layer)
457 if(!skip_col2im)
458 {
459 skip_im2col = false;
460 }
461 }
462
Gian Marco Iodicedb9d46d2018-08-08 12:29:38 +0100463 if(skip_col2im)
464 {
465 // If not supported, we need to perform im2col and col2im (or reshape layer)
George Wort2d7e6832019-02-22 16:37:41 +0000466 if(!bool(validate_gemm3d(input, act_info, conv_h, skip_im2col)))
Gian Marco Iodicedb9d46d2018-08-08 12:29:38 +0100467 {
468 skip_im2col = false;
469 skip_col2im = false;
470 }
471 }
472
473 const unsigned bias_element = (append_bias && !skip_im2col) ? 1 : 0;
474 const ITensorInfo *biases_to_use = (append_bias && !skip_im2col) ? biases : nullptr;
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000475
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100476 ARM_COMPUTE_RETURN_ERROR_ON(weights->dimension(idx_channel) != input->dimension(idx_channel));
477 ARM_COMPUTE_RETURN_ERROR_ON(weights->num_dimensions() > 4);
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000478
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100479 // Validate biases
480 if(biases != nullptr)
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000481 {
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100482 if(is_quantized)
483 {
484 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(biases, 1, DataType::S32);
485 }
486 else
487 {
488 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, biases);
489 }
490 ARM_COMPUTE_RETURN_ERROR_ON(biases->dimension(0) != weights->dimension(idx_kernels));
491 ARM_COMPUTE_RETURN_ERROR_ON(biases->num_dimensions() > 1);
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000492 }
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000493
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100494 if(act_info.enabled())
495 {
496 ARM_COMPUTE_ERROR_ON(act_info.b() > act_info.a());
497 }
498
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100499 unsigned int mat_weights_cols = weights->dimension(idx_kernels);
500 unsigned int mat_weights_rows = weights->dimension(idx_width) * weights->dimension(idx_height) * weights->dimension(idx_channel) + bias_element;
501
502 // Output tensor auto inizialization if not yet initialized
Gian Marco Iodicedb9d46d2018-08-08 12:29:38 +0100503 ARM_COMPUTE_RETURN_ON_ERROR(NEConvolutionLayerReshapeWeights::validate(weights, biases_to_use, nullptr));
504 weights_reshaped_info = TensorInfo(compute_weights_reshaped_shape(*weights, (append_bias && !skip_im2col)), 1, data_type);
Georgios Pinitas4d600c72019-07-30 15:09:10 +0100505 weights_reshaped_info.set_quantization_info(weights->quantization_info());
Michalis Spyrou1a569a32019-09-10 17:20:34 +0100506 weights_to_use = &weights_reshaped_info;
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100507
Michalis Spyroue2503892018-04-23 15:17:31 +0100508 if(!skip_im2col)
509 {
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100510 // Create tensor info for im2col reshaped inputs
511 // For NEON the batch size is on the fourth dimension
Gian Marco Iodicedb9d46d2018-08-08 12:29:38 +0100512 // TODO (giaiod01): Auto-initialize the output shape of im2col COMPMID-1482
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100513 TensorShape shape_im2col = input->tensor_shape();
514 shape_im2col.set(0, mat_weights_rows);
515 shape_im2col.set(1, conv_w * conv_h);
516 shape_im2col.set(2, 1);
517
518 im2col_reshaped_info = TensorInfo(shape_im2col, 1, data_type);
519 im2col_reshaped_info.set_quantization_info(input->quantization_info());
520
Giorgio Arena0f170392018-07-18 16:13:12 +0100521 ARM_COMPUTE_RETURN_ON_ERROR(NEIm2ColKernel::validate(input, &im2col_reshaped_info, Size2D(kernel_width, kernel_height), conv_info, append_bias, dilation));
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100522 gemm_input_to_use = &im2col_reshaped_info;
Michalis Spyroue2503892018-04-23 15:17:31 +0100523 }
524 else if(append_bias)
525 {
526 // Validate add bias kernel
527 ARM_COMPUTE_RETURN_ON_ERROR(NEArithmeticAdditionKernel::validate(output, biases, output, ConvertPolicy::SATURATE));
528 }
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000529
Gian Marco Iodicedb9d46d2018-08-08 12:29:38 +0100530 // Create temporary GEMM output tensor in case we cannot skip col2im
531 if(!skip_col2im)
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000532 {
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100533 TensorShape shape_gemm = gemm_input_to_use->tensor_shape();
534 shape_gemm.set(0, mat_weights_cols);
535 shape_gemm.set(1, conv_w * conv_h);
George Wort2d7e6832019-02-22 16:37:41 +0000536 info_gemm = TensorInfo(shape_gemm, 1, data_type);
Michalis Spyroue2503892018-04-23 15:17:31 +0100537 }
Georgios Pinitasbb081ca2018-11-08 10:22:01 +0000538 else
539 {
George Wort2d7e6832019-02-22 16:37:41 +0000540 info_gemm = TensorInfo(output->tensor_shape(), 1, data_type);
Georgios Pinitasbb081ca2018-11-08 10:22:01 +0000541 }
542 info_gemm.set_quantization_info(output->quantization_info()).set_data_layout(input->data_layout());
543 gemm_output_to_use = &info_gemm;
George Wort2d7e6832019-02-22 16:37:41 +0000544 ARM_COMPUTE_RETURN_ON_ERROR(validate_mm(gemm_input_to_use, weights_to_use, biases, gemm_output_to_use, act_info, skip_col2im ? conv_h : 0, skip_im2col));
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100545
Gian Marco Iodicedb9d46d2018-08-08 12:29:38 +0100546 // Validate Col2Im/ReshapeLayer
547 if(!skip_col2im && (data_layout == DataLayout::NCHW))
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100548 {
George Wort2d7e6832019-02-22 16:37:41 +0000549 ARM_COMPUTE_RETURN_ON_ERROR(NECol2ImKernel::validate(gemm_output_to_use, output, Size2D(conv_w, conv_h)));
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100550 }
551
552 //Validate Activation Layer
Georgios Pinitas08346e92018-10-16 19:10:46 +0100553 if(is_activation_enabled)
Isabella Gottardi3f217ec2018-02-12 14:59:19 +0000554 {
555 ARM_COMPUTE_RETURN_ON_ERROR(NEActivationLayer::validate(output, nullptr, act_info));
556 }
557
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000558 return Status{};
559}
560
561void NEGEMMConvolutionLayer::run()
562{
Georgios Pinitas72219332018-06-05 14:56:06 +0100563 prepare();
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000564
Georgios Pinitasda953f22019-04-02 17:27:03 +0100565 MemoryGroupResourceScope scope_mg(_memory_group);
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000566
Michalis Spyroue2503892018-04-23 15:17:31 +0100567 if(!_skip_im2col)
568 {
569 // Run input reshaping
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100570 unsigned int y_dim = get_data_layout_dimension_index(_data_layout, DataLayoutDimension::HEIGHT);
571 NEScheduler::get().schedule(&_im2col_kernel, y_dim);
Michalis Spyroue2503892018-04-23 15:17:31 +0100572 }
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000573
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100574 // Runs NEGEMM or NEGEMMLowpMatrixMultiplyCore functions
575 if(_is_quantized)
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000576 {
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100577 // Run gemmlowp
578 _mm_gemmlowp.run();
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000579 }
580 else
581 {
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100582 // Run gemm
583 _mm_gemm.run();
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000584 }
585
Michalis Spyroue2503892018-04-23 15:17:31 +0100586 if(_skip_im2col && _append_bias)
587 {
588 NEScheduler::get().schedule(&_add_bias_kernel, Window::DimY);
589 }
590
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000591 // Reshape output matrix
Georgios Pinitase413d252018-11-14 18:29:58 +0000592 if(!_skip_col2im)
Michalis Spyroue2503892018-04-23 15:17:31 +0100593 {
Georgios Pinitase413d252018-11-14 18:29:58 +0000594 if(_data_layout == DataLayout::NCHW)
595 {
596 NEScheduler::get().schedule(&_col2im_kernel, Window::DimY);
597 }
598 else
599 {
600 _reshape_layer.run();
601 }
Michalis Spyroue2503892018-04-23 15:17:31 +0100602 }
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000603
Isabella Gottardi3f217ec2018-02-12 14:59:19 +0000604 if(_is_activationlayer_enabled)
605 {
606 _activationlayer_function.run();
607 }
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000608}
Georgios Pinitas72219332018-06-05 14:56:06 +0100609
610void NEGEMMConvolutionLayer::prepare()
611{
612 if(!_is_prepared)
613 {
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100614 ARM_COMPUTE_ERROR_ON(!_original_weights->is_used());
Georgios Pinitas72219332018-06-05 14:56:06 +0100615
Michalis Spyrou1a569a32019-09-10 17:20:34 +0100616 if(_weights_manager && _weights_manager->are_weights_managed(_original_weights))
617 {
618 _weights_manager->run(_original_weights, &_reshape_weights_managed);
619 }
620 else
621 {
622 // Run weights reshaping and mark original weights tensor as unused
623 _weights_reshaped.allocator()->allocate();
624 _reshape_weights.run();
625 _original_weights->mark_as_unused();
626 }
Georgios Pinitas72219332018-06-05 14:56:06 +0100627
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100628 // Prepare GEMM
629 _is_quantized ? _mm_gemmlowp.prepare() : _mm_gemm.prepare();
Georgios Pinitas72219332018-06-05 14:56:06 +0100630 if(!_weights_reshaped.is_used())
631 {
632 _weights_reshaped.allocator()->free();
633 }
634
635 _is_prepared = true;
636 }
637}