blob: f7cea551f6ee82d67e67aa79ce547c0f4307dc84 [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"
28#include "arm_compute/runtime/CL/CLScheduler.h"
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +010029#include "support/ToolchainSupport.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010030
31#include <algorithm>
Anthony Barbier6ff3b192017-09-04 18:44:23 +010032
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +010033using namespace arm_compute;
34
35void CLFullyConnectedLayerReshapeWeights::configure(const ICLTensor *input, ICLTensor *output)
Moritz Pflanzer768e9f12017-08-11 15:33:30 +010036{
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +010037 auto k = arm_compute::support::cpp14::make_unique<CLTransposeKernel>();
38 k->configure(input, output);
39 _kernel = std::move(k);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010040}
41
42CLFullyConnectedLayer::CLFullyConnectedLayer()
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +010043 : _im2col_kernel(), _reshape_weights_kernel(), _mm_kernel(), _accumulate_biases_kernel(), _im2col_output(), _reshape_weights_output(), _are_weights_reshaped(true), _is_fc_after_conv(true),
44 _accumulate_biases(false)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010045{
46}
47
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +010048void CLFullyConnectedLayer::configure_conv_fc(const ICLTensor *input, const ICLTensor *weights, ICLTensor *output)
49{
50 ARM_COMPUTE_ERROR_ON((weights->info()->dimension(1) != (input->info()->dimension(0) * input->info()->dimension(1) * input->info()->dimension(2))));
51
52 const DataType dt = input->info()->data_type();
53 const int fixed_point_position = input->info()->fixed_point_position();
54
55 // If the fully connected layer is called after a convolution layer, the input tensor must be linearized
56
57 // Initialize output tensor for im2col
58 TensorShape shape_im2col;
59 shape_im2col.set(0, input->info()->dimension(0) * input->info()->dimension(1) * input->info()->dimension(2));
60 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));
63 _im2col_output.allocator()->init(TensorInfo(shape_im2col, 1, dt, fixed_point_position));
64
65 // Configure im2col kernel
66 _im2col_kernel.configure(input, &_im2col_output, Size2D(1, 1), PadStrideInfo(1, 1, 0, 0), false);
67
68 // Configure matrix multiply kernel
69 _mm_kernel.configure(&_im2col_output, weights, output, 1.0f, false);
70
71 // Allocate the output tensor for im2col once all the configure methods have been called
72 _im2col_output.allocator()->allocate();
73}
74
75void CLFullyConnectedLayer::configure_fc_fc(const ICLTensor *input, const ICLTensor *weights, ICLTensor *output)
76{
77 ARM_COMPUTE_ERROR_ON(input->info()->dimension(0) != weights->info()->dimension(1));
78
79 // Configure matrix multiply kernel
80 _mm_kernel.configure(input, weights, output, 1.0f, false);
81}
82
Anthony Barbier6ff3b192017-09-04 18:44:23 +010083void CLFullyConnectedLayer::configure(const ICLTensor *input, const ICLTensor *weights, const ICLTensor *biases, ICLTensor *output, bool transpose_weights, bool are_weights_reshaped)
84{
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +010085 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::QS8, DataType::QS16, DataType::F16, DataType::F32);
86 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(input, weights, output);
87 ARM_COMPUTE_ERROR_ON(weights->info()->num_dimensions() != 2);
88
89 _are_weights_reshaped = transpose_weights ? are_weights_reshaped : true;
90 _is_fc_after_conv = true;
91 _accumulate_biases = false;
92
93 if(biases != nullptr)
94 {
95 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(input, biases);
96
97 _accumulate_biases = true;
98
99 // Configure accumulate biases kernel
100 _accumulate_biases_kernel.configure(output, biases);
101 }
102
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100103 // With the Fully Connected layer we can have 4 different cases:
104 // 1) Convolution layer -> Fully Connected layer without batches
105 // 2) Fully Connected layer -> Fully Connected layer without batches
106 // 3) Convolution layer -> Fully Connected layer with batches
107 // 4) Fully Connected layer -> Fully Connected layer with batches
108
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100109 const ICLTensor *weights_to_use = weights;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100110
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100111 if(!_are_weights_reshaped)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100112 {
Moritz Pflanzer768e9f12017-08-11 15:33:30 +0100113 weights_to_use = &_reshape_weights_output;
114
Moritz Pflanzer768e9f12017-08-11 15:33:30 +0100115 // Reshape the weights
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100116 _reshape_weights_kernel.configure(weights, &_reshape_weights_output);
Moritz Pflanzer768e9f12017-08-11 15:33:30 +0100117 }
118
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100119 // Check if we have a fully connected layer with batches
120 const bool is_batched_fc_layer = output->info()->dimension(1) > 1;
121
122 if(is_batched_fc_layer)
Moritz Pflanzer768e9f12017-08-11 15:33:30 +0100123 {
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100124 _is_fc_after_conv = (TensorShape::num_max_dimensions >= 4) && (std::equal(input->info()->tensor_shape().cbegin() + 3,
125 input->info()->tensor_shape().cend(),
126 output->info()->tensor_shape().cbegin() + 1));
Moritz Pflanzer768e9f12017-08-11 15:33:30 +0100127 }
128 else
129 {
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100130 _is_fc_after_conv = input->info()->num_dimensions() > 1;
Moritz Pflanzer768e9f12017-08-11 15:33:30 +0100131 }
132
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100133 if(_is_fc_after_conv)
Moritz Pflanzer768e9f12017-08-11 15:33:30 +0100134 {
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100135 // Fully Connected layer after a Convolution Layer without batches
136 configure_conv_fc(input, weights_to_use, output);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100137 }
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100138 else
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100139 {
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100140 // Fully Connected layer after a Fully Connected Layer without batches
141 configure_fc_fc(input, weights_to_use, output);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100142 }
143
144 // 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 +0100145 if(!_are_weights_reshaped)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100146 {
Moritz Pflanzer768e9f12017-08-11 15:33:30 +0100147 // Allocate the tensor for the weights reshaped
148 _reshape_weights_output.allocator()->allocate();
149 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100150}
151
152void CLFullyConnectedLayer::run()
153{
154 // Reshape of the weights (happens only once)
155 if(!_are_weights_reshaped)
156 {
157 _are_weights_reshaped = true;
158 _reshape_weights_kernel.run();
159 }
160
161 // Linearize input if it comes from a convolutional layer
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100162 if(_is_fc_after_conv)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100163 {
164 CLScheduler::get().enqueue(_im2col_kernel, false);
165 }
166
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100167 // Run matrix multiply
168 CLScheduler::get().enqueue(_mm_kernel, !_accumulate_biases);
169
170 // Accumulate biases if provided
171 if(_accumulate_biases)
172 {
173 CLScheduler::get().enqueue(_accumulate_biases_kernel);
174 }
175}