blob: 1b3f36d8660b802ee28a03d8ec57676ac1411845 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Georgios Pinitasf8f04422021-01-08 17:25:55 +00002 * Copyright (c) 2017-2021 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 */
Michalis Spyrouf4643372019-11-29 16:17:13 +000024#ifndef ARM_COMPUTE_NEFULLYCONNECTEDLAYER_H
25#define ARM_COMPUTE_NEFULLYCONNECTEDLAYER_H
Anthony Barbier6ff3b192017-09-04 18:44:23 +010026
27#include "arm_compute/runtime/IFunction.h"
28
Georgios Pinitasbaf174e2017-09-08 19:47:30 +010029#include "arm_compute/runtime/MemoryGroup.h"
Georgios Pinitasef776a82018-07-25 17:57:49 +010030#include "arm_compute/runtime/NEON/functions/NEConvertFullyConnectedWeights.h"
Michalis Spyrouebcebf12020-10-21 00:04:14 +010031#include "arm_compute/runtime/NEON/functions/NEFlattenLayer.h"
Giorgio Arenaa855af12018-07-16 17:20:38 +010032#include "arm_compute/runtime/NEON/functions/NEGEMM.h"
33#include "arm_compute/runtime/NEON/functions/NEGEMMLowpMatrixMultiplyCore.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010034#include "arm_compute/runtime/Tensor.h"
35
36namespace arm_compute
37{
Sheri Zhangac6499a2021-02-10 15:32:38 +000038/** Basic function to reshape the weights of Fully Connected layer with Neon. This function calls the following kernels:
Anthony Barbier6ff3b192017-09-04 18:44:23 +010039 *
Anthony Barbier6ff3b192017-09-04 18:44:23 +010040 * @note The fully connected layer accepts "weights" tensors only with 2 dimensions.
41 */
Teresa Charlind1dc09c2021-03-04 15:24:45 +000042class NEFullyConnectedLayerReshapeWeights : public IFunction
Anthony Barbier6ff3b192017-09-04 18:44:23 +010043{
44public:
Michalis Spyrouebcebf12020-10-21 00:04:14 +010045 /** Constructor */
Teresa Charlind1dc09c2021-03-04 15:24:45 +000046 NEFullyConnectedLayerReshapeWeights();
Michalis Spyrouebcebf12020-10-21 00:04:14 +010047 /** Prevent instances of this class from being copied (As this class contains pointers) */
48 NEFullyConnectedLayerReshapeWeights(const NEFullyConnectedLayerReshapeWeights &) = delete;
49 /** Prevent instances of this class from being copied (As this class contains pointers) */
50 NEFullyConnectedLayerReshapeWeights &operator=(const NEFullyConnectedLayerReshapeWeights &) = delete;
51 /** Prevent instances of this class from being moved (As this class contains non movable objects) */
52 NEFullyConnectedLayerReshapeWeights(NEFullyConnectedLayerReshapeWeights &&) = delete;
53 /** Prevent instances of this class from being moved (As this class contains non movable objects) */
54 NEFullyConnectedLayerReshapeWeights &operator=(NEFullyConnectedLayerReshapeWeights &&) = delete;
55 /** Default destructor */
Teresa Charlind1dc09c2021-03-04 15:24:45 +000056 ~NEFullyConnectedLayerReshapeWeights();
Anthony Barbier6ff3b192017-09-04 18:44:23 +010057 /** Set the input and output tensors.
58 *
Georgios Pinitas33843562019-12-10 13:33:18 +000059 * @param[in] input Weights tensor. The weights must be 2 dimensional. Data types supported: QASYMM8/QASYMM8_SIGNED/F16/F32.
Giorgio Arenaa855af12018-07-16 17:20:38 +010060 * @param[out] output Destination tensor. Data type supported: Same as @p input.
Anthony Barbier6ff3b192017-09-04 18:44:23 +010061 */
Giorgio Arenaa855af12018-07-16 17:20:38 +010062 void configure(const ITensor *input, ITensor *output);
Giorgio Arena6200fa42018-07-06 17:06:36 +010063 /** Static function to check if given info will lead to a valid configuration of @ref NEFullyConnectedLayerReshapeWeights
Ioan-Cristian Szabob4e3e1c2017-11-30 17:17:17 +000064 *
Georgios Pinitas33843562019-12-10 13:33:18 +000065 * @param[in] input Weights tensor info. The weights must be 2 dimensional. Data types supported: QASYMM8/QASYMM8_SIGNED/F16/F32.
Giorgio Arenaa855af12018-07-16 17:20:38 +010066 * @param[in] output Destination tensor info. Data type supported: Same as @p input.
Ioan-Cristian Szabob4e3e1c2017-11-30 17:17:17 +000067 *
68 * @return a status
69 */
Giorgio Arenaa855af12018-07-16 17:20:38 +010070 static Status validate(const ITensorInfo *input, const ITensorInfo *output);
Teresa Charlind1dc09c2021-03-04 15:24:45 +000071
72 // Inherited methods overridden
73 void run() override;
74
75private:
76 struct Impl;
77 std::unique_ptr<Impl> _impl;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010078};
79
Michalis Spyrou1a569a32019-09-10 17:20:34 +010080namespace weights_transformations
81{
82/** Basic function to manage the reshape weights generated from @ref NEFullyConnectedLayerReshapeWeights */
83class NEFullyConnectedLayerReshapeWeightsManaged : public ITransformWeights
84{
85public:
86 void run() override
87 {
88 _output.allocator()->allocate();
89 _func.run();
90 _reshape_run = true;
91 }
92
93 void release() override
94 {
95 _output.allocator()->free();
96 }
97
98 ITensor *get_weights() override
99 {
100 return &_output;
101 }
102
103 uint32_t uid() override
104 {
105 return _uid;
106 }
107
108 void configure(const ITensor *input)
109 {
110 _func.configure(input, &_output);
111 }
112
113private:
114 static constexpr uint32_t _uid = 0x0;
115 Tensor _output{};
116 NEFullyConnectedLayerReshapeWeights _func{};
117};
118} // namespace weights_transformations
119
Sheri Zhangac6499a2021-02-10 15:32:38 +0000120/** Basic function to compute a Fully Connected layer on Neon. This function calls the following Neon kernels:
Giorgio Arenaa855af12018-07-16 17:20:38 +0100121 * -# @ref NEIm2ColKernel (called when the input comes from a convolutional layer)
122 * -# @ref NEFullyConnectedLayerReshapeWeights (if @p are_weights_reshaped is set to false and transpose_weights is set to true ) (called once)
123 * -# @ref NEGEMMMatrixMultiplyKernel or @ref NEGEMMLowpMatrixMultiplyCore (if quantized asymmetric)
SiCong Liadb32912020-02-17 16:39:27 +0000124 * -# @ref NEGEMMMatrixAdditionKernel or @ref NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPoint (if quantized asymmetric) (if @p biases is not equal to nullptr)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100125 *
126 * @note The fully connected layer accepts "weights" tensors only with 2 dimensions.
127 */
128class NEFullyConnectedLayer : public IFunction
129{
130public:
131 /** Constructor */
Michalis Spyrou1a569a32019-09-10 17:20:34 +0100132 NEFullyConnectedLayer(std::shared_ptr<IMemoryManager> memory_manager = nullptr, IWeightsManager *weights_manager = nullptr);
Georgios Pinitas1562be32018-03-08 19:09:19 +0000133 /** Prevent instances of this class from being copied (As this class contains pointers) */
134 NEFullyConnectedLayer(const NEFullyConnectedLayer &) = delete;
Michalis Spyrou770dfeb2020-11-04 18:55:34 +0000135 /** Prevent instances of this class from being moved (As this class contains pointers) */
136 NEFullyConnectedLayer(NEFullyConnectedLayer &&) = delete;
Georgios Pinitas1562be32018-03-08 19:09:19 +0000137 /** Prevent instances of this class from being copied (As this class contains pointers) */
138 NEFullyConnectedLayer &operator=(const NEFullyConnectedLayer &) = delete;
Michalis Spyrou770dfeb2020-11-04 18:55:34 +0000139 /** Prevent instances of this class from being moved (As this class contains pointers) */
140 NEFullyConnectedLayer &operator=(NEFullyConnectedLayer &&) = delete;
Michalis Spyrouebcebf12020-10-21 00:04:14 +0100141 /** Default destructor */
142 ~NEFullyConnectedLayer();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100143 /** Set the input and output tensors.
144 *
Michele Di Giorgio9c700372020-01-08 11:33:44 +0000145 * @param[in] input Source tensor. Data type supported: QASYMM8/QASYMM8_SIGNED/F16/F32.
Giorgio Arenaa855af12018-07-16 17:20:38 +0100146 * @param[in] weights Weights tensor. The weights must be 2 dimensional.
147 * If this function is called after a Convolution Layer, the (transposed) weights will have as many rows as the product of the first 3 input's dimensions.
148 * If it is called after another FullyConnected Layer, the (transposed) weights will have as many rows as the input's first dimension.
149 * Data type supported: Same as @p input.
Michele Di Giorgio9c700372020-01-08 11:33:44 +0000150 * @param[in] biases Bias tensor. Can be nullptr. Data type supported: Same as @p weights, S32 if @p weights is QASYMM8/QASYMM8_SIGNED.
Giorgio Arenaa855af12018-07-16 17:20:38 +0100151 * @param[out] output Destination tensor. Its shape should be equal to the output of a matrix multiplication between:
152 * - The output of im2col on the input and the (transposed) 2D weights, if the function is called after a Convolution Layer
153 * - The input tensor and the (transposed) 2D weights, if the function is called after another FullyConnected Layer.
154 * Data type supported: Same as @p input.
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100155 * @param[in] fc_info (Optional) Fully connected layer additional info
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100156 */
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100157 void configure(const ITensor *input, const ITensor *weights, const ITensor *biases, ITensor *output,
158 FullyConnectedLayerInfo fc_info = FullyConnectedLayerInfo());
Giorgio Arenaa855af12018-07-16 17:20:38 +0100159 /** Static function to check if given info will lead to a valid configuration of @ref NEFullyConnectedLayer
Ioan-Cristian Szabob4e3e1c2017-11-30 17:17:17 +0000160 *
Michele Di Giorgio9c700372020-01-08 11:33:44 +0000161 * @param[in] input Source tensor info. Data type supported: QASYMM8/QASYMM8_SIGNED/F16/F32.
Michele Di Giorgiof29d1b72019-10-29 10:58:13 +0000162 * @param[in] weights Weights tensor info. The weights must be 2 dimensional.
163 * If this function is called after a Convolution Layer, the (transposed) weights will have as many rows as the product of the first 3 input's dimensions.
164 * If it is called after another FullyConnected Layer, the (transposed) weights will have as many rows as the input's first dimension.
165 * Data type supported: Same as @p input.
Michele Di Giorgio9c700372020-01-08 11:33:44 +0000166 * @param[in] biases Bias tensor. Can be nullptr. Data type supported: Same as @p weights, S32 if @p weights is QASYMM8/QASYMM8_SIGNED.
Michele Di Giorgiof29d1b72019-10-29 10:58:13 +0000167 * @param[in] output Destination tensor info. Its shape should be equal to the output of a matrix multiplication between:
168 * - The output of im2col on the input and the (transposed) 2D weights, if the function is called after a Convolution Layer
169 * - The input tensor and the (transposed) 2D weights, if the function is called after another FullyConnected Layer.
170 * Data type supported: Same as @p input.
171 * @param[in] fc_info (Optional) Fully connected layer additional info
Ioan-Cristian Szabob4e3e1c2017-11-30 17:17:17 +0000172 *
173 * @return a status
174 */
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100175 static Status validate(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *biases, const ITensorInfo *output,
176 FullyConnectedLayerInfo fc_info = FullyConnectedLayerInfo());
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100177
178 //Inherited methods override
179 void run() override;
Georgios Pinitas72219332018-06-05 14:56:06 +0100180 void prepare() override;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100181
182private:
SiCongLi2e5fd632020-03-02 15:39:15 +0000183 void configure_fc_fc(const ITensor *input, const ITensor *weights, const ITensor *biases, ITensor *output, const ActivationLayerInfo &act);
184 void configure_conv_fc(const ITensor *input, const ITensor *weights, const ITensor *biases, ITensor *output, const ActivationLayerInfo &act);
185 void configure_mm(const ITensor *input, const ITensor *weights, const ITensor *biases, ITensor *output, const ActivationLayerInfo &act);
Giorgio Arenaa855af12018-07-16 17:20:38 +0100186
Michalis Spyrou1a569a32019-09-10 17:20:34 +0100187 MemoryGroup _memory_group;
188 IWeightsManager *_weights_manager;
Georgios Pinitase2696b12020-12-03 20:37:43 +0000189 NEFlattenLayer _flatten;
Michalis Spyrou1a569a32019-09-10 17:20:34 +0100190 NEConvertFullyConnectedWeights _convert_weights;
191 weights_transformations::NEConvertFullyConnectedWeightsManaged _convert_weights_managed;
192 NEFullyConnectedLayerReshapeWeights _reshape_weights_function;
193 weights_transformations::NEFullyConnectedLayerReshapeWeightsManaged _reshape_weights_managed_function;
194 NEGEMM _mm_gemm;
195 NEGEMMLowpMatrixMultiplyCore _mm_gemmlowp;
Michalis Spyrou1a569a32019-09-10 17:20:34 +0100196 Tensor _flatten_output;
Michalis Spyrou1a569a32019-09-10 17:20:34 +0100197 Tensor _converted_weights_output;
198 Tensor _reshape_weights_output;
199 const ITensor *_original_weights;
200 bool _are_weights_converted;
201 bool _are_weights_reshaped;
202 bool _is_fc_after_conv;
SiCongLi2e5fd632020-03-02 15:39:15 +0000203 bool _is_quantized_asymmetric;
Michalis Spyrou1a569a32019-09-10 17:20:34 +0100204 bool _is_prepared;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100205};
Georgios Pinitas1562be32018-03-08 19:09:19 +0000206} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +0000207#endif /* ARM_COMPUTE_NEFULLYCONNECTEDLAYER_H */