blob: db09da45eec479d50da312c3037ca0facd4e7d81 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Michele Di Giorgio9c700372020-01-08 11:33:44 +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 */
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
Giorgio Arena368e6352018-08-20 15:06:07 +010029#include "arm_compute/core/NEON/kernels/NEFlattenLayerKernel.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010030#include "arm_compute/core/NEON/kernels/NETransposeKernel.h"
Georgios Pinitasbaf174e2017-09-08 19:47:30 +010031#include "arm_compute/runtime/MemoryGroup.h"
Georgios Pinitasef776a82018-07-25 17:57:49 +010032#include "arm_compute/runtime/NEON/functions/NEConvertFullyConnectedWeights.h"
Giorgio Arenaa855af12018-07-16 17:20:38 +010033#include "arm_compute/runtime/NEON/functions/NEGEMM.h"
34#include "arm_compute/runtime/NEON/functions/NEGEMMLowpMatrixMultiplyCore.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010035#include "arm_compute/runtime/Tensor.h"
36
37namespace arm_compute
38{
39/** Basic function to reshape the weights of Fully Connected layer with NEON. This function calls the following kernels:
40 *
Giorgio Arenaa855af12018-07-16 17:20:38 +010041 * -# @ref NETransposeKernel
Anthony Barbier6ff3b192017-09-04 18:44:23 +010042 *
43 * @note The fully connected layer accepts "weights" tensors only with 2 dimensions.
44 */
Michalis Spyrou95abfdd2018-11-28 14:59:47 +000045class NEFullyConnectedLayerReshapeWeights : public INESimpleFunctionNoBorder
Anthony Barbier6ff3b192017-09-04 18:44:23 +010046{
47public:
Anthony Barbier6ff3b192017-09-04 18:44:23 +010048 /** Set the input and output tensors.
49 *
Georgios Pinitas33843562019-12-10 13:33:18 +000050 * @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 +010051 * @param[out] output Destination tensor. Data type supported: Same as @p input.
Anthony Barbier6ff3b192017-09-04 18:44:23 +010052 */
Giorgio Arenaa855af12018-07-16 17:20:38 +010053 void configure(const ITensor *input, ITensor *output);
Giorgio Arena6200fa42018-07-06 17:06:36 +010054 /** Static function to check if given info will lead to a valid configuration of @ref NEFullyConnectedLayerReshapeWeights
Ioan-Cristian Szabob4e3e1c2017-11-30 17:17:17 +000055 *
Georgios Pinitas33843562019-12-10 13:33:18 +000056 * @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 +010057 * @param[in] output Destination tensor info. Data type supported: Same as @p input.
Ioan-Cristian Szabob4e3e1c2017-11-30 17:17:17 +000058 *
59 * @return a status
60 */
Giorgio Arenaa855af12018-07-16 17:20:38 +010061 static Status validate(const ITensorInfo *input, const ITensorInfo *output);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010062};
63
Michalis Spyrou1a569a32019-09-10 17:20:34 +010064namespace weights_transformations
65{
66/** Basic function to manage the reshape weights generated from @ref NEFullyConnectedLayerReshapeWeights */
67class NEFullyConnectedLayerReshapeWeightsManaged : public ITransformWeights
68{
69public:
70 void run() override
71 {
72 _output.allocator()->allocate();
73 _func.run();
74 _reshape_run = true;
75 }
76
77 void release() override
78 {
79 _output.allocator()->free();
80 }
81
82 ITensor *get_weights() override
83 {
84 return &_output;
85 }
86
87 uint32_t uid() override
88 {
89 return _uid;
90 }
91
92 void configure(const ITensor *input)
93 {
94 _func.configure(input, &_output);
95 }
96
97private:
98 static constexpr uint32_t _uid = 0x0;
99 Tensor _output{};
100 NEFullyConnectedLayerReshapeWeights _func{};
101};
102} // namespace weights_transformations
103
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100104/** Basic function to compute a Fully Connected layer on NEON. This function calls the following NEON kernels:
Giorgio Arenaa855af12018-07-16 17:20:38 +0100105 * -# @ref NEIm2ColKernel (called when the input comes from a convolutional layer)
106 * -# @ref NEFullyConnectedLayerReshapeWeights (if @p are_weights_reshaped is set to false and transpose_weights is set to true ) (called once)
107 * -# @ref NEGEMMMatrixMultiplyKernel or @ref NEGEMMLowpMatrixMultiplyCore (if quantized asymmetric)
SiCong Liadb32912020-02-17 16:39:27 +0000108 * -# @ref NEGEMMMatrixAdditionKernel or @ref NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPoint (if quantized asymmetric) (if @p biases is not equal to nullptr)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100109 *
110 * @note The fully connected layer accepts "weights" tensors only with 2 dimensions.
111 */
112class NEFullyConnectedLayer : public IFunction
113{
114public:
115 /** Constructor */
Michalis Spyrou1a569a32019-09-10 17:20:34 +0100116 NEFullyConnectedLayer(std::shared_ptr<IMemoryManager> memory_manager = nullptr, IWeightsManager *weights_manager = nullptr);
Georgios Pinitas1562be32018-03-08 19:09:19 +0000117 /** Prevent instances of this class from being copied (As this class contains pointers) */
118 NEFullyConnectedLayer(const NEFullyConnectedLayer &) = delete;
119 /** Default move constructor */
120 NEFullyConnectedLayer(NEFullyConnectedLayer &&) = default;
121 /** Prevent instances of this class from being copied (As this class contains pointers) */
122 NEFullyConnectedLayer &operator=(const NEFullyConnectedLayer &) = delete;
123 /** Default move assignment operator */
124 NEFullyConnectedLayer &operator=(NEFullyConnectedLayer &&) = default;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100125 /** Set the input and output tensors.
126 *
Michele Di Giorgio9c700372020-01-08 11:33:44 +0000127 * @param[in] input Source tensor. Data type supported: QASYMM8/QASYMM8_SIGNED/F16/F32.
Giorgio Arenaa855af12018-07-16 17:20:38 +0100128 * @param[in] weights Weights tensor. The weights must be 2 dimensional.
129 * 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.
130 * If it is called after another FullyConnected Layer, the (transposed) weights will have as many rows as the input's first dimension.
131 * Data type supported: Same as @p input.
Michele Di Giorgio9c700372020-01-08 11:33:44 +0000132 * @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 +0100133 * @param[out] output Destination tensor. Its shape should be equal to the output of a matrix multiplication between:
134 * - The output of im2col on the input and the (transposed) 2D weights, if the function is called after a Convolution Layer
135 * - The input tensor and the (transposed) 2D weights, if the function is called after another FullyConnected Layer.
136 * Data type supported: Same as @p input.
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100137 * @param[in] fc_info (Optional) Fully connected layer additional info
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100138 */
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100139 void configure(const ITensor *input, const ITensor *weights, const ITensor *biases, ITensor *output,
140 FullyConnectedLayerInfo fc_info = FullyConnectedLayerInfo());
Giorgio Arenaa855af12018-07-16 17:20:38 +0100141 /** Static function to check if given info will lead to a valid configuration of @ref NEFullyConnectedLayer
Ioan-Cristian Szabob4e3e1c2017-11-30 17:17:17 +0000142 *
Michele Di Giorgio9c700372020-01-08 11:33:44 +0000143 * @param[in] input Source tensor info. Data type supported: QASYMM8/QASYMM8_SIGNED/F16/F32.
Michele Di Giorgiof29d1b72019-10-29 10:58:13 +0000144 * @param[in] weights Weights tensor info. The weights must be 2 dimensional.
145 * 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.
146 * If it is called after another FullyConnected Layer, the (transposed) weights will have as many rows as the input's first dimension.
147 * Data type supported: Same as @p input.
Michele Di Giorgio9c700372020-01-08 11:33:44 +0000148 * @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 +0000149 * @param[in] output Destination tensor info. Its shape should be equal to the output of a matrix multiplication between:
150 * - The output of im2col on the input and the (transposed) 2D weights, if the function is called after a Convolution Layer
151 * - The input tensor and the (transposed) 2D weights, if the function is called after another FullyConnected Layer.
152 * Data type supported: Same as @p input.
153 * @param[in] fc_info (Optional) Fully connected layer additional info
Ioan-Cristian Szabob4e3e1c2017-11-30 17:17:17 +0000154 *
155 * @return a status
156 */
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100157 static Status validate(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *biases, const ITensorInfo *output,
158 FullyConnectedLayerInfo fc_info = FullyConnectedLayerInfo());
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100159
160 //Inherited methods override
161 void run() override;
Georgios Pinitas72219332018-06-05 14:56:06 +0100162 void prepare() override;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100163
164private:
SiCong Liadb32912020-02-17 16:39:27 +0000165 void configure_fc_fc(const ITensor *input, const ITensor *weights, const ITensor *biases, ITensor *output);
166 void configure_conv_fc(const ITensor *input, const ITensor *weights, const ITensor *biases, ITensor *output);
167 void configure_mm(const ITensor *input, const ITensor *weights, const ITensor *biases, ITensor *output);
Giorgio Arenaa855af12018-07-16 17:20:38 +0100168
Michalis Spyrou1a569a32019-09-10 17:20:34 +0100169 MemoryGroup _memory_group;
170 IWeightsManager *_weights_manager;
171 NEFlattenLayerKernel _flatten_kernel;
172 NEConvertFullyConnectedWeights _convert_weights;
173 weights_transformations::NEConvertFullyConnectedWeightsManaged _convert_weights_managed;
174 NEFullyConnectedLayerReshapeWeights _reshape_weights_function;
175 weights_transformations::NEFullyConnectedLayerReshapeWeightsManaged _reshape_weights_managed_function;
176 NEGEMM _mm_gemm;
177 NEGEMMLowpMatrixMultiplyCore _mm_gemmlowp;
Michalis Spyrou1a569a32019-09-10 17:20:34 +0100178 Tensor _flatten_output;
Michalis Spyrou1a569a32019-09-10 17:20:34 +0100179 Tensor _converted_weights_output;
180 Tensor _reshape_weights_output;
181 const ITensor *_original_weights;
182 bool _are_weights_converted;
183 bool _are_weights_reshaped;
184 bool _is_fc_after_conv;
Michalis Spyrou1a569a32019-09-10 17:20:34 +0100185 bool _is_quantized;
186 bool _is_prepared;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100187};
Georgios Pinitas1562be32018-03-08 19:09:19 +0000188} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +0000189#endif /* ARM_COMPUTE_NEFULLYCONNECTEDLAYER_H */