blob: d177f4505ac095e109b8ec693bc9aa73be683e3e [file] [log] [blame]
Giorgio Arena93a690e2017-08-01 16:09:33 +01001/*
giuros016d109962019-01-07 17:47:19 +00002 * Copyright (c) 2017-2019 ARM Limited.
Giorgio Arena93a690e2017-08-01 16:09:33 +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 */
Giorgio Arena9fe41442017-08-23 16:36:24 +010024#ifndef __ARM_COMPUTE_CLDEPTHWISECONVOLUTION_H__
25#define __ARM_COMPUTE_CLDEPTHWISECONVOLUTION_H__
Giorgio Arena93a690e2017-08-01 16:09:33 +010026
Giorgio Arenadfca60b2018-01-31 10:30:59 +000027#include "arm_compute/core/CL/kernels/CLDepthwiseConvolutionLayer3x3NCHWKernel.h"
28#include "arm_compute/core/CL/kernels/CLDepthwiseConvolutionLayer3x3NHWCKernel.h"
giuros016d109962019-01-07 17:47:19 +000029#include "arm_compute/core/CL/kernels/CLDepthwiseConvolutionLayerReshapeWeightsGenericKernel.h"
30#include "arm_compute/core/CL/kernels/CLDepthwiseConvolutionLayerReshapeWeightsKernel.h"
Giorgio Arena9fe41442017-08-23 16:36:24 +010031#include "arm_compute/core/CL/kernels/CLDepthwiseIm2ColKernel.h"
32#include "arm_compute/core/CL/kernels/CLDepthwiseVectorToTensorKernel.h"
Georgios Pinitasde5a1cc2018-02-02 12:52:07 +000033#include "arm_compute/core/CL/kernels/CLDirectConvolutionLayerOutputStageKernel.h"
Giorgio Arena93a690e2017-08-01 16:09:33 +010034#include "arm_compute/core/CL/kernels/CLFillBorderKernel.h"
Giorgio Arena9fe41442017-08-23 16:36:24 +010035#include "arm_compute/core/CL/kernels/CLGEMMMatrixVectorMultiplyKernel.h"
Giorgio Arenadfca60b2018-01-31 10:30:59 +000036#include "arm_compute/core/CL/kernels/ICLDepthwiseConvolutionLayer3x3Kernel.h"
Giorgio Arena93a690e2017-08-01 16:09:33 +010037#include "arm_compute/core/Types.h"
38#include "arm_compute/runtime/CL/CLTensor.h"
Georgios Pinitas60e98252018-10-22 16:17:20 +010039#include "arm_compute/runtime/CL/functions/CLActivationLayer.h"
Georgios Pinitas05045c12018-12-07 18:31:47 +000040#include "arm_compute/runtime/CL/functions/CLPermute.h"
Giorgio Arena93a690e2017-08-01 16:09:33 +010041#include "arm_compute/runtime/IFunction.h"
Georgios Pinitas26014cf2019-09-09 19:00:57 +010042#include "arm_compute/runtime/MemoryGroup.h"
Giorgio Arena93a690e2017-08-01 16:09:33 +010043
Giorgio Arena93a690e2017-08-01 16:09:33 +010044namespace arm_compute
45{
46class ICLTensor;
47
Giorgio Arenadfca60b2018-01-31 10:30:59 +000048/** Basic function to execute a depthwise convolution for kernel size 3x3xC (when data layout NCHW) or Cx3x3 (when data layout NHWC). This function calls the following OpenCL kernels:
Giorgio Arena93a690e2017-08-01 16:09:33 +010049 *
Giorgio Arenadfca60b2018-01-31 10:30:59 +000050 * -# @ref CLDepthwiseConvolutionLayer3x3NCHWKernel (if data_layout == NCHW)
51 * -# @ref CLDepthwiseConvolutionLayer3x3NHWCKernel (if data_layout == NHWC)
giuros016d109962019-01-07 17:47:19 +000052 * -# @ref CLDepthwiseConvolutionLayerReshapeWeightsKernel (if data_layout == NHWC)
Giorgio Arena9fe41442017-08-23 16:36:24 +010053 * -# @ref CLFillBorderKernel (if pad_x or pad_y > 0)
Giorgio Arena93a690e2017-08-01 16:09:33 +010054 *
55 */
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000056class CLDepthwiseConvolutionLayer3x3 : public IFunction
Giorgio Arena93a690e2017-08-01 16:09:33 +010057{
58public:
59 /** Default constructor */
Georgios Pinitas05045c12018-12-07 18:31:47 +000060 CLDepthwiseConvolutionLayer3x3(std::shared_ptr<IMemoryManager> memory_manager = nullptr);
61 /** Prevent instances of this class from being copied (As this class contains pointers) */
62 CLDepthwiseConvolutionLayer3x3(const CLDepthwiseConvolutionLayer3x3 &) = delete;
63 /** Default move constructor */
64 CLDepthwiseConvolutionLayer3x3(CLDepthwiseConvolutionLayer3x3 &&) = default;
65 /** Prevent instances of this class from being copied (As this class contains pointers) */
66 CLDepthwiseConvolutionLayer3x3 &operator=(const CLDepthwiseConvolutionLayer3x3 &) = delete;
67 /** Default move assignment operator */
68 CLDepthwiseConvolutionLayer3x3 &operator=(CLDepthwiseConvolutionLayer3x3 &&) = default;
Giorgio Arena93a690e2017-08-01 16:09:33 +010069 /** Initialize the function's source, destination, conv and border_size.
70 *
Giorgio Arena76572242018-04-04 17:44:26 +010071 * @param[in, out] input Source tensor. Data type supported: QASYMM8/F16/F32. (Written to only for border filling).
72 * @param[in] weights Weights tensor. A 3D tensor with shape [3, 3, IFM]. Data type supported: Same as @p input.
Usama Arife73686a2019-04-08 17:30:48 +010073 * @param[in] biases Biases tensor. A 1D tensor with shape [IFM]. Must be nullptr if not needed.
Giorgio Arena76572242018-04-04 17:44:26 +010074 * Data type supported: Same as @p input.
75 * @param[out] output Destination tensor. Data type supported: same as @p input.
76 * @param[in] conv_info Padding and stride information to use for the convolution.
77 * @param[in] depth_multiplier (Optional) Multiplier to apply to the input's depth in order to retrieve the output's depth. Defaults to 1.
78 * @param[in] act_info (Optional) Activation layer information in case of a fused activation. Only RELU, BOUNDED_RELU and LU_BOUNDED_RELU for 3x3 QASYMM8 supported.
Usama Arife73686a2019-04-08 17:30:48 +010079 * @param[in] dilation (Optional) Dilation, in elements, across x and y. Defaults to (1, 1).
Giorgio Arena93a690e2017-08-01 16:09:33 +010080 */
Giorgio Arena76572242018-04-04 17:44:26 +010081 void configure(ICLTensor *input, const ICLTensor *weights, const ICLTensor *biases, ICLTensor *output, const PadStrideInfo &conv_info, unsigned int depth_multiplier = 1,
Usama Arife73686a2019-04-08 17:30:48 +010082 ActivationLayerInfo act_info = ActivationLayerInfo(), const Size2D &dilation = Size2D(1U, 1U));
Giorgio Arena93a690e2017-08-01 16:09:33 +010083
Giorgio Arenaad0c7382018-04-23 16:16:21 +010084 /** Static function to check if given info will lead to a valid configuration of @ref CLDepthwiseConvolutionLayer3x3
85 *
Usama Arife73686a2019-04-08 17:30:48 +010086 * @param[in] input Source tensor info. Data type supported: QASYMM8 for all layouts, F16/F32 for NCHW.
87 * @param[in] weights Weights tensor info. A 3D tensor with shape [3, 3, IFM]. Data type supported: Same as @p input.
88 * @param[in] biases Biases tensor info. A 1D tensor with shape [IFM]. Must be nullptr if not needed.
Giorgio Arenaad0c7382018-04-23 16:16:21 +010089 * Data type supported: Same as @p input, S32 when input is QASYMM8.
90 * @param[in] output Destination tensor. Data type supported: same as @p input.
91 * @param[in] conv_info Padding and stride information to use for the convolution.
92 * @param[in] depth_multiplier (Optional) Multiplier to apply to the input's depth in order to retrieve the output's depth. Defaults to 1.
93 * @param[in] act_info (Optional) Activation layer information in case of a fused activation. Only RELU, BOUNDED_RELU and LU_BOUNDED_RELU for 3x3 QASYMM8 supported.
94 * @param[in] gpu_target (Optional) GPU target to validate the kernel for. Defaults to midgard.
Usama Arife73686a2019-04-08 17:30:48 +010095 * @param[in] dilation (Optional) Dilation, in elements, across x and y. Defaults to (1, 1).
Giorgio Arenaad0c7382018-04-23 16:16:21 +010096 *
97 * @return a status
98 */
99 static Status validate(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *biases, const ITensorInfo *output, const PadStrideInfo &conv_info, unsigned int depth_multiplier = 1,
Usama Arife73686a2019-04-08 17:30:48 +0100100 ActivationLayerInfo act_info = ActivationLayerInfo(), GPUTarget gpu_target = GPUTarget::MIDGARD, const Size2D &dilation = Size2D(1U, 1U));
Giorgio Arena93a690e2017-08-01 16:09:33 +0100101 // Inherited methods overriden:
102 void run() override;
Georgios Pinitas05045c12018-12-07 18:31:47 +0000103 void prepare() override;
Giorgio Arena93a690e2017-08-01 16:09:33 +0100104
105private:
Georgios Pinitas26014cf2019-09-09 19:00:57 +0100106 MemoryGroup _memory_group;
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000107 std::unique_ptr<ICLDepthwiseConvolutionLayer3x3Kernel> _kernel;
108 CLFillBorderKernel _border_handler;
Georgios Pinitas05045c12018-12-07 18:31:47 +0000109 CLPermute _permute_input_to_nchw;
110 CLPermute _permute_weights_to_nchw;
111 CLPermute _permute_output_to_nhwc;
giuros016d109962019-01-07 17:47:19 +0000112 CLDepthwiseConvolutionLayerReshapeWeightsKernel _reshape_weights;
Georgios Pinitas05045c12018-12-07 18:31:47 +0000113 CLTensor _permuted_input;
114 CLTensor _permuted_weights;
115 CLTensor _permuted_output;
116 const ITensor *_original_weights;
117 bool _needs_permute;
giuros016d109962019-01-07 17:47:19 +0000118 bool _needs_weights_reshape;
Georgios Pinitas05045c12018-12-07 18:31:47 +0000119 bool _is_prepared;
Giorgio Arena9fe41442017-08-23 16:36:24 +0100120};
121
122/** Basic function to execute a generic depthwise convolution. This function calls the following OpenCL kernels:
123 *
124 * -# @ref CLDepthwiseIm2ColKernel
125 * -# @ref CLGEMMMatrixVectorMultiplyKernel
giuros016d109962019-01-07 17:47:19 +0000126 * -# @ref CLDepthwiseConvolutionLayerReshapeWeightsGenericKernel
Giorgio Arena9fe41442017-08-23 16:36:24 +0100127 * -# @ref CLFillBorderKernel (if pad_x or pad_y > 0)
128 *
129 */
Giorgio Arena04a8f8c2017-11-23 11:45:24 +0000130class CLDepthwiseConvolutionLayer : public IFunction
Giorgio Arena9fe41442017-08-23 16:36:24 +0100131{
132public:
133 /** Default constructor */
Giorgio Arena04a8f8c2017-11-23 11:45:24 +0000134 CLDepthwiseConvolutionLayer();
Georgios Pinitas1562be32018-03-08 19:09:19 +0000135 /** Prevent instances of this class from being copied (As this class contains pointers) */
136 CLDepthwiseConvolutionLayer(const CLDepthwiseConvolutionLayer &) = delete;
137 /** Default move constructor */
138 CLDepthwiseConvolutionLayer(CLDepthwiseConvolutionLayer &&) = default;
139 /** Prevent instances of this class from being copied (As this class contains pointers) */
140 CLDepthwiseConvolutionLayer &operator=(const CLDepthwiseConvolutionLayer &) = delete;
141 /** Default move assignment operator */
142 CLDepthwiseConvolutionLayer &operator=(CLDepthwiseConvolutionLayer &&) = default;
Giorgio Arena9fe41442017-08-23 16:36:24 +0100143 /** Initialize the function's source, destination, weights and convolution information.
144 *
Giorgio Arena76572242018-04-04 17:44:26 +0100145 * @param[in, out] input Source tensor. Data type supported: QASYMM8/F32. (Written to only for border filling).
146 * @param[in] weights Weights tensor. These are 3D tensors with shape [kernel_x, kernel_y, IFM]. Data type supported: Same as @p input.
Usama Arife73686a2019-04-08 17:30:48 +0100147 * @param[in] biases Biases tensor. A 1D tensor with shape [IFM]. Must be nullptr if not needed.
Giorgio Arena76572242018-04-04 17:44:26 +0100148 * Data type supported: Same as @p input, S32 when input is QASYMM8.
149 * @param[out] output Destination tensor. Data type supported: same as @p input.
150 * @param[in] conv_info Padding and stride information to use for the convolution.
151 * @param[in] depth_multiplier (Optional) Multiplier to apply to the input's depth in order to retrieve the output's depth. Defaults to 1.
Georgios Pinitas60e98252018-10-22 16:17:20 +0100152 * @param[in] act_info (Optional) Activation layer information in case of a fused activation.
Usama Arife73686a2019-04-08 17:30:48 +0100153 * @param[in] dilation (Optional) Dilation, in elements, across x and y. Defaults to (1, 1).
Giorgio Arena9fe41442017-08-23 16:36:24 +0100154 */
Georgios Pinitas60e98252018-10-22 16:17:20 +0100155 void configure(ICLTensor *input, const ICLTensor *weights, const ICLTensor *biases, ICLTensor *output, const PadStrideInfo &conv_info,
Usama Arife73686a2019-04-08 17:30:48 +0100156 unsigned int depth_multiplier = 1, const ActivationLayerInfo &act_info = ActivationLayerInfo(), const Size2D &dilation = Size2D(1U, 1U));
Giorgio Arena9fe41442017-08-23 16:36:24 +0100157
Giorgio Arenaad0c7382018-04-23 16:16:21 +0100158 /** Static function to check if given info will lead to a valid configuration of @ref CLDepthwiseConvolutionLayer
159 *
Usama Arife73686a2019-04-08 17:30:48 +0100160 * @param[in] input Source tensor info. Data type supported: QASYMM8/F32.
161 * @param[in] weights Weights tensor info. These are 3D tensors with shape [kernel_x, kernel_y, IFM]. Data type supported: Same as @p input.
162 * @param[in] biases Biases tensor info. A 1D tensor with shape [IFM]. Must be nullptr if not needed.
Giorgio Arenaad0c7382018-04-23 16:16:21 +0100163 * Data type supported: Same as @p input, S32 when input is QASYMM8.
164 * @param[in] output Destination tensor. Data type supported: same as @p input.
165 * @param[in] conv_info Padding and stride information to use for the convolution.
166 * @param[in] depth_multiplier (Optional) Multiplier to apply to the input's depth in order to retrieve the output's depth. Defaults to 1.
Georgios Pinitas60e98252018-10-22 16:17:20 +0100167 * @param[in] act_info (Optional) Activation layer information in case of a fused activation.
Usama Arife73686a2019-04-08 17:30:48 +0100168 * @param[in] dilation (Optional) Dilation, in elements, across x and y. Defaults to (1, 1).
Giorgio Arenaad0c7382018-04-23 16:16:21 +0100169 *
170 * @return a status
171 */
Georgios Pinitas60e98252018-10-22 16:17:20 +0100172 static Status validate(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *biases, const ITensorInfo *output, const PadStrideInfo &conv_info,
Usama Arife73686a2019-04-08 17:30:48 +0100173 unsigned int depth_multiplier = 1, const ActivationLayerInfo &act_info = ActivationLayerInfo(), const Size2D &dilation = Size2D(1U, 1U));
Giorgio Arenaad0c7382018-04-23 16:16:21 +0100174
Giorgio Arena9fe41442017-08-23 16:36:24 +0100175 // Inherited methods overriden:
176 void run() override;
Georgios Pinitas72219332018-06-05 14:56:06 +0100177 void prepare() override;
Giorgio Arena9fe41442017-08-23 16:36:24 +0100178
179private:
giuros016d109962019-01-07 17:47:19 +0000180 CLDepthwiseIm2ColKernel _im2col_kernel;
181 CLDepthwiseConvolutionLayerReshapeWeightsGenericKernel _weights_reshape_kernel;
182 CLGEMMMatrixVectorMultiplyKernel _v2mm_kernel;
183 CLDepthwiseVectorToTensorKernel _vector_to_tensor_kernel;
184 CLDirectConvolutionLayerOutputStageKernel _output_stage_kernel;
185 CLActivationLayer _activationlayer_function;
186 CLFillBorderKernel _v2mm_input_fill_border;
187 CLFillBorderKernel _v2mm_weights_fill_border;
188 CLTensor _input_reshaped;
189 CLTensor _weights_reshaped;
190 CLTensor _v2mm_output;
191 CLTensor _output_reshaped;
192 bool _is_prepared;
193 bool _is_quantized;
194 bool _is_activationlayer_enabled;
195 const ICLTensor *_original_weights;
196 std::unique_ptr<IFunction> _optimised_function;
Giorgio Arena93a690e2017-08-01 16:09:33 +0100197};
Georgios Pinitas05045c12018-12-07 18:31:47 +0000198} // namespace arm_compute
Giorgio Arena9fe41442017-08-23 16:36:24 +0100199#endif /*__ARM_COMPUTE_CLDEPTHWISECONVOLUTION_H__ */