blob: ee1558fe71ccaf60154aaf82c8f6a39c9d025a68 [file] [log] [blame]
Anthony Barbier871448e2017-03-24 14:54:29 +00001/*
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
Kaizen8938bd32017-09-28 14:38:23 +010026#include "arm_compute/core/Size2D.h"
Anthony Barbier871448e2017-03-24 14:54:29 +000027#include "arm_compute/core/Validate.h"
28#include "arm_compute/runtime/CL/CLScheduler.h"
Kaizen8938bd32017-09-28 14:38:23 +010029#include "support/ToolchainSupport.h"
Anthony Barbier871448e2017-03-24 14:54:29 +000030
Anthony Barbiera4376382017-04-12 15:12:46 +010031#include <algorithm>
Anthony Barbiera4376382017-04-12 15:12:46 +010032
Anthony Barbier871448e2017-03-24 14:54:29 +000033using namespace arm_compute;
34
Kaizen8938bd32017-09-28 14:38:23 +010035void CLFullyConnectedLayerReshapeWeights::configure(const ICLTensor *input, ICLTensor *output)
36{
37 auto k = arm_compute::support::cpp14::make_unique<CLTransposeKernel>();
38 k->configure(input, output);
39 _kernel = std::move(k);
40}
41
42CLFullyConnectedLayer::CLFullyConnectedLayer(std::shared_ptr<IMemoryManager> memory_manager)
43 : _memory_group(std::move(memory_manager)), _im2col_kernel(), _reshape_weights_kernel(), _mm_kernel(), _accumulate_biases_kernel(), _im2col_output(), _reshape_weights_output(),
44 _are_weights_reshaped(true), _is_fc_after_conv(true), _accumulate_biases(false)
Anthony Barbierdbdab852017-06-23 15:42:00 +010045{
46}
47
Kaizen8938bd32017-09-28 14:38:23 +010048void CLFullyConnectedLayer::configure_conv_fc(const ICLTensor *input, const ICLTensor *weights, ICLTensor *output)
Anthony Barbierdbdab852017-06-23 15:42:00 +010049{
Kaizen8938bd32017-09-28 14:38:23 +010050 ARM_COMPUTE_ERROR_ON((weights->info()->dimension(1) != (input->info()->dimension(0) * input->info()->dimension(1) * input->info()->dimension(2))));
Anthony Barbierdbdab852017-06-23 15:42:00 +010051
52 const DataType dt = input->info()->data_type();
53 const int fixed_point_position = input->info()->fixed_point_position();
Anthony Barbier871448e2017-03-24 14:54:29 +000054
Anthony Barbiera4376382017-04-12 15:12:46 +010055 // If the fully connected layer is called after a convolution layer, the input tensor must be linearized
Anthony Barbier871448e2017-03-24 14:54:29 +000056
Anthony Barbiera4376382017-04-12 15:12:46 +010057 // Initialize output tensor for im2col
58 TensorShape shape_im2col;
Anthony Barbierdbdab852017-06-23 15:42:00 +010059 shape_im2col.set(0, input->info()->dimension(0) * input->info()->dimension(1) * input->info()->dimension(2));
Anthony Barbiera4376382017-04-12 15:12:46 +010060 shape_im2col.set(1, input->info()->dimension(3));
61 shape_im2col.set(2, input->info()->dimension(4));
62 shape_im2col.set(3, input->info()->dimension(5));
Anthony Barbierdbdab852017-06-23 15:42:00 +010063 _im2col_output.allocator()->init(TensorInfo(shape_im2col, 1, dt, fixed_point_position));
Anthony Barbier871448e2017-03-24 14:54:29 +000064
Anthony Barbiera4376382017-04-12 15:12:46 +010065 // Configure im2col kernel
Kaizen8938bd32017-09-28 14:38:23 +010066 _memory_group.manage(&_im2col_output);
67 _im2col_kernel.configure(input, &_im2col_output, Size2D(1, 1), PadStrideInfo(1, 1, 0, 0), false);
Anthony Barbiera4376382017-04-12 15:12:46 +010068
Anthony Barbiera4376382017-04-12 15:12:46 +010069 // Configure matrix multiply kernel
Kaizen8938bd32017-09-28 14:38:23 +010070 _mm_kernel.configure(&_im2col_output, weights, output, 1.0f, false);
Anthony Barbiera4376382017-04-12 15:12:46 +010071
72 // Allocate the output tensor for im2col once all the configure methods have been called
73 _im2col_output.allocator()->allocate();
74}
75
Kaizen8938bd32017-09-28 14:38:23 +010076void CLFullyConnectedLayer::configure_fc_fc(const ICLTensor *input, const ICLTensor *weights, ICLTensor *output)
Anthony Barbiera4376382017-04-12 15:12:46 +010077{
78 ARM_COMPUTE_ERROR_ON(input->info()->dimension(0) != weights->info()->dimension(1));
79
80 // Configure matrix multiply kernel
Kaizen8938bd32017-09-28 14:38:23 +010081 _mm_kernel.configure(input, weights, output, 1.0f, false);
Anthony Barbiera4376382017-04-12 15:12:46 +010082}
83
Anthony Barbierdbdab852017-06-23 15:42:00 +010084void CLFullyConnectedLayer::configure(const ICLTensor *input, const ICLTensor *weights, const ICLTensor *biases, ICLTensor *output, bool transpose_weights, bool are_weights_reshaped)
Anthony Barbiera4376382017-04-12 15:12:46 +010085{
Kaizen8938bd32017-09-28 14:38:23 +010086 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::QS8, DataType::QS16, DataType::F16, DataType::F32);
Anthony Barbiera4376382017-04-12 15:12:46 +010087 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(input, weights, output);
88 ARM_COMPUTE_ERROR_ON(weights->info()->num_dimensions() != 2);
89
Kaizen8938bd32017-09-28 14:38:23 +010090 _are_weights_reshaped = transpose_weights ? are_weights_reshaped : true;
Anthony Barbierdbdab852017-06-23 15:42:00 +010091 _is_fc_after_conv = true;
Anthony Barbierdbdab852017-06-23 15:42:00 +010092 _accumulate_biases = false;
Anthony Barbiera4376382017-04-12 15:12:46 +010093
Anthony Barbier871448e2017-03-24 14:54:29 +000094 if(biases != nullptr)
95 {
Anthony Barbiera4376382017-04-12 15:12:46 +010096 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(input, biases);
97
98 _accumulate_biases = true;
99
100 // Configure accumulate biases kernel
101 _accumulate_biases_kernel.configure(output, biases);
Anthony Barbier871448e2017-03-24 14:54:29 +0000102 }
103
Anthony Barbiera4376382017-04-12 15:12:46 +0100104 // With the Fully Connected layer we can have 4 different cases:
105 // 1) Convolution layer -> Fully Connected layer without batches
106 // 2) Fully Connected layer -> Fully Connected layer without batches
107 // 3) Convolution layer -> Fully Connected layer with batches
108 // 4) Fully Connected layer -> Fully Connected layer with batches
Anthony Barbier871448e2017-03-24 14:54:29 +0000109
Anthony Barbierdbdab852017-06-23 15:42:00 +0100110 const ICLTensor *weights_to_use = weights;
111
Kaizen8938bd32017-09-28 14:38:23 +0100112 if(!_are_weights_reshaped)
Anthony Barbier871448e2017-03-24 14:54:29 +0000113 {
Kaizen8938bd32017-09-28 14:38:23 +0100114 weights_to_use = &_reshape_weights_output;
Anthony Barbiera4376382017-04-12 15:12:46 +0100115
Kaizen8938bd32017-09-28 14:38:23 +0100116 // Reshape the weights
117 _reshape_weights_kernel.configure(weights, &_reshape_weights_output);
Anthony Barbierdbdab852017-06-23 15:42:00 +0100118 }
119
Kaizen8938bd32017-09-28 14:38:23 +0100120 // Check if we have a fully connected layer with batches
121 const bool is_batched_fc_layer = output->info()->dimension(1) > 1;
122
123 if(is_batched_fc_layer)
Anthony Barbierdbdab852017-06-23 15:42:00 +0100124 {
125 _is_fc_after_conv = (TensorShape::num_max_dimensions >= 4) && (std::equal(input->info()->tensor_shape().cbegin() + 3,
126 input->info()->tensor_shape().cend(),
127 output->info()->tensor_shape().cbegin() + 1));
Anthony Barbiera4376382017-04-12 15:12:46 +0100128 }
129 else
130 {
Kaizen8938bd32017-09-28 14:38:23 +0100131 _is_fc_after_conv = input->info()->num_dimensions() > 1;
132 }
Anthony Barbiera4376382017-04-12 15:12:46 +0100133
Kaizen8938bd32017-09-28 14:38:23 +0100134 if(_is_fc_after_conv)
135 {
136 // Fully Connected layer after a Convolution Layer without batches
137 configure_conv_fc(input, weights_to_use, output);
138 }
139 else
140 {
141 // Fully Connected layer after a Fully Connected Layer without batches
142 configure_fc_fc(input, weights_to_use, output);
Anthony Barbiera4376382017-04-12 15:12:46 +0100143 }
144
Anthony Barbierdbdab852017-06-23 15:42:00 +0100145 // Allocate the transpose tensor if the are_weights_reshaped flag is false and once all the configure methods have been called
Kaizen8938bd32017-09-28 14:38:23 +0100146 if(!_are_weights_reshaped)
Anthony Barbiera4376382017-04-12 15:12:46 +0100147 {
Kaizen8938bd32017-09-28 14:38:23 +0100148 // Allocate the tensor for the weights reshaped
149 _reshape_weights_output.allocator()->allocate();
Anthony Barbier871448e2017-03-24 14:54:29 +0000150 }
151}
152
153void CLFullyConnectedLayer::run()
154{
Anthony Barbierdbdab852017-06-23 15:42:00 +0100155 // Reshape of the weights (happens only once)
156 if(!_are_weights_reshaped)
Anthony Barbiera4376382017-04-12 15:12:46 +0100157 {
Anthony Barbierdbdab852017-06-23 15:42:00 +0100158 _are_weights_reshaped = true;
159 _reshape_weights_kernel.run();
Anthony Barbiera4376382017-04-12 15:12:46 +0100160 }
161
Kaizen8938bd32017-09-28 14:38:23 +0100162 _memory_group.acquire();
163
Anthony Barbiera4376382017-04-12 15:12:46 +0100164 // Linearize input if it comes from a convolutional layer
Anthony Barbierdbdab852017-06-23 15:42:00 +0100165 if(_is_fc_after_conv)
Anthony Barbiera4376382017-04-12 15:12:46 +0100166 {
167 CLScheduler::get().enqueue(_im2col_kernel, false);
168 }
169
Anthony Barbiera4376382017-04-12 15:12:46 +0100170 // Run matrix multiply
171 CLScheduler::get().enqueue(_mm_kernel, !_accumulate_biases);
172
173 // Accumulate biases if provided
174 if(_accumulate_biases)
175 {
176 CLScheduler::get().enqueue(_accumulate_biases_kernel);
177 }
Kaizen8938bd32017-09-28 14:38:23 +0100178
179 _memory_group.release();
Anthony Barbier871448e2017-03-24 14:54:29 +0000180}