blob: e63e7169b09b042c50b6a65adef277c0dc177ff9 [file] [log] [blame]
Manuel Bottini29599d02021-07-06 15:01:35 +01001/*
2 * Copyright (c) 2021 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 */
Georgios Pinitas19884632021-08-16 12:38:54 +010024#ifndef ARM_COMPUTE_CPU_GEMM_CONV2D_H
25#define ARM_COMPUTE_CPU_GEMM_CONV2D_H
Manuel Bottini29599d02021-07-06 15:01:35 +010026
27#include "arm_compute/core/TensorInfo.h"
28#include "arm_compute/core/Types.h"
Georgios Pinitas7891a732021-08-20 21:39:25 +010029#include "src/cpu/ICpuOperator.h"
Manuel Bottini29599d02021-07-06 15:01:35 +010030
31#include <memory>
32
33namespace arm_compute
34{
35namespace cpu
36{
37class CpuGemm;
38class CpuGemmLowpMatrixMultiplyCore;
39class CpuGemmLowpOutputStage;
40namespace kernels
41{
42class CpuWeightsReshapeKernel;
43class CpuIm2ColKernel;
44class CpuCol2ImKernel;
45class CpuReshapeKernel;
46} // namespace kernels
47
48/** Basic function to compute the convolution layer. This function calls the following kernels/functions:
49 *
50 * -# @ref cpu::kernels::CpuIm2ColKernel
51 * -# @ref CpuGemm (if the data type is BFLOAT16/FP16/FP32)
52 * -# @ref CpuGemmLowpMatrixMultiplyCore (if the data type is QASYMM8/QASYMM8_SIGNED)
53 * -# @ref CpuGemmLowpOutputStage (if the data type is QASYMM8/QASYMM8_SIGNED)
54 * -# @ref cpu::kernels::CpuCol2ImKernel (if NCHW data layout)
55 * -# @ref kernels::CpuWeightsReshapeKernel
56 *
57 */
Georgios Pinitas19884632021-08-16 12:38:54 +010058class CpuGemmConv2d : public ICpuOperator
Manuel Bottini29599d02021-07-06 15:01:35 +010059{
60public:
61 /** Constructor */
Georgios Pinitas19884632021-08-16 12:38:54 +010062 CpuGemmConv2d();
Manuel Bottini29599d02021-07-06 15:01:35 +010063 /** Prevent instances of this class from being copied (As this class contains pointers) */
Georgios Pinitas19884632021-08-16 12:38:54 +010064 CpuGemmConv2d(const CpuGemmConv2d &) = delete;
Manuel Bottini29599d02021-07-06 15:01:35 +010065 /** Prevent instances of this class from being moved (As this class contains non movable objects) */
Georgios Pinitas19884632021-08-16 12:38:54 +010066 CpuGemmConv2d(CpuGemmConv2d &&) = delete;
Manuel Bottini29599d02021-07-06 15:01:35 +010067 /** Prevent instances of this class from being copied (As this class contains pointers) */
Georgios Pinitas19884632021-08-16 12:38:54 +010068 CpuGemmConv2d &operator=(const CpuGemmConv2d &) = delete;
Manuel Bottini29599d02021-07-06 15:01:35 +010069 /** Prevent instances of this class from being moved (As this class contains non movable objects) */
Georgios Pinitas19884632021-08-16 12:38:54 +010070 CpuGemmConv2d &operator=(CpuGemmConv2d &&) = delete;
Manuel Bottini29599d02021-07-06 15:01:35 +010071 /** Destructor */
Georgios Pinitas19884632021-08-16 12:38:54 +010072 ~CpuGemmConv2d();
Manuel Bottini29599d02021-07-06 15:01:35 +010073 /** Set the input and output tensors.
74 *
75 * Valid data layouts:
76 * - NHWC
77 * - NCHW
78 *
79 * Valid data type configurations:
80 * |src0 |src1 |src2 |dst |
81 * |:--------------|:------------------|:--------|:--------------|
82 * |F16 |F16 |F16 |F16 |
83 * |F32 |F32 |F32 |F32 |
84 * |BFLOAT16 |BFLOAT16 |BFLOAT16 |BFLOAT16 |
85 * |QASYMM8 |QASYMM8 |S32 |QASYMM8 |
86 * |QASYMM8 |QSYMM8_PER_CHANNEL |S32 |QASYMM8 |
87 * |QASYMM8_SIGNED |QASYMM8_SIGNED |S32 |QASYMM8_SIGNED |
88 * |QASYMM8_SIGNED |QSYMM8_PER_CHANNEL |S32 |QASYMM8_SIGNED |
89 *
Georgios Pinitas69a9ac42021-07-22 13:30:13 +010090 * @param[in] src Source tensor info. 3 lower dimensions represent a single input [width, height, IFM],
91 * while every optional dimension from 4 and above represent a batch of inputs.
92 * Data types supported: QASYMM8/QASYMM8_SIGNED/BFLOAT16/F16/F32.
93 * @param[in] weights Weights tensor info. Weights are 4D tensor with dimensions [kernel_x, kernel_y, IFM, OFM].
94 * Data type supported: QASYMM8/QASYMM8_SIGNED/QSYMM8_PER_CHANNEL/BFLOAT16/F16/F32.
95 * @param[in] biases Biases tensor info. Shared biases supported. Biases are 1D tensor with dimensions [OFM].
96 * Data type supported: Should match @p input data type, except for input of QASYMM8/QASYMM8_SIGNED type where biases should be of S32 type.
97 * @param[out] dst Destination tensor info. 3 lower dimensions represent a single output [width, height, OFM], while the rest represent batch of outputs.
98 * Data types supported: Same as @p input.
99 * @param[in] conv_info Contains padding and stride information described in @ref PadStrideInfo.
100 * @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
101 * tensor has also been transposed with cpu::kernels::CpuGemmTranspose1xWKernel. Data type supported: Same as @p input.
102 * @param[in] dilation (Optional) Dilation, in elements, across x and y. Defaults to (1, 1).
103 * @param[in] act_info (Optional) Activation layer information in case of a fused activation. Only RELU, BOUNDED_RELU and LU_BOUNDED_RELU supported.
104 * @param[in] enable_fast_math (Optional) Enable fast math computation. In case this flag were set, the function could dispatch the fastest implementation
105 * available which may introduce a drop of accuracy as well. Default is false
106 * @param[in] num_groups (Optional) Number of groups when performing a grouped convolution. num_groups != 1 is not supported
Manuel Bottini29599d02021-07-06 15:01:35 +0100107 */
108 void configure(const ITensorInfo *src, const ITensorInfo *weights, const ITensorInfo *biases, ITensorInfo *dst, const PadStrideInfo &conv_info, const WeightsInfo &weights_info = WeightsInfo(),
Georgios Pinitas69a9ac42021-07-22 13:30:13 +0100109 const Size2D &dilation = Size2D(1U, 1U), const ActivationLayerInfo &act_info = ActivationLayerInfo(), bool enable_fast_math = false, unsigned int num_groups = 1);
Manuel Bottini29599d02021-07-06 15:01:35 +0100110 /** Static function to check if given info will lead to a valid configuration
111 *
112 * Similar to CpuGemmConvolution::configure()
113 *
114 * @return a status
115 */
116 static Status validate(const ITensorInfo *src, const ITensorInfo *weights, const ITensorInfo *biases, const ITensorInfo *output, const PadStrideInfo &conv_info,
Georgios Pinitas69a9ac42021-07-22 13:30:13 +0100117 const WeightsInfo &weights_info = WeightsInfo(), const Size2D &dilation = Size2D(1U, 1U), const ActivationLayerInfo &act_info = ActivationLayerInfo(),
118 bool enable_fast_math = false, unsigned int num_groups = 1);
Manuel Bottini29599d02021-07-06 15:01:35 +0100119
120 // Inherited methods overridden:
121 void run(ITensorPack &tensors) override;
122 void prepare(ITensorPack &tensors) override;
123 experimental::MemoryRequirements workspace() const override;
124
125private:
126 /** Configures the appropriate matrix multiply routine
127 *
Georgios Pinitas69a9ac42021-07-22 13:30:13 +0100128 * @param[in] src Input tensor info. Data types supported: QASYMM8/QASYMM8_SIGNED/BFLOAT16/F16/F32.
129 * @param[in] weights Weights tensor info. Data type supported: QASYMM8/QASYMM8_SIGNED/QSYMM8_PER_CHANNEL/BFLOAT16/F16/F32.
130 * @param[in] biases Biases tensor info. Shared biases supported. Biases are 1D tensor with dimensions [OFM].
131 * Data type supported: Should match @p input data type, except for input of QASYMM8/QASYMM8_SIGNED type where biases should be of S32 type.
132 * @param[out] dst Output tensor info. Data types supported: Same as @p input,
133 * except for input of QASYMM8/QASYMM8_SIGNED type where output should be of S32 type.
134 * @param[in] act_info (Optional) Activation layer information in case of a fused activation. Only RELU, BOUNDED_RELU and LU_BOUNDED_RELU supported.
135 * @param[in] enable_fast_math (Optional) Enable fast math computation. In case this flag were set, the function could dispatch the fastest implementation
136 * available which may introduce a drop of accuracy as well. Default is false
137 * @param[in] gemm_3d_depth (Optional) Depth of GEMM 3D (Defaults to 1)
Manuel Bottini29599d02021-07-06 15:01:35 +0100138 */
139 void configure_mm(const ITensorInfo *src, const ITensorInfo *weights, const ITensorInfo *biases, ITensorInfo *output, const ActivationLayerInfo &act_info = ActivationLayerInfo(),
Georgios Pinitas69a9ac42021-07-22 13:30:13 +0100140 bool enable_fast_math = false, int gemm_3d_depth = 1);
Manuel Bottini29599d02021-07-06 15:01:35 +0100141 /** Static function to check if given info will lead to a valid configuration of @ref NEGEMMConvolutionLayer matrix multiply routines
142 *
Georgios Pinitas69a9ac42021-07-22 13:30:13 +0100143 * @param[in] src Input tensor info. Data types supported: QASYMM8/QASYMM8_SIGNED/BFLOAT16/F16/F32.
144 * @param[in] weights Weights tensor info. Data type supported: QASYMM8/QASYMM8_SIGNED/QSYMM8_PER_CHANNEL/BFLOAT16/F16/F32.
145 * @param[in] biases Biases tensor info. Shared biases supported. Biases are 1D tensor with dimensions [OFM].
146 * Data type supported: Should match @p input data type, except for input of QASYMM8/QASYMM8_SIGNED type where biases should be of S32 type.
147 * @param[in] dst Output tensor info. Data types supported: Same as @p input,
148 * except for input of QASYMM8/QASYMM8_SIGNED type where output should be of S32 type.
149 * @param[in] act_info (Optional) Activation layer information in case of a fused activation. Only RELU, BOUNDED_RELU and LU_BOUNDED_RELU supported.
150 * @param[in] enable_fast_math (Optional) Enable fast math computation. In case this flag were set, the function could dispatch the fastest implementation
151 * available which may introduce a drop of accuracy as well. Default is false
152 * @param[in] gemm_3d_depth (Optional) Depth of GEMM 3D (Defaults to 1)
153 * @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)
Manuel Bottini29599d02021-07-06 15:01:35 +0100154 *
155 * @return a status
156 */
157 static Status validate_mm(const ITensorInfo *src, const ITensorInfo *weights, const ITensorInfo *biases, const ITensorInfo *dst, const ActivationLayerInfo &act_info = ActivationLayerInfo(),
Georgios Pinitas69a9ac42021-07-22 13:30:13 +0100158 bool enable_fast_math = false, int gemm_3d_depth = 1, bool skip_im2col = false);
Manuel Bottini29599d02021-07-06 15:01:35 +0100159 /** Static function to check if GEMM3D is supported in @ref NEGEMM or in @ref CpuGemmMLowpMatrixMultiplyCore
160 *
161 * @param[in] src Input tensor info. Data types supported: QASYMM8/QASYMM8_SIGNED/BFLOAT16/F16/F32.
162 * @param[in] weights Weights tensor info. Data types supported: QASYMM8/QASYMM8_SIGNED/BFLOAT16/F16/F32.
163 * @param[in] act_info Activation layer information in case of a fused activation. Only RELU, BOUNDED_RELU and LU_BOUNDED_RELU supported.
164 * @param[in] gemm_3d_depth Depth of GEMM 3D
165 * @param[in] skip_im2col Flag which specifies if im2col has to be skipped. i.e. 1x1 convolution with NHWC data layout
166 *
167 * @return a status
168 */
169 static Status validate_gemm3d(const ITensorInfo *src, const ITensorInfo *weights, const ActivationLayerInfo &act_info, int gemm_3d_depth, bool skip_im2col);
170
171 enum AuxTensorIdx
172 {
173 // CpuGemmLowpMatrixMultiplyCore has up to 8 internal tensors
174 Im2ColOutput = 9,
175 WeightsReshaped,
176 GemmOutput,
Manuel Bottini29599d02021-07-06 15:01:35 +0100177 Count
178 };
179
180 std::unique_ptr<kernels::CpuWeightsReshapeKernel> _weights_reshape_kernel;
181 std::unique_ptr<cpu::kernels::CpuIm2ColKernel> _im2col_kernel;
182 std::unique_ptr<CpuGemm> _mm_gemm;
183 std::unique_ptr<CpuGemmLowpMatrixMultiplyCore> _mm_gemmlowp;
184 std::unique_ptr<kernels::CpuCol2ImKernel> _col2im_kernel;
185 std::unique_ptr<kernels::CpuReshapeKernel> _reshape_kernel;
186
187 TensorInfo _im2col_output;
188 TensorInfo _weights_reshaped;
189 TensorInfo _gemm_output;
190 TensorInfo _gemm_output_3d;
191
192 DataLayout _data_layout;
193
194 bool _skip_im2col;
195 bool _skip_col2im;
196 bool _is_quantized;
197 bool _is_prepared;
198
199 experimental::MemoryRequirements _aux_mem{ Count };
200};
201} // namespace cpu
202} // namespace arm_compute
Georgios Pinitas19884632021-08-16 12:38:54 +0100203#endif /* ARM_COMPUTE_CPU_GEMM_CONV2D_H */