blob: ae2563cfc7370fbea83cd722fde0b44a9addb62f [file] [log] [blame]
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +00001/*
2 * Copyright (c) 2017-2018 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#ifndef __ARM_COMPUTE_NEGEMMCONVOLUTIONLAYER_H__
25#define __ARM_COMPUTE_NEGEMMCONVOLUTIONLAYER_H__
26
27#include "arm_compute/runtime/IFunction.h"
28
Michalis Spyroue2503892018-04-23 15:17:31 +010029#include "arm_compute/core/NEON/kernels/NEArithmeticAdditionKernel.h"
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000030#include "arm_compute/core/NEON/kernels/NECol2ImKernel.h"
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000031#include "arm_compute/core/NEON/kernels/NEGEMMTranspose1xWKernel.h"
32#include "arm_compute/core/NEON/kernels/NEIm2ColKernel.h"
33#include "arm_compute/core/NEON/kernels/NEWeightsReshapeKernel.h"
34#include "arm_compute/core/Types.h"
35#include "arm_compute/runtime/MemoryGroup.h"
Isabella Gottardi3f217ec2018-02-12 14:59:19 +000036#include "arm_compute/runtime/NEON/functions/NEActivationLayer.h"
Gian Marco Iodice597a8562018-08-01 15:06:06 +010037#include "arm_compute/runtime/NEON/functions/NEGEMM.h"
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000038#include "arm_compute/runtime/NEON/functions/NEGEMMLowpMatrixMultiplyCore.h"
39#include "arm_compute/runtime/NEON/functions/NEGEMMLowpOutputStage.h"
Gian Marco Iodicedb9d46d2018-08-08 12:29:38 +010040#include "arm_compute/runtime/NEON/functions/NEReshapeLayer.h"
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000041#include "arm_compute/runtime/Tensor.h"
42
43#include <memory>
44
45namespace arm_compute
46{
47class ITensor;
48
Gian Marco Iodice597a8562018-08-01 15:06:06 +010049/** Function to reshape the weights. This function calls the following kernel:
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000050 * -# @ref NEWeightsReshapeKernel
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000051 */
52class NEConvolutionLayerReshapeWeights : public IFunction
53{
54public:
55 /** Constructor */
Gian Marco Iodice597a8562018-08-01 15:06:06 +010056 NEConvolutionLayerReshapeWeights();
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000057 /** Set the input and output tensors.
58 *
Gian Marco Iodice597a8562018-08-01 15:06:06 +010059 * @param[in] weights Weights tensor. Weights are 4D tensor with dimensions [kernel_x, kernel_y, IFM, OFM]. Data type supported: QASYMM8/F16/F32.
60 * @param[in] biases Biases tensor. Shared biases supported. Biases are 1D tensor with dimensions [OFM]. Data type supported: Same as @p weights.
61 * @param[out] output Destination tensor. Data types supported: Same as @p weights.
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000062 */
Gian Marco Iodice597a8562018-08-01 15:06:06 +010063 void configure(const ITensor *weights, const ITensor *biases, ITensor *output);
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000064 /** Static function to check if given info will lead to a valid configuration of @ref NEConvolutionLayerReshapeWeights
65 *
Gian Marco Iodice597a8562018-08-01 15:06:06 +010066 * @param[in] weights Weights tensor. Weights are 4D tensor with dimensions [kernel_x, kernel_y, IFM, OFM]. Data type supported: QASYMM8/F16/F32.
67 * @param[in] biases Biases tensor. Shared biases supported. Biases are 1D tensor with dimensions [OFM]. Data type supported: Same as @p weights.
68 * @param[in] output Destination tensor. Data types supported: Same as @p weights.
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000069 *
70 * @return an error status
71 */
Gian Marco Iodice597a8562018-08-01 15:06:06 +010072 static Status validate(const ITensorInfo *weights, const ITensorInfo *biases, const ITensorInfo *output);
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000073
74 // Inherited methods overridden:
75 void run() override;
76
77private:
Gian Marco Iodice597a8562018-08-01 15:06:06 +010078 NEWeightsReshapeKernel _weights_reshape_kernel;
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000079};
80
Gian Marco Iodice597a8562018-08-01 15:06:06 +010081/** Basic function to compute the convolution layer. This function calls the following NEON kernels/functions:
82 *
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000083 * -# @ref NEIm2ColKernel
Gian Marco Iodice597a8562018-08-01 15:06:06 +010084 * -# @ref NEGEMM (if the data type is FP32 or FP16)
85 * -# @ref NEGEMMLowpMatrixMultiplyCore (if the data type is QASYMM8)
86 * -# @ref NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPoint (if the data type is QASYMM8)
87 * -# @ref NEArithmeticAdditionKernel (if biases != nullptr and we have a 1x1 convolution with the NHWC data layout)
Gian Marco Iodicedb9d46d2018-08-08 12:29:38 +010088 * -# @ref NECol2ImKernel or @ref NEReshapeLayer (if NHWC and GEMM3D is not supported)
Gian Marco Iodice597a8562018-08-01 15:06:06 +010089 *
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000090 */
91class NEGEMMConvolutionLayer : public IFunction
92{
93public:
94 /** Constructor */
95 NEGEMMConvolutionLayer(const std::shared_ptr<IMemoryManager> &memory_manager = nullptr);
Georgios Pinitas1562be32018-03-08 19:09:19 +000096 /** Prevent instances of this class from being copied (As this class contains pointers) */
97 NEGEMMConvolutionLayer(const NEGEMMConvolutionLayer &) = delete;
98 /** Default move constructor */
99 NEGEMMConvolutionLayer(NEGEMMConvolutionLayer &&) = default;
100 /** Prevent instances of this class from being copied (As this class contains pointers) */
101 NEGEMMConvolutionLayer &operator=(const NEGEMMConvolutionLayer &) = delete;
102 /** Default move assignment operator */
103 NEGEMMConvolutionLayer &operator=(NEGEMMConvolutionLayer &&) = default;
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000104 /** Set the input and output tensors.
105 *
106 * @param[in] input Source tensor. 3 lower dimensions represent a single input [width, height, IFM],
107 * while every optional dimension from 4 and above represent a batch of inputs.
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +0100108 * Data types supported: QASYMM8/F32.
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000109 * @param[in] weights Weights tensor. Weights are 4D tensor with dimensions [kernel_x, kernel_y, IFM, OFM]. Data type supported: Same as @p input.
110 * @param[in] biases Biases tensor. Shared biases supported. Biases are 1D tensor with dimensions [OFM].
111 * Data type supported: Should match @p input data type, except for input of QASYMM8 type where biases should be of S32 type.
112 * @param[out] output Destination tensor. 3 lower dimensions represent a single output [width, height, OFM], while the rest represent batch of outputs.
113 * Data types supported: Same as @p input.
114 * @param[in] conv_info Contains padding and stride information described in @ref PadStrideInfo.
115 * @param[in] weights_info Specifies if the weights tensor has been reshaped with NEWeightsReshapeKernel. If this is not part of the fully connected layer the weights
116 * tensor has also been transposed with NEGEMMTranspose1xWKernel. Data type supported: Same as @p input.
Alex Gilday7da29b62018-03-23 14:16:00 +0000117 * @param[in] dilation (Optional) Dilation, in elements, across x and y. Defaults to (1, 1).
Isabella Gottardi3f217ec2018-02-12 14:59:19 +0000118 * @param[in] act_info (Optional) Activation layer information in case of a fused activation. Only RELU, BOUNDED_RELU and LU_BOUNDED_RELU supported.
Gian Marco Iodice916d1bc2018-08-13 11:20:41 +0100119 * @param[in] num_groups (Optional) Number of groups when performing a grouped convolution. num_groups != 1 is not supported
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000120 */
Alex Gilday7da29b62018-03-23 14:16:00 +0000121 void configure(const ITensor *input, const ITensor *weights, const ITensor *biases, ITensor *output, const PadStrideInfo &conv_info, const WeightsInfo &weights_info = WeightsInfo(),
Gian Marco Iodice916d1bc2018-08-13 11:20:41 +0100122 const Size2D &dilation = Size2D(1U, 1U), const ActivationLayerInfo &act_info = ActivationLayerInfo(), unsigned int num_groups = 1);
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000123 /** Static function to check if given info will lead to a valid configuration of @ref NEGEMMConvolutionLayer
124 *
125 * @param[in] input Source tensor. 3 lower dimensions represent a single input [width, height, IFM],
126 * while every optional dimension from 4 and above represent a batch of inputs.
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +0100127 * Data types supported: QASYMM8/F16/F32.
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000128 * @param[in] weights Weights tensor. Weights are 4D tensor with dimensions [kernel_x, kernel_y, IFM, OFM]. Data type supported:Same as @p input.
129 * @param[in] biases Biases tensor. Shared biases supported. Biases are 1D tensor with dimensions [OFM].
130 * Data type supported: Should match @p input data type, except for input of QASYMM8 type where biases should be of S32 type.
131 * @param[in] output Destination tensor. 3 lower dimensions represent a single output [width, height, OFM], while the rest represent batch of outputs.
132 * Data types supported: Same as @p input.
133 * @param[in] conv_info Contains padding and stride information described in @ref PadStrideInfo.
134 * @param[in] weights_info Specifies if the weights tensor has been reshaped with NEWeightsReshapeKernel. If this is not part of the fully connected layer the weights
135 * tensor has also been transposed with NEGEMMTranspose1xWKernel. Data type supported: Same as @p input.
Alex Gilday7da29b62018-03-23 14:16:00 +0000136 * @param[in] dilation (Optional) Dilation, in elements, across x and y. Defaults to (1, 1).
Isabella Gottardi3f217ec2018-02-12 14:59:19 +0000137 * @param[in] act_info (Optional) Activation layer information in case of a fused activation. Only RELU, BOUNDED_RELU and LU_BOUNDED_RELU supported.
Gian Marco Iodice916d1bc2018-08-13 11:20:41 +0100138 * @param[in] num_groups (Optional) Number of groups when performing a grouped convolution. num_groups != 1 is not supported
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000139 *
140 * @return a status
141 */
142 static Status validate(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *biases, const ITensorInfo *output, const PadStrideInfo &conv_info,
Gian Marco Iodice916d1bc2018-08-13 11:20:41 +0100143 const WeightsInfo &weights_info = WeightsInfo(), const Size2D &dilation = Size2D(1U, 1U), const ActivationLayerInfo &act_info = ActivationLayerInfo(), unsigned int num_groups = 1);
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000144
145 // Inherited methods overridden:
146 void run() override;
Georgios Pinitas72219332018-06-05 14:56:06 +0100147 void prepare() override;
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000148
149private:
150 /** Configures the appropriate matrix multiply routine
151 *
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100152 * @param[in] input Input tensor. Data types supported: QASYMM8/F16/F32.
153 * @param[in] weights Weights tensor. Data type supported: Same as @p input.
154 * @param[out] output Output tensor. Data types supported: Same as @p input,
155 * except for input of QASYMM8 type where output should be of S32 type.
156 * @param[in] gemm_3d_depth (Optional) Depth of GEMM 3D (Defaults to 1)
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000157 */
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100158 void configure_mm(const ITensor *input, const ITensor *weights, ITensor *output, int gemm_3d_depth = 1);
159 /** Static function to check if given info will lead to a valid configuration of @ref NEGEMMConvolutionLayer matrix multiply routines
160 *
161 * @param[in] input Input tensor. Data types supported: QASYMM8/F16/F32.
162 * @param[in] weights Weights tensor. Data type supported: Same as @p input.
163 * @param[in] output Output tensor. Data types supported: Same as @p input,
164 * except for input of QASYMM8 type where output should be of S32 type.
165 * @param[in] gemm_3d_depth (Optional) Depth of GEMM 3D (Defaults to 1)
166 * @param[in] skip_im2col (Optional) Flag which specifies if im2col has to be skipped. i.e. 1x1 convolution with NHWC data layout. (Default to false)
167 *
168 * @return a status
169 */
170 static Status validate_mm(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *output, int gemm_3d_depth = 1, bool skip_im2col = false);
Gian Marco Iodicedb9d46d2018-08-08 12:29:38 +0100171 /** Static function to check if GEMM3D is supported in @ref NEGEMM or in @ref NEGEMMLowpMatrixMultiplyCore
172 *
173 * @param[in] data_type Input data type
174 * @param[in] gemm_3d_depth Depth of GEMM 3D
175 * @param[in] skip_im2col Flag which specifies if im2col has to be skipped. i.e. 1x1 convolution with NHWC data layout
176 *
177 * @return a status
178 */
179 static Status validate_gemm3d(DataType data_type, int gemm_3d_depth, bool skip_im2col);
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000180
181private:
182 MemoryGroup _memory_group;
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000183 NEConvolutionLayerReshapeWeights _reshape_weights;
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100184 NEIm2ColKernel _im2col_kernel;
185 NEGEMM _mm_gemm;
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000186 NEGEMMLowpMatrixMultiplyCore _mm_gemmlowp;
187 NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPoint _gemmlowp_output_stage;
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100188 NECol2ImKernel _col2im_kernel;
Isabella Gottardi3f217ec2018-02-12 14:59:19 +0000189 NEActivationLayer _activationlayer_function;
Michalis Spyroue2503892018-04-23 15:17:31 +0100190 NEArithmeticAdditionKernel _add_bias_kernel;
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000191
Georgios Pinitas1562be32018-03-08 19:09:19 +0000192 const ITensor *_original_weights;
193
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100194 Tensor _im2col_output;
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000195 Tensor _weights_reshaped;
196 Tensor _gemm_output;
197 Tensor _tmp_output;
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000198
Michalis Spyroue2503892018-04-23 15:17:31 +0100199 DataLayout _data_layout;
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100200
201 bool _append_bias;
202 bool _skip_im2col;
203 bool _skip_col2im;
204 bool _is_quantized;
205 bool _is_activationlayer_enabled;
206 bool _is_prepared;
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000207};
Georgios Pinitas041f36d2018-09-18 18:38:37 +0100208} // namespace arm_compute
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000209#endif /* __ARM_COMPUTE_NECONVOLUTIONGEMMLAYER_H__ */