blob: 9b7de8df1bc34de6331e664651a19a0d18e03489 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Sang-Hoon Parkb66aa3b2020-01-10 14:44:13 +00002 * Copyright (c) 2017-2020 ARM Limited.
Anthony Barbier6ff3b192017-09-04 18:44:23 +01003 *
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/CLFullyConnectedLayer.h"
25
Gian Marco Iodice13edbff2017-06-26 17:20:16 +010026#include "arm_compute/core/Size2D.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010027#include "arm_compute/core/Validate.h"
Michalis Spyroub27e13a2019-09-27 11:04:27 +010028#include "arm_compute/core/utils/misc/Cast.h"
Georgios Pinitas358ca202017-12-07 16:47:52 +000029#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Georgios Pinitas45bcc3a2017-11-29 11:06:49 +000030#include "arm_compute/core/utils/quantization/AsymmHelpers.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010031#include "arm_compute/runtime/CL/CLScheduler.h"
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +010032#include "support/ToolchainSupport.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010033
34#include <algorithm>
Anthony Barbier6ff3b192017-09-04 18:44:23 +010035
Michalis Spyroub27e13a2019-09-27 11:04:27 +010036namespace arm_compute
37{
Georgios Pinitas358ca202017-12-07 16:47:52 +000038using namespace arm_compute::misc::shape_calculator;
Michalis Spyroub27e13a2019-09-27 11:04:27 +010039using namespace arm_compute::utils::cast;
Georgios Pinitas358ca202017-12-07 16:47:52 +000040
41namespace
42{
Georgios Pinitas8b721992019-10-28 16:24:28 +000043Status construct_gemmlowp_output_stage(const ITensorInfo &input, const ITensorInfo &weights, const ITensorInfo &output,
Giorgio Arena1856ff72020-02-07 13:46:45 +000044 GEMMLowpOutputStageInfo &gemmlowp_output_stage, ActivationLayerInfo activation_info)
Georgios Pinitas358ca202017-12-07 16:47:52 +000045{
Georgios Pinitas8b721992019-10-28 16:24:28 +000046 gemmlowp_output_stage.type = GEMMLowpOutputStageType::QUANTIZE_DOWN_FIXEDPOINT;
47 gemmlowp_output_stage.gemmlowp_offset = 0;
48 gemmlowp_output_stage.gemmlowp_multiplier = 0;
49 gemmlowp_output_stage.gemmlowp_shift = 0;
50
Sang-Hoon Parkb66aa3b2020-01-10 14:44:13 +000051 const auto data_type = input.data_type();
52
Georgios Pinitas8b721992019-10-28 16:24:28 +000053 // Configure output stage for quantized case
Sang-Hoon Parkb66aa3b2020-01-10 14:44:13 +000054 if(is_data_type_quantized_asymmetric(data_type))
Georgios Pinitas8b721992019-10-28 16:24:28 +000055 {
Giorgio Arena1856ff72020-02-07 13:46:45 +000056 const QuantizationInfo oq_info = output.quantization_info();
57 const UniformQuantizationInfo iq_unif = input.quantization_info().uniform();
58 const UniformQuantizationInfo wq_unif = weights.quantization_info().uniform();
59 const UniformQuantizationInfo oq_unif = oq_info.uniform();
Georgios Pinitas8b721992019-10-28 16:24:28 +000060
Giorgio Arena1856ff72020-02-07 13:46:45 +000061 const auto output_quant_info = (output.total_size() == 0) ? iq_unif : oq_unif;
Georgios Pinitas8b721992019-10-28 16:24:28 +000062
Giorgio Arena1856ff72020-02-07 13:46:45 +000063 const float multiplier = (iq_unif.scale * wq_unif.scale) / output_quant_info.scale;
Georgios Pinitas8b721992019-10-28 16:24:28 +000064 int output_multiplier = 0;
65 int output_shift = 0;
Michele Di Giorgio14cbfb22019-10-23 10:53:10 +010066 ARM_COMPUTE_RETURN_ON_ERROR(quantization::calculate_quantized_multiplier(multiplier, &output_multiplier, &output_shift));
Georgios Pinitas8b721992019-10-28 16:24:28 +000067
Sang-Hoon Parkb66aa3b2020-01-10 14:44:13 +000068 PixelValue type_min{};
69 PixelValue type_max{};
70 std::tie(type_min, type_max) = get_min_max(data_type);
71
Giorgio Arena1856ff72020-02-07 13:46:45 +000072 if(activation_info.enabled())
73 {
74 switch(activation_info.activation())
75 {
76 case ActivationLayerInfo::ActivationFunction::RELU:
77 type_min = PixelValue(oq_unif.offset);
78 break;
79 case ActivationLayerInfo::ActivationFunction::BOUNDED_RELU:
80 type_min = PixelValue(oq_unif.offset);
81 type_max = PixelValue(activation_info.a(), data_type, oq_info);
82 break;
83 case ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU:
84 type_min = PixelValue(activation_info.b(), data_type, oq_info);
85 type_max = PixelValue(activation_info.a(), data_type, oq_info);
86 break;
87 default:
88 ARM_COMPUTE_ERROR("Activation function not supported.");
89 break;
90 }
91 }
92
Georgios Pinitas8b721992019-10-28 16:24:28 +000093 // Set the GEMMLowp output stage info
94 gemmlowp_output_stage.gemmlowp_offset = output_quant_info.offset;
95 gemmlowp_output_stage.gemmlowp_multiplier = output_multiplier;
96 gemmlowp_output_stage.gemmlowp_shift = output_shift;
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +000097 gemmlowp_output_stage.gemmlowp_multipliers.push_back(output_multiplier);
98 gemmlowp_output_stage.gemmlowp_shifts.push_back(output_shift);
Sang-Hoon Parkb66aa3b2020-01-10 14:44:13 +000099 type_min.get(gemmlowp_output_stage.gemmlowp_min_bound);
100 type_max.get(gemmlowp_output_stage.gemmlowp_max_bound);
Georgios Pinitas8b721992019-10-28 16:24:28 +0000101 }
102
103 return Status{};
104}
105
Georgios Pinitas44bfc3f2019-10-28 14:16:31 +0000106Status validate_mm(const ITensorInfo &input, const ITensorInfo &weights, const ITensorInfo *bias, const ITensorInfo &output, const FullyConnectedLayerInfo &fc_info)
Georgios Pinitas8b721992019-10-28 16:24:28 +0000107{
108 GEMMLowpOutputStageInfo gemmlowp_output_stage;
Giorgio Arena1856ff72020-02-07 13:46:45 +0000109 ARM_COMPUTE_RETURN_ON_ERROR(construct_gemmlowp_output_stage(input, weights, output, gemmlowp_output_stage, fc_info.activation_info));
Georgios Pinitas8b721992019-10-28 16:24:28 +0000110
Georgios Pinitas44bfc3f2019-10-28 14:16:31 +0000111 const GEMMInfo &gemm_info = GEMMInfo(false, // is_a_reshaped
112 false, // is_b_reshaped
113 true, // reshape_b_only_on_first_run
114 0, // depth_output_gemm3d
115 false, // reinterpret_input_as_3d
116 fc_info.retain_internal_weights, // retain_internal_weights
117 gemmlowp_output_stage, // gemmlowp_output_stage
118 fc_info.fp_mixed_precision, // fp_mixed_precision
119 true, // broadcast_bias
120 ActivationLayerInfo()); // activation_info
Georgios Pinitas8b721992019-10-28 16:24:28 +0000121
Georgios Pinitas358ca202017-12-07 16:47:52 +0000122 if(is_data_type_quantized_asymmetric(input.data_type()))
123 {
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100124 const UniformQuantizationInfo iq_info = input.quantization_info().uniform();
125 const UniformQuantizationInfo wq_info = weights.quantization_info().uniform();
126
Georgios Pinitas358ca202017-12-07 16:47:52 +0000127 // Since we need negative offsets for computing convolution, we need to change QuantizationInfo()
128 // Extract and negate input and weights offset
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100129 const QuantizationInfo input_quantization_info(iq_info.scale, -iq_info.offset);
130 const QuantizationInfo weights_quantization_info(wq_info.scale, -wq_info.offset);
Georgios Pinitas358ca202017-12-07 16:47:52 +0000131
132 // Validate gemmlowp function
133 ARM_COMPUTE_RETURN_ON_ERROR(CLGEMMLowpMatrixMultiplyCore::validate(&input.clone()->set_quantization_info(input_quantization_info),
134 &weights.clone()->set_quantization_info(weights_quantization_info),
Georgios Pinitas8b721992019-10-28 16:24:28 +0000135 bias,
136 &output,
137 gemm_info));
Georgios Pinitas358ca202017-12-07 16:47:52 +0000138 }
139 else
140 {
Georgios Pinitas8b721992019-10-28 16:24:28 +0000141 ARM_COMPUTE_RETURN_ON_ERROR(CLGEMM::validate(&input, &weights, bias, &output, 1.f, 1.f, gemm_info));
Georgios Pinitas358ca202017-12-07 16:47:52 +0000142 }
143
144 return Status{};
145}
146} // namespace
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100147
148void CLFullyConnectedLayerReshapeWeights::configure(const ICLTensor *input, ICLTensor *output)
Moritz Pflanzer768e9f12017-08-11 15:33:30 +0100149{
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100150 auto k = arm_compute::support::cpp14::make_unique<CLTransposeKernel>();
151 k->configure(input, output);
152 _kernel = std::move(k);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100153}
154
Georgios Pinitas358ca202017-12-07 16:47:52 +0000155Status CLFullyConnectedLayerReshapeWeights::validate(const ITensorInfo *input, const ITensorInfo *output)
156{
157 return CLTransposeKernel::validate(input, output);
158}
159
Michalis Spyrou1a569a32019-09-10 17:20:34 +0100160CLFullyConnectedLayer::CLFullyConnectedLayer(std::shared_ptr<IMemoryManager> memory_manager, IWeightsManager *weights_manager)
Michalis Spyroub27e13a2019-09-27 11:04:27 +0100161 : _memory_group(memory_manager), _weights_manager(weights_manager), _convert_weights(), _convert_weights_managed(), _reshape_weights_managed_function(), _flatten_layer(), _reshape_weights_function(),
Georgios Pinitas8b721992019-10-28 16:24:28 +0000162 _mm_gemm(memory_manager, weights_manager), _mm_gemmlowp(memory_manager), _flatten_output(), _converted_weights_output(), _reshape_weights_output(), _are_weights_converted(true),
163 _are_weights_reshaped(true), _is_fc_after_conv(true), _is_quantized(false), _is_prepared(false), _original_weights(nullptr)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100164{
165}
Georgios Pinitas44bfc3f2019-10-28 14:16:31 +0000166void CLFullyConnectedLayer::configure_mm(const ICLTensor *input, const ICLTensor *weights, const ICLTensor *bias, ICLTensor *output, const FullyConnectedLayerInfo &fc_info)
Georgios Pinitas45bcc3a2017-11-29 11:06:49 +0000167{
Georgios Pinitas8b721992019-10-28 16:24:28 +0000168 GEMMLowpOutputStageInfo gemmlowp_output_stage;
Giorgio Arena1856ff72020-02-07 13:46:45 +0000169 construct_gemmlowp_output_stage(*input->info(), *weights->info(), *output->info(), gemmlowp_output_stage, fc_info.activation_info);
Georgios Pinitas8b721992019-10-28 16:24:28 +0000170
Georgios Pinitas44bfc3f2019-10-28 14:16:31 +0000171 const GEMMInfo &gemm_info = GEMMInfo(false, // is_a_reshaped
172 false, // is_b_reshaped
173 true, // reshape_b_only_on_first_run
174 0, // depth_output_gemm3d
175 false, // reinterpret_input_as_3d
176 fc_info.retain_internal_weights, // retain_internal_weights
177 gemmlowp_output_stage, // gemmlowp_output_stage
178 fc_info.fp_mixed_precision, // fp_mixed_precision
179 true, // broadcast_bias
Giorgio Arena1856ff72020-02-07 13:46:45 +0000180 fc_info.activation_info); // activation_info
Georgios Pinitas8b721992019-10-28 16:24:28 +0000181
Georgios Pinitas45bcc3a2017-11-29 11:06:49 +0000182 if(_is_quantized)
183 {
Chunosov5124be52017-11-22 20:42:13 +0700184 // Since we need negative offsets for computing convolution, we need to change QuantizationInfo()
Georgios Pinitas45bcc3a2017-11-29 11:06:49 +0000185 // Extract and negate input and weights offset
Chunosov5124be52017-11-22 20:42:13 +0700186 const QuantizationInfo input_quantization_info = input->info()->quantization_info();
187 const QuantizationInfo weights_quantization_info = weights->info()->quantization_info();
188
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100189 input->info()->set_quantization_info(QuantizationInfo(input_quantization_info.uniform().scale, -input_quantization_info.uniform().offset));
190 weights->info()->set_quantization_info(QuantizationInfo(weights_quantization_info.uniform().scale, -weights_quantization_info.uniform().offset));
Chunosov5124be52017-11-22 20:42:13 +0700191
Georgios Pinitas45bcc3a2017-11-29 11:06:49 +0000192 // Configure gemmlowp function
Georgios Pinitas8b721992019-10-28 16:24:28 +0000193 _mm_gemmlowp.configure(input, weights, bias, output, gemm_info);
Chunosov5124be52017-11-22 20:42:13 +0700194
195 // Revert back QuantizatioInfo as input and weights could be used in other fully connected layers
196 input->info()->set_quantization_info(input_quantization_info);
197 weights->info()->set_quantization_info(weights_quantization_info);
Georgios Pinitas45bcc3a2017-11-29 11:06:49 +0000198 }
199 else
200 {
201 // Configure matrix multiply kernel
Georgios Pinitas8b721992019-10-28 16:24:28 +0000202 _mm_gemm.configure(input, weights, bias, output, 1.f, 1.f, gemm_info);
Georgios Pinitas45bcc3a2017-11-29 11:06:49 +0000203 }
204}
205
Georgios Pinitas44bfc3f2019-10-28 14:16:31 +0000206void CLFullyConnectedLayer::configure_conv_fc(const ICLTensor *input, const ICLTensor *weights, const ICLTensor *bias, ICLTensor *output, const FullyConnectedLayerInfo &fc_info)
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100207{
208 ARM_COMPUTE_ERROR_ON((weights->info()->dimension(1) != (input->info()->dimension(0) * input->info()->dimension(1) * input->info()->dimension(2))));
209
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100210 // If the fully connected layer is called after a convolution layer, the input tensor must be linearized
211
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100212 // Initialize output tensor for flatten
213 TensorShape shape_flatten = compute_flatten_shape(input->info());
214 _flatten_output.allocator()->init(input->info()->clone()->set_is_resizable(true).reset_padding().set_tensor_shape(shape_flatten).set_data_layout(DataLayout::NCHW));
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100215
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100216 // Configure flatten kernel
217 _memory_group.manage(&_flatten_output);
218 _flatten_layer.configure(input, &_flatten_output);
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100219
220 // Configure matrix multiply kernel
Georgios Pinitas44bfc3f2019-10-28 14:16:31 +0000221 configure_mm(&_flatten_output, weights, bias, output, fc_info);
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100222
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100223 // Allocate the output tensor for flatten once all the configure methods have been called
224 _flatten_output.allocator()->allocate();
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100225}
226
Georgios Pinitas44bfc3f2019-10-28 14:16:31 +0000227void CLFullyConnectedLayer::configure_fc_fc(const ICLTensor *input, const ICLTensor *weights, const ICLTensor *bias, ICLTensor *output, const FullyConnectedLayerInfo &fc_info)
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100228{
229 ARM_COMPUTE_ERROR_ON(input->info()->dimension(0) != weights->info()->dimension(1));
230
231 // Configure matrix multiply kernel
Georgios Pinitas44bfc3f2019-10-28 14:16:31 +0000232 configure_mm(input, weights, bias, output, fc_info);
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100233}
234
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100235void CLFullyConnectedLayer::configure(const ICLTensor *input, const ICLTensor *weights, const ICLTensor *biases, ICLTensor *output,
236 FullyConnectedLayerInfo fc_info)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100237{
Georgios Pinitas358ca202017-12-07 16:47:52 +0000238 ARM_COMPUTE_ERROR_ON_NULLPTR(input, weights, output);
239
240 // Perform validate step
241 ARM_COMPUTE_ERROR_THROW_ON(CLFullyConnectedLayer::validate(input->info(),
242 weights->info(),
243 biases != nullptr ? biases->info() : nullptr,
244 output->info(),
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100245 fc_info));
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100246
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100247 _are_weights_converted = true;
248 _are_weights_reshaped = fc_info.transpose_weights ? fc_info.are_weights_reshaped : true;
249 _is_fc_after_conv = true;
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100250 _is_quantized = is_data_type_quantized_asymmetric(input->info()->data_type());
Michele Di Giorgioba1ffe92018-08-22 14:28:30 +0100251 _is_prepared = fc_info.retain_internal_weights;
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100252 _original_weights = weights;
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100253
Michalis Spyroub27e13a2019-09-27 11:04:27 +0100254 if(_weights_manager)
255 {
256 _weights_manager->manage(weights);
257 }
258
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100259 const ICLTensor *weights_to_use = weights;
260
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100261 // With the Fully Connected layer we can have 4 different cases:
262 // 1) Convolution layer -> Fully Connected layer without batches
263 // 2) Fully Connected layer -> Fully Connected layer without batches
264 // 3) Convolution layer -> Fully Connected layer with batches
265 // 4) Fully Connected layer -> Fully Connected layer with batches
266
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100267 // Check if we have a fully connected layer with batches
268 const bool is_batched_fc_layer = output->info()->dimension(1) > 1;
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100269 if(is_batched_fc_layer)
Moritz Pflanzer768e9f12017-08-11 15:33:30 +0100270 {
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100271 _is_fc_after_conv = (TensorShape::num_max_dimensions >= 4) && (std::equal(input->info()->tensor_shape().cbegin() + 3,
272 input->info()->tensor_shape().cend(),
273 output->info()->tensor_shape().cbegin() + 1));
Moritz Pflanzer768e9f12017-08-11 15:33:30 +0100274 }
275 else
276 {
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100277 _is_fc_after_conv = input->info()->num_dimensions() > 1;
Moritz Pflanzer768e9f12017-08-11 15:33:30 +0100278 }
279
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100280 // Reshape weights if needed
281 if(!_are_weights_reshaped)
282 {
Michalis Spyroub27e13a2019-09-27 11:04:27 +0100283 if(_weights_manager && _weights_manager->are_weights_managed(weights))
284 {
285 _reshape_weights_managed_function.configure(weights);
286 weights_to_use = utils::cast::polymorphic_downcast<ICLTensor *>(_weights_manager->acquire(weights, &_reshape_weights_managed_function));
287 }
288 else
289 {
290 // Reshape the weights
291 _reshape_weights_function.configure(weights, &_reshape_weights_output);
292 weights_to_use = &_reshape_weights_output;
293 }
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100294 }
295
296 // Convert weights if needed
297 if(_is_fc_after_conv && (input->info()->data_layout() != fc_info.weights_trained_layout))
298 {
Michalis Spyroub27e13a2019-09-27 11:04:27 +0100299 if(_weights_manager && _weights_manager->are_weights_managed(weights_to_use))
300 {
301 _convert_weights_managed.configure(weights_to_use,
302 input->info()->tensor_shape(),
303 fc_info.weights_trained_layout);
304 weights_to_use = utils::cast::polymorphic_downcast<ICLTensor *>(_weights_manager->acquire(weights, &_convert_weights_managed));
305 }
306 else
307 {
308 // Convert weights
309 _convert_weights.configure(weights_to_use,
310 &_converted_weights_output,
311 input->info()->tensor_shape(),
312 fc_info.weights_trained_layout);
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100313
Michalis Spyroub27e13a2019-09-27 11:04:27 +0100314 weights_to_use = &_converted_weights_output;
315 }
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100316 _are_weights_converted = false;
317 }
318
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100319 if(_is_fc_after_conv)
Moritz Pflanzer768e9f12017-08-11 15:33:30 +0100320 {
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100321 // Fully Connected layer after a Convolution Layer without batches
Georgios Pinitas44bfc3f2019-10-28 14:16:31 +0000322 configure_conv_fc(input, weights_to_use, biases, output, fc_info);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100323 }
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100324 else
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100325 {
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100326 // Fully Connected layer after a Fully Connected Layer without batches
Georgios Pinitas44bfc3f2019-10-28 14:16:31 +0000327 configure_fc_fc(input, weights_to_use, biases, output, fc_info);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100328 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100329}
330
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100331Status CLFullyConnectedLayer::validate(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *biases, const ITensorInfo *output,
332 FullyConnectedLayerInfo fc_info)
Georgios Pinitas358ca202017-12-07 16:47:52 +0000333{
334 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, weights, output);
Sang-Hoon Parkb66aa3b2020-01-10 14:44:13 +0000335 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::QASYMM8, DataType::QASYMM8_SIGNED, DataType::F16, DataType::F32);
Georgios Pinitas358ca202017-12-07 16:47:52 +0000336 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, weights, output);
337 ARM_COMPUTE_RETURN_ERROR_ON(weights->num_dimensions() > 2);
Giorgio Arena1856ff72020-02-07 13:46:45 +0000338 ARM_COMPUTE_RETURN_ERROR_ON(fc_info.activation_info.enabled() && is_data_type_quantized(input->data_type()) && fc_info.activation_info.activation() != ActivationLayerInfo::ActivationFunction::RELU
339 && fc_info.activation_info.activation() != ActivationLayerInfo::ActivationFunction::BOUNDED_RELU && fc_info.activation_info.activation() != ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU);
Georgios Pinitas358ca202017-12-07 16:47:52 +0000340
Georgios Pinitas8b721992019-10-28 16:24:28 +0000341 bool weights_reshaped = fc_info.transpose_weights ? fc_info.are_weights_reshaped : true;
342 bool is_fc_after_conv = true;
Georgios Pinitas358ca202017-12-07 16:47:52 +0000343
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100344 const ITensorInfo &flatten_input = TensorInfo(input->clone()->set_is_resizable(true).reset_padding().set_tensor_shape(compute_flatten_shape(input)).set_data_layout(DataLayout::NCHW));
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100345 const ITensorInfo &reshaped_weights = TensorInfo(weights->clone()->set_is_resizable(true).reset_padding().set_tensor_shape(compute_transposed_shape(*weights)));
Georgios Pinitas195b0ba2018-08-02 17:18:51 +0100346 const ITensorInfo &converted_weights = weights_reshaped ? TensorInfo(weights->clone()->set_is_resizable(true).reset_padding()) : TensorInfo(*reshaped_weights.clone());
Georgios Pinitas358ca202017-12-07 16:47:52 +0000347
348 // With the Fully Connected layer we can have 4 different cases:
349 // 1) Convolution layer -> Fully Connected layer without batches
350 // 2) Fully Connected layer -> Fully Connected layer without batches
351 // 3) Convolution layer -> Fully Connected layer with batches
352 // 4) Fully Connected layer -> Fully Connected layer with batches
353
354 const ITensorInfo *input_to_use = input;
355 const ITensorInfo *weights_to_use = weights;
Georgios Pinitas358ca202017-12-07 16:47:52 +0000356
Georgios Pinitas358ca202017-12-07 16:47:52 +0000357 // Check if we have a fully connected layer with batches
358 const bool is_batched_fc_layer = output->dimension(1) > 1;
Georgios Pinitas358ca202017-12-07 16:47:52 +0000359 if(is_batched_fc_layer)
360 {
361 is_fc_after_conv = (TensorShape::num_max_dimensions >= 4) && (std::equal(input->tensor_shape().cbegin() + 3,
362 input->tensor_shape().cend(),
363 output->tensor_shape().cbegin() + 1));
364 }
365 else
366 {
367 is_fc_after_conv = input->num_dimensions() > 1;
368 }
369
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100370 if(!weights_reshaped)
371 {
372 // Validate reshape weights kernel
373 ARM_COMPUTE_RETURN_ON_ERROR(CLFullyConnectedLayerReshapeWeights::validate(weights, &reshaped_weights));
374 weights_to_use = &reshaped_weights;
375 }
376
377 if(is_fc_after_conv && (input->data_layout() != fc_info.weights_trained_layout))
378 {
379 // Validate convert weights kernel
380 ARM_COMPUTE_RETURN_ON_ERROR(CLConvertFullyConnectedWeights::validate(weights_to_use,
381 &converted_weights,
382 input->tensor_shape(),
383 fc_info.weights_trained_layout));
384 weights_to_use = &converted_weights;
385 }
386
Georgios Pinitas358ca202017-12-07 16:47:52 +0000387 if(is_fc_after_conv)
388 {
389 // Fully Connected layer after a Convolution Layer without batches
390 ARM_COMPUTE_RETURN_ERROR_ON((weights_to_use->dimension(1) != (input->dimension(0) * input->dimension(1) * input->dimension(2))));
391
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100392 // Validate flatten kernel
393 ARM_COMPUTE_RETURN_ON_ERROR(CLFlattenLayer::validate(input, &flatten_input));
394 input_to_use = &flatten_input;
Georgios Pinitas358ca202017-12-07 16:47:52 +0000395 }
396 else
397 {
398 // Fully Connected layer after a Fully Connected Layer without batches
399 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(0) != weights_to_use->dimension(1));
400 }
Georgios Pinitas8b721992019-10-28 16:24:28 +0000401
Georgios Pinitas358ca202017-12-07 16:47:52 +0000402 // Validate matrix multiply kernel
Georgios Pinitas44bfc3f2019-10-28 14:16:31 +0000403 ARM_COMPUTE_RETURN_ON_ERROR(validate_mm(*input_to_use, *weights_to_use, biases, *output, fc_info));
Georgios Pinitas358ca202017-12-07 16:47:52 +0000404
405 return Status{};
406}
407
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100408void CLFullyConnectedLayer::run()
409{
Georgios Pinitase0437672018-05-02 14:07:55 +0100410 prepare();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100411
Georgios Pinitasda953f22019-04-02 17:27:03 +0100412 MemoryGroupResourceScope scope_mg(_memory_group);
Georgios Pinitasbaf174e2017-09-08 19:47:30 +0100413
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100414 // Linearize input if it comes from a convolutional layer
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100415 if(_is_fc_after_conv)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100416 {
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100417 _flatten_layer.run();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100418 }
419
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100420 // Run matrix multiply
Georgios Pinitas45bcc3a2017-11-29 11:06:49 +0000421 if(_is_quantized)
422 {
423 _mm_gemmlowp.run();
424 }
425 else
426 {
Gian Marco Iodicec9c62c22018-04-06 10:00:10 +0100427 _mm_gemm.run();
Georgios Pinitas45bcc3a2017-11-29 11:06:49 +0000428 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100429}
Georgios Pinitase0437672018-05-02 14:07:55 +0100430
431void CLFullyConnectedLayer::prepare()
432{
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100433 if(!_is_prepared)
Georgios Pinitase0437672018-05-02 14:07:55 +0100434 {
Michalis Spyroub27e13a2019-09-27 11:04:27 +0100435 if(!_weights_manager)
436 {
437 ARM_COMPUTE_ERROR_ON(!_original_weights->is_used());
438 }
Georgios Pinitase0437672018-05-02 14:07:55 +0100439
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100440 auto release_unused = [](CLTensor * w)
441 {
442 if(!w->is_used())
443 {
444 CLScheduler::get().queue().finish();
445 w->allocator()->free();
446 }
447 };
448
449 // Pointer to current weights
450 const ICLTensor *cur_weights = _original_weights;
451
452 // Reshape of the weights if needed (happens only once)
453 if(!_are_weights_reshaped)
454 {
Michalis Spyroub27e13a2019-09-27 11:04:27 +0100455 if(_weights_manager && _weights_manager->are_weights_managed(_original_weights))
456 {
457 cur_weights = utils::cast::polymorphic_downcast<ICLTensor *>(_weights_manager->run(cur_weights, &_reshape_weights_managed_function));
458 }
459 else
460 {
461 // Run reshape weights kernel and mark weights as unused
462 _reshape_weights_output.allocator()->allocate();
463 _reshape_weights_function.run();
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100464
Michalis Spyroub27e13a2019-09-27 11:04:27 +0100465 cur_weights->mark_as_unused();
466 cur_weights = &_reshape_weights_output;
467 }
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100468 _are_weights_reshaped = true;
469 }
470
471 // Convert weights if needed (happens only once)
472 if(!_are_weights_converted)
473 {
Michalis Spyroub27e13a2019-09-27 11:04:27 +0100474 if(_weights_manager && _weights_manager->are_weights_managed(cur_weights))
475 {
476 _weights_manager->run(cur_weights, &_convert_weights_managed);
477 }
478 else
479 {
480 _converted_weights_output.allocator()->allocate();
481 _convert_weights.run();
482 cur_weights->mark_as_unused();
483 }
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100484
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100485 _are_weights_converted = true;
486 }
487
488 // Release reshaped weights if unused
489 release_unused(&_reshape_weights_output);
Georgios Pinitase0437672018-05-02 14:07:55 +0100490
491 // Prepare GEMM prepare and release unused weights
492 if(!_is_quantized)
493 {
494 _mm_gemm.prepare();
Georgios Pinitase0437672018-05-02 14:07:55 +0100495 }
496
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100497 // Release converted weights if unused
498 release_unused(&_reshape_weights_output);
499 release_unused(&_converted_weights_output);
500
501 _is_prepared = true;
Georgios Pinitase0437672018-05-02 14:07:55 +0100502 }
503}
Michalis Spyroub27e13a2019-09-27 11:04:27 +0100504} // namespace arm_compute