blob: 6bcf56fb0bfe8679c3e0bc20f0dbbc615ebfa7ac [file] [log] [blame]
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +00001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2017-2020 Arm Limited.
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +00003 *
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_NEGEMMCONVOLUTIONLAYER_H
25#define ARM_COMPUTE_NEGEMMCONVOLUTIONLAYER_H
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000026
27#include "arm_compute/runtime/IFunction.h"
28
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000029#include "arm_compute/core/Types.h"
Michalis Spyrou1a569a32019-09-10 17:20:34 +010030#include "arm_compute/runtime/IWeightsManager.h"
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000031#include "arm_compute/runtime/MemoryGroup.h"
Gian Marco Iodice597a8562018-08-01 15:06:06 +010032#include "arm_compute/runtime/NEON/functions/NEGEMM.h"
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000033#include "arm_compute/runtime/NEON/functions/NEGEMMLowpMatrixMultiplyCore.h"
34#include "arm_compute/runtime/NEON/functions/NEGEMMLowpOutputStage.h"
Gian Marco Iodicedb9d46d2018-08-08 12:29:38 +010035#include "arm_compute/runtime/NEON/functions/NEReshapeLayer.h"
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000036#include "arm_compute/runtime/Tensor.h"
37
38#include <memory>
39
40namespace arm_compute
41{
42class ITensor;
Michalis Spyrouebcebf12020-10-21 00:04:14 +010043class NECol2ImKernel;
44class NEIm2ColKernel;
45class NEWeightsReshapeKernel;
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000046
Gian Marco Iodice597a8562018-08-01 15:06:06 +010047/** Function to reshape the weights. This function calls the following kernel:
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000048 * -# @ref NEWeightsReshapeKernel
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000049 */
50class NEConvolutionLayerReshapeWeights : public IFunction
51{
52public:
53 /** Constructor */
Gian Marco Iodice597a8562018-08-01 15:06:06 +010054 NEConvolutionLayerReshapeWeights();
Michalis Spyrou1a569a32019-09-10 17:20:34 +010055 /** Prevent instances of this class from being copied (As this class contains pointers) */
56 NEConvolutionLayerReshapeWeights(const NEConvolutionLayerReshapeWeights &) = delete;
57 /** Default move constructor */
58 NEConvolutionLayerReshapeWeights(NEConvolutionLayerReshapeWeights &&) = default;
59 /** Prevent instances of this class from being copied (As this class contains pointers) */
60 NEConvolutionLayerReshapeWeights &operator=(const NEConvolutionLayerReshapeWeights &) = delete;
61 /** Default move assignment operator */
62 NEConvolutionLayerReshapeWeights &operator=(NEConvolutionLayerReshapeWeights &&) = default;
Michalis Spyrouebcebf12020-10-21 00:04:14 +010063 /** Default destructor */
64 ~NEConvolutionLayerReshapeWeights();
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000065 /** Set the input and output tensors.
66 *
Georgios Pinitasc7b183a2020-03-06 18:12:09 +000067 * @param[in] weights Weights tensor. Weights are 4D tensor with dimensions [kernel_x, kernel_y, IFM, OFM].
Michele Di Giorgiof9b595a2020-07-03 13:34:52 +010068 * Data type supported: All.
Michele Di Giorgiof29d1b72019-10-29 10:58:13 +000069 * @param[in] biases Biases tensor. Shared biases supported. Biases are 1D tensor with dimensions [OFM].
Michele Di Giorgiof9b595a2020-07-03 13:34:52 +010070 * Data type supported: same as @p weights.
71 * @warning Appending biases to weights reshaped matrix is not supported for quantized asymmetric types.
72 * @param[out] output Destination tensor. Data types supported: same as @p weights.
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000073 */
Gian Marco Iodice597a8562018-08-01 15:06:06 +010074 void configure(const ITensor *weights, const ITensor *biases, ITensor *output);
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000075 /** Static function to check if given info will lead to a valid configuration of @ref NEConvolutionLayerReshapeWeights
76 *
Georgios Pinitasc7b183a2020-03-06 18:12:09 +000077 * @param[in] weights Weights tensor info. Weights are 4D tensor with dimensions [kernel_x, kernel_y, IFM, OFM].
Michele Di Giorgiof9b595a2020-07-03 13:34:52 +010078 * Data type supported: All.
Michele Di Giorgiof29d1b72019-10-29 10:58:13 +000079 * @param[in] biases Biases tensor. Shared biases supported. Biases are 1D tensor with dimensions [OFM].
Michele Di Giorgiof9b595a2020-07-03 13:34:52 +010080 * Data type supported: same as @p weights.
81 * @warning Appending biases to weights reshaped matrix is not supported for quantized asymmetric types.
82 * @param[in] output Destination tensor. Data types supported: same as @p weights.
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000083 *
84 * @return an error status
85 */
Gian Marco Iodice597a8562018-08-01 15:06:06 +010086 static Status validate(const ITensorInfo *weights, const ITensorInfo *biases, const ITensorInfo *output);
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000087
88 // Inherited methods overridden:
89 void run() override;
90
91private:
Michalis Spyrouebcebf12020-10-21 00:04:14 +010092 std::unique_ptr<NEWeightsReshapeKernel> _weights_reshape_kernel;
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000093};
94
Michalis Spyrou1a569a32019-09-10 17:20:34 +010095namespace weights_transformations
96{
97/** Basic function to manage the reshape weights generated from @ref NEConvolutionLayerReshapeWeights */
98class NEConvolutionLayerReshapeWeightsTransform : public ITransformWeights
99{
100public:
Michalis Spyrouebcebf12020-10-21 00:04:14 +0100101 /** Constructor */
102 NEConvolutionLayerReshapeWeightsTransform() = default;
103 /** Prevent instances of this class from being copied (As this class contains pointers) */
104 NEConvolutionLayerReshapeWeightsTransform(const NEConvolutionLayerReshapeWeightsTransform &) = delete;
105 /** Prevent instances of this class from being copied (As this class contains pointers) */
106 NEConvolutionLayerReshapeWeightsTransform &operator=(const NEConvolutionLayerReshapeWeightsTransform &) = delete;
107 /** Prevent instances of this class from being moved (As this class contains non movable objects) */
108 NEConvolutionLayerReshapeWeightsTransform(NEConvolutionLayerReshapeWeightsTransform &&) = delete;
109 /** Prevent instances of this class from being moved (As this class contains non movable objects) */
110 NEConvolutionLayerReshapeWeightsTransform &operator=(NEConvolutionLayerReshapeWeightsTransform &&) = delete;
111 /** Default destructor */
112 ~NEConvolutionLayerReshapeWeightsTransform() = default;
Michalis Spyrou1a569a32019-09-10 17:20:34 +0100113 void configure(const ITensor *input, const ITensor *biases)
114 {
115 _bias_bit = (biases != nullptr) ? 1 : 0;
116 _func.configure(input, biases, &_output);
117 }
118
119 void run() override
120 {
121 _output.allocator()->allocate();
122 _func.run();
123 _reshape_run = true;
124 }
125
126 ITensor *get_weights() override
127 {
128 return &_output;
129 }
130
131 void release() override
132 {
133 _output.allocator()->free();
134 }
135
136 uint32_t uid() override
137 {
138 return ((0x8) | (_bias_bit << 7));
139 }
140
141 bool is_reshape_run()
142 {
143 return _reshape_run;
144 }
145
146private:
147 Tensor _output{};
148 NEConvolutionLayerReshapeWeights _func{};
149 int32_t _bias_bit{ 0 };
150};
151} // namespace weights_transformations
152
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100153/** Basic function to compute the convolution layer. This function calls the following NEON kernels/functions:
154 *
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000155 * -# @ref NEIm2ColKernel
Michele Di Giorgioa602f032020-03-12 19:34:33 +0000156 * -# @ref NEGEMM (if the data type is BFLOAT16/FP16/FP32)
Georgios Pinitas6e1791b2019-12-02 19:01:25 +0000157 * -# @ref NEGEMMLowpMatrixMultiplyCore (if the data type is QASYMM8/QASYMM8_SIGNED)
158 * -# @ref NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPoint (if the data type is QASYMM8/QASYMM8_SIGNED)
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100159 * -# @ref NEArithmeticAdditionKernel (if biases != nullptr and we have a 1x1 convolution with the NHWC data layout)
Georgios Pinitas932491f2018-09-21 16:33:15 +0100160 * -# @ref NECol2ImKernel (if NCHW data layout)
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100161 *
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000162 */
163class NEGEMMConvolutionLayer : public IFunction
164{
165public:
166 /** Constructor */
Michalis Spyrou1a569a32019-09-10 17:20:34 +0100167 NEGEMMConvolutionLayer(const std::shared_ptr<IMemoryManager> &memory_manager = nullptr, IWeightsManager *weights_manager = nullptr);
Georgios Pinitas1562be32018-03-08 19:09:19 +0000168 /** Prevent instances of this class from being copied (As this class contains pointers) */
169 NEGEMMConvolutionLayer(const NEGEMMConvolutionLayer &) = delete;
170 /** Default move constructor */
171 NEGEMMConvolutionLayer(NEGEMMConvolutionLayer &&) = default;
172 /** Prevent instances of this class from being copied (As this class contains pointers) */
173 NEGEMMConvolutionLayer &operator=(const NEGEMMConvolutionLayer &) = delete;
174 /** Default move assignment operator */
175 NEGEMMConvolutionLayer &operator=(NEGEMMConvolutionLayer &&) = default;
Michalis Spyrouebcebf12020-10-21 00:04:14 +0100176 /** Default destructor */
177 ~NEGEMMConvolutionLayer();
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000178 /** Set the input and output tensors.
179 *
180 * @param[in] input Source tensor. 3 lower dimensions represent a single input [width, height, IFM],
181 * while every optional dimension from 4 and above represent a batch of inputs.
Georgios Pinitasc7b183a2020-03-06 18:12:09 +0000182 * Data types supported: QASYMM8/QASYMM8_SIGNED/BFLOAT16/F16/F32.
183 * @param[in] weights Weights tensor. Weights are 4D tensor with dimensions [kernel_x, kernel_y, IFM, OFM].
184 * Data type supported: QASYMM8/QASYMM8_SIGNED/QSYMM8_PER_CHANNEL/BFLOAT16/F16/F32.
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000185 * @param[in] biases Biases tensor. Shared biases supported. Biases are 1D tensor with dimensions [OFM].
Georgios Pinitas6e1791b2019-12-02 19:01:25 +0000186 * Data type supported: Should match @p input data type, except for input of QASYMM8/QASYMM8_SIGNED type where biases should be of S32 type.
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000187 * @param[out] output Destination tensor. 3 lower dimensions represent a single output [width, height, OFM], while the rest represent batch of outputs.
188 * Data types supported: Same as @p input.
189 * @param[in] conv_info Contains padding and stride information described in @ref PadStrideInfo.
190 * @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
191 * tensor has also been transposed with NEGEMMTranspose1xWKernel. Data type supported: Same as @p input.
Alex Gilday7da29b62018-03-23 14:16:00 +0000192 * @param[in] dilation (Optional) Dilation, in elements, across x and y. Defaults to (1, 1).
Isabella Gottardi3f217ec2018-02-12 14:59:19 +0000193 * @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 +0100194 * @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 +0000195 */
Alex Gilday7da29b62018-03-23 14:16:00 +0000196 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 +0100197 const Size2D &dilation = Size2D(1U, 1U), const ActivationLayerInfo &act_info = ActivationLayerInfo(), unsigned int num_groups = 1);
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000198 /** Static function to check if given info will lead to a valid configuration of @ref NEGEMMConvolutionLayer
199 *
Georgios Pinitas6e1791b2019-12-02 19:01:25 +0000200 * @param[in] input Source tensor info. 3 lower dimensions represent a single input [width, height, IFM],
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000201 * while every optional dimension from 4 and above represent a batch of inputs.
Georgios Pinitasc7b183a2020-03-06 18:12:09 +0000202 * Data types supported: QASYMM8/QASYMM8_SIGNED/BFLOAT16/F16/F32.
203 * @param[in] weights Weights tensor info. Weights are 4D tensor with dimensions [kernel_x, kernel_y, IFM, OFM].
204 * Data type supported: QASYMM8/QASYMM8_SIGNED/QSYMM8_PER_CHANNEL/BFLOAT16/F16/F32.
Georgios Pinitas6e1791b2019-12-02 19:01:25 +0000205 * @param[in] biases Biases tensor info. Shared biases supported. Biases are 1D tensor with dimensions [OFM].
206 * Data type supported: Should match @p input data type, except for input of QASYMM8/QASYMM8_SIGNED type where biases should be of S32 type.
207 * @param[in] output Destination tensor info. 3 lower dimensions represent a single output [width, height, OFM], while the rest represent batch of outputs.
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000208 * Data types supported: Same as @p input.
209 * @param[in] conv_info Contains padding and stride information described in @ref PadStrideInfo.
210 * @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
211 * tensor has also been transposed with NEGEMMTranspose1xWKernel. Data type supported: Same as @p input.
Alex Gilday7da29b62018-03-23 14:16:00 +0000212 * @param[in] dilation (Optional) Dilation, in elements, across x and y. Defaults to (1, 1).
Isabella Gottardi3f217ec2018-02-12 14:59:19 +0000213 * @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 +0100214 * @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 +0000215 *
216 * @return a status
217 */
218 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 +0100219 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 +0000220
221 // Inherited methods overridden:
222 void run() override;
Georgios Pinitas72219332018-06-05 14:56:06 +0100223 void prepare() override;
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000224
225private:
226 /** Configures the appropriate matrix multiply routine
227 *
Georgios Pinitasc7b183a2020-03-06 18:12:09 +0000228 * @param[in] input Input tensor. Data types supported: QASYMM8/QASYMM8_SIGNED/BFLOAT16/F16/F32.
229 * @param[in] weights Weights tensor. Data type supported: QASYMM8/QASYMM8_SIGNED/QSYMM8_PER_CHANNEL/BFLOAT16/F16/F32.
George Wort2d7e6832019-02-22 16:37:41 +0000230 * @param[in] biases Biases tensor. Shared biases supported. Biases are 1D tensor with dimensions [OFM].
Georgios Pinitas6e1791b2019-12-02 19:01:25 +0000231 * Data type supported: Should match @p input data type, except for input of QASYMM8/QASYMM8_SIGNED type where biases should be of S32 type.
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100232 * @param[out] output Output tensor. Data types supported: Same as @p input,
Georgios Pinitas6e1791b2019-12-02 19:01:25 +0000233 * except for input of QASYMM8/QASYMM8_SIGNED type where output should be of S32 type.
George Wort2d7e6832019-02-22 16:37:41 +0000234 * @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 Iodice597a8562018-08-01 15:06:06 +0100235 * @param[in] gemm_3d_depth (Optional) Depth of GEMM 3D (Defaults to 1)
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000236 */
George Wort2d7e6832019-02-22 16:37:41 +0000237 void configure_mm(const ITensor *input, const ITensor *weights, const ITensor *biases, ITensor *output, const ActivationLayerInfo &act_info = ActivationLayerInfo(), int gemm_3d_depth = 1);
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100238 /** Static function to check if given info will lead to a valid configuration of @ref NEGEMMConvolutionLayer matrix multiply routines
239 *
Georgios Pinitasc7b183a2020-03-06 18:12:09 +0000240 * @param[in] input Input tensor info. Data types supported: QASYMM8/QASYMM8_SIGNED/BFLOAT16/F16/F32.
241 * @param[in] weights Weights tensor info. Data type supported: QASYMM8/QASYMM8_SIGNED/QSYMM8_PER_CHANNEL/BFLOAT16/F16/F32.
Georgios Pinitas6e1791b2019-12-02 19:01:25 +0000242 * @param[in] biases Biases tensor info. Shared biases supported. Biases are 1D tensor with dimensions [OFM].
243 * Data type supported: Should match @p input data type, except for input of QASYMM8/QASYMM8_SIGNED type where biases should be of S32 type.
244 * @param[in] output Output tensor info. Data types supported: Same as @p input,
245 * except for input of QASYMM8/QASYMM8_SIGNED type where output should be of S32 type.
George Wort2d7e6832019-02-22 16:37:41 +0000246 * @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 Iodice597a8562018-08-01 15:06:06 +0100247 * @param[in] gemm_3d_depth (Optional) Depth of GEMM 3D (Defaults to 1)
248 * @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)
249 *
250 * @return a status
251 */
George Wort2d7e6832019-02-22 16:37:41 +0000252 static Status validate_mm(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *biases, const ITensorInfo *output, const ActivationLayerInfo &act_info = ActivationLayerInfo(),
253 int gemm_3d_depth = 1, bool skip_im2col = false);
Gian Marco Iodicedb9d46d2018-08-08 12:29:38 +0100254 /** Static function to check if GEMM3D is supported in @ref NEGEMM or in @ref NEGEMMLowpMatrixMultiplyCore
255 *
Georgios Pinitasc7b183a2020-03-06 18:12:09 +0000256 * @param[in] input_info Input tensor info. Data types supported: QASYMM8/QASYMM8_SIGNED/BFLOAT16/F16/F32.
257 * @param[in] weights_info Weights tensor info. Data types supported: QASYMM8/QASYMM8_SIGNED/BFLOAT16/F16/F32.
George Wort2d7e6832019-02-22 16:37:41 +0000258 * @param[in] act_info Activation layer information in case of a fused activation. Only RELU, BOUNDED_RELU and LU_BOUNDED_RELU supported.
Gian Marco Iodicedb9d46d2018-08-08 12:29:38 +0100259 * @param[in] gemm_3d_depth Depth of GEMM 3D
260 * @param[in] skip_im2col Flag which specifies if im2col has to be skipped. i.e. 1x1 convolution with NHWC data layout
261 *
262 * @return a status
263 */
Giorgio Arena7a669a82019-11-13 17:07:13 +0000264 static Status validate_gemm3d(const ITensorInfo *input_info, const ITensorInfo *weights_info, const ActivationLayerInfo &act_info, int gemm_3d_depth, bool skip_im2col);
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000265
266private:
Michalis Spyrou1a569a32019-09-10 17:20:34 +0100267 MemoryGroup _memory_group;
268 IWeightsManager *_weights_manager;
269 NEConvolutionLayerReshapeWeights _reshape_weights;
270 weights_transformations::NEConvolutionLayerReshapeWeightsTransform _reshape_weights_managed;
Michalis Spyrouebcebf12020-10-21 00:04:14 +0100271 std::unique_ptr<NEIm2ColKernel> _im2col_kernel;
Michalis Spyrou1a569a32019-09-10 17:20:34 +0100272 NEGEMM _mm_gemm;
273 NEGEMMLowpMatrixMultiplyCore _mm_gemmlowp;
Michalis Spyrouebcebf12020-10-21 00:04:14 +0100274 std::unique_ptr<NECol2ImKernel> _col2im_kernel;
Michalis Spyrou1a569a32019-09-10 17:20:34 +0100275 NEReshapeLayer _reshape_layer;
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000276
Georgios Pinitas1562be32018-03-08 19:09:19 +0000277 const ITensor *_original_weights;
278
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100279 Tensor _im2col_output;
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000280 Tensor _weights_reshaped;
281 Tensor _gemm_output;
282 Tensor _tmp_output;
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000283
Michalis Spyroue2503892018-04-23 15:17:31 +0100284 DataLayout _data_layout;
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100285
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100286 bool _skip_im2col;
287 bool _skip_col2im;
288 bool _is_quantized;
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100289 bool _is_prepared;
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000290};
Georgios Pinitas041f36d2018-09-18 18:38:37 +0100291} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +0000292#endif /* ARM_COMPUTE_NECONVOLUTIONGEMMLAYER_H */