blob: 6cc2f4bdb722728f55fcc2ff086fb6ade225e705 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
2 * Copyright (c) 2017 ARM Limited.
3 *
4 * SPDX-License-Identifier: MIT
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to
8 * deal in the Software without restriction, including without limitation the
9 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10 * sell copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in all
14 * copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 */
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"
Georgios Pinitas45bcc3a2017-11-29 11:06:49 +000028#include "arm_compute/core/utils/quantization/AsymmHelpers.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010029#include "arm_compute/runtime/CL/CLScheduler.h"
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +010030#include "support/ToolchainSupport.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010031
32#include <algorithm>
Anthony Barbier6ff3b192017-09-04 18:44:23 +010033
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +010034using namespace arm_compute;
35
36void CLFullyConnectedLayerReshapeWeights::configure(const ICLTensor *input, ICLTensor *output)
Moritz Pflanzer768e9f12017-08-11 15:33:30 +010037{
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +010038 auto k = arm_compute::support::cpp14::make_unique<CLTransposeKernel>();
39 k->configure(input, output);
40 _kernel = std::move(k);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010041}
42
Georgios Pinitasbaf174e2017-09-08 19:47:30 +010043CLFullyConnectedLayer::CLFullyConnectedLayer(std::shared_ptr<IMemoryManager> memory_manager)
Georgios Pinitas45bcc3a2017-11-29 11:06:49 +000044 : _memory_group(memory_manager), _im2col_kernel(), _reshape_weights_kernel(), _mm_kernel(), _mm_gemmlowp(memory_manager), _gemmlowp_output_stage(), _accumulate_biases_kernel(), _im2col_output(),
45 _gemmlowp_output(), _reshape_weights_output(), _are_weights_reshaped(true), _is_fc_after_conv(true), _accumulate_biases(false), _is_quantized(false)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010046{
47}
48
Georgios Pinitas45bcc3a2017-11-29 11:06:49 +000049void CLFullyConnectedLayer::configure_mm(const ICLTensor *input, const ICLTensor *weights, ICLTensor *output, bool is_interleaved_transposed)
50{
51 if(_is_quantized)
52 {
53 // Extract and negate input and weights offset
54 QuantizationInfo input_quantization_info = input->info()->quantization_info();
55 QuantizationInfo weights_quantization_info = weights->info()->quantization_info();
56 input->info()->set_quantization_info(QuantizationInfo(input_quantization_info.scale, -input_quantization_info.offset));
57 weights->info()->set_quantization_info(QuantizationInfo(weights_quantization_info.scale, -weights_quantization_info.offset));
58 // Configure gemmlowp function
59 _mm_gemmlowp.configure(input, weights, output);
60 }
61 else
62 {
63 // Configure matrix multiply kernel
64 _mm_kernel.set_target(CLScheduler::get().target());
65 _mm_kernel.configure(input, weights, output, 1.f, is_interleaved_transposed);
66 }
67}
68
69void CLFullyConnectedLayer::configure_conv_fc(const ICLTensor *input, const ICLTensor *weights, ICLTensor *output)
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +010070{
71 ARM_COMPUTE_ERROR_ON((weights->info()->dimension(1) != (input->info()->dimension(0) * input->info()->dimension(1) * input->info()->dimension(2))));
72
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +010073 // If the fully connected layer is called after a convolution layer, the input tensor must be linearized
74
75 // Initialize output tensor for im2col
Georgios Pinitas45bcc3a2017-11-29 11:06:49 +000076 TensorShape shape_im2col = input->info()->tensor_shape();
77 shape_im2col.collapse(3);
78 _im2col_output.allocator()->init(input->info()->clone()->set_is_resizable(true).reset_padding().set_tensor_shape(shape_im2col));
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +010079
80 // Configure im2col kernel
Georgios Pinitasbaf174e2017-09-08 19:47:30 +010081 _memory_group.manage(&_im2col_output);
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +010082 _im2col_kernel.configure(input, &_im2col_output, Size2D(1, 1), PadStrideInfo(1, 1, 0, 0), false);
83
84 // Configure matrix multiply kernel
Georgios Pinitas45bcc3a2017-11-29 11:06:49 +000085 configure_mm(&_im2col_output, weights, output, false);
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +010086
87 // Allocate the output tensor for im2col once all the configure methods have been called
88 _im2col_output.allocator()->allocate();
89}
90
Georgios Pinitas45bcc3a2017-11-29 11:06:49 +000091void CLFullyConnectedLayer::configure_fc_fc(const ICLTensor *input, const ICLTensor *weights, ICLTensor *output)
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +010092{
93 ARM_COMPUTE_ERROR_ON(input->info()->dimension(0) != weights->info()->dimension(1));
94
95 // Configure matrix multiply kernel
Georgios Pinitas45bcc3a2017-11-29 11:06:49 +000096 configure_mm(input, weights, output, false);
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +010097}
98
Anthony Barbier6ff3b192017-09-04 18:44:23 +010099void CLFullyConnectedLayer::configure(const ICLTensor *input, const ICLTensor *weights, const ICLTensor *biases, ICLTensor *output, bool transpose_weights, bool are_weights_reshaped)
100{
Georgios Pinitas45bcc3a2017-11-29 11:06:49 +0000101 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::QS8, DataType::QASYMM8, DataType::QS16, DataType::F16, DataType::F32);
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100102 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(input, weights, output);
Georgios Pinitas96880cf2017-10-20 18:52:20 +0100103 ARM_COMPUTE_ERROR_ON(weights->info()->num_dimensions() > 2);
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100104
105 _are_weights_reshaped = transpose_weights ? are_weights_reshaped : true;
106 _is_fc_after_conv = true;
107 _accumulate_biases = false;
Georgios Pinitas45bcc3a2017-11-29 11:06:49 +0000108 _is_quantized = is_data_type_quantized_asymmetric(input->info()->data_type());
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100109
Georgios Pinitas45bcc3a2017-11-29 11:06:49 +0000110 // Configure gemmlowp output
111 if(_is_quantized)
112 {
113 _gemmlowp_output.allocator()->init(output->info()->clone()->set_is_resizable(true).reset_padding().set_data_type(DataType::S32));
114 }
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000115
Georgios Pinitas45bcc3a2017-11-29 11:06:49 +0000116 // Configure accumulate biases kernel for non quantized asymmetric types
117 if(biases != nullptr && !_is_quantized)
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100118 {
119 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(input, biases);
120
121 _accumulate_biases = true;
122
123 // Configure accumulate biases kernel
Georgios Pinitas45bcc3a2017-11-29 11:06:49 +0000124 _accumulate_biases_kernel.set_target(CLScheduler::get().target());
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100125 _accumulate_biases_kernel.configure(output, biases);
126 }
127
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100128 // With the Fully Connected layer we can have 4 different cases:
129 // 1) Convolution layer -> Fully Connected layer without batches
130 // 2) Fully Connected layer -> Fully Connected layer without batches
131 // 3) Convolution layer -> Fully Connected layer with batches
132 // 4) Fully Connected layer -> Fully Connected layer with batches
133
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100134 const ICLTensor *weights_to_use = weights;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100135
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100136 if(!_are_weights_reshaped)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100137 {
Moritz Pflanzer768e9f12017-08-11 15:33:30 +0100138 weights_to_use = &_reshape_weights_output;
139
Moritz Pflanzer768e9f12017-08-11 15:33:30 +0100140 // Reshape the weights
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100141 _reshape_weights_kernel.configure(weights, &_reshape_weights_output);
Moritz Pflanzer768e9f12017-08-11 15:33:30 +0100142 }
143
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100144 // Check if we have a fully connected layer with batches
145 const bool is_batched_fc_layer = output->info()->dimension(1) > 1;
146
147 if(is_batched_fc_layer)
Moritz Pflanzer768e9f12017-08-11 15:33:30 +0100148 {
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100149 _is_fc_after_conv = (TensorShape::num_max_dimensions >= 4) && (std::equal(input->info()->tensor_shape().cbegin() + 3,
150 input->info()->tensor_shape().cend(),
151 output->info()->tensor_shape().cbegin() + 1));
Moritz Pflanzer768e9f12017-08-11 15:33:30 +0100152 }
153 else
154 {
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100155 _is_fc_after_conv = input->info()->num_dimensions() > 1;
Moritz Pflanzer768e9f12017-08-11 15:33:30 +0100156 }
157
Georgios Pinitas45bcc3a2017-11-29 11:06:49 +0000158 ICLTensor *tmp_output = (_is_quantized) ? &_gemmlowp_output : output;
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100159 if(_is_fc_after_conv)
Moritz Pflanzer768e9f12017-08-11 15:33:30 +0100160 {
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100161 // Fully Connected layer after a Convolution Layer without batches
Georgios Pinitas45bcc3a2017-11-29 11:06:49 +0000162 configure_conv_fc(input, weights_to_use, tmp_output);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100163 }
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100164 else
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100165 {
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100166 // Fully Connected layer after a Fully Connected Layer without batches
Georgios Pinitas45bcc3a2017-11-29 11:06:49 +0000167 configure_fc_fc(input, weights_to_use, tmp_output);
168 }
169
170 // Configure output stage for asymmetric quantized types
171 if(_is_quantized)
172 {
173 float multiplier = input->info()->quantization_info().scale * weights->info()->quantization_info().scale / output->info()->quantization_info().scale;
174 int output_multiplier, output_shift;
175 quantization::calculate_quantized_multiplier_less_than_one(multiplier, &output_multiplier, &output_shift);
Gian Marco58c57942017-11-28 09:10:03 +0000176 _gemmlowp_output_stage.configure(&_gemmlowp_output, biases, output, output_multiplier, output_shift, output->info()->quantization_info().offset);
Georgios Pinitas45bcc3a2017-11-29 11:06:49 +0000177 _gemmlowp_output.allocator()->allocate();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100178 }
179
180 // Allocate the transpose tensor if the are_weights_reshaped flag is false and once all the configure methods have been called
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100181 if(!_are_weights_reshaped)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100182 {
Moritz Pflanzer768e9f12017-08-11 15:33:30 +0100183 // Allocate the tensor for the weights reshaped
184 _reshape_weights_output.allocator()->allocate();
185 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100186}
187
188void CLFullyConnectedLayer::run()
189{
190 // Reshape of the weights (happens only once)
191 if(!_are_weights_reshaped)
192 {
193 _are_weights_reshaped = true;
194 _reshape_weights_kernel.run();
195 }
196
Georgios Pinitasbaf174e2017-09-08 19:47:30 +0100197 _memory_group.acquire();
198
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100199 // Linearize input if it comes from a convolutional layer
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100200 if(_is_fc_after_conv)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100201 {
202 CLScheduler::get().enqueue(_im2col_kernel, false);
203 }
204
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100205 // Run matrix multiply
Georgios Pinitas45bcc3a2017-11-29 11:06:49 +0000206 if(_is_quantized)
207 {
208 _mm_gemmlowp.run();
209 }
210 else
211 {
212 CLScheduler::get().enqueue(_mm_kernel, !_accumulate_biases);
213 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100214
215 // Accumulate biases if provided
Georgios Pinitas45bcc3a2017-11-29 11:06:49 +0000216 if(_is_quantized)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100217 {
Georgios Pinitas45bcc3a2017-11-29 11:06:49 +0000218 _gemmlowp_output_stage.run();
219 }
220 else
221 {
222 if(_accumulate_biases)
223 {
224 CLScheduler::get().enqueue(_accumulate_biases_kernel);
225 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100226 }
Georgios Pinitasbaf174e2017-09-08 19:47:30 +0100227
228 _memory_group.release();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100229}