blob: db57439de02ffc03c659000834f56ecb79b5b61c [file] [log] [blame]
Giorgio Arenadfca60b2018-01-31 10:30:59 +00001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2018-2020 Arm Limited.
Giorgio Arenadfca60b2018-01-31 10:30:59 +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_CLDEPTHWISECONVOLUTIONNHWCKERNEL3x3_H
25#define ARM_COMPUTE_CLDEPTHWISECONVOLUTIONNHWCKERNEL3x3_H
Giorgio Arenadfca60b2018-01-31 10:30:59 +000026
27#include "arm_compute/core/CL/kernels/ICLDepthwiseConvolutionLayer3x3Kernel.h"
28
29namespace arm_compute
30{
31class ICLTensor;
32
33/** Interface for the kernel to run a 3x3 depthwise convolution on a tensor when the data layout is NHWC.
34 */
35class CLDepthwiseConvolutionLayer3x3NHWCKernel : public ICLDepthwiseConvolutionLayer3x3Kernel
36{
37public:
38 /** Default constructor */
39 CLDepthwiseConvolutionLayer3x3NHWCKernel();
40 /** Default move assignment operator. */
41 /** Initialize the function's source, destination, conv and border_size.
42 *
Michele Di Giorgiof6f78762020-07-06 11:27:21 +010043 * @param[in] input Source tensor. DataType supported: QASYMM8/QASYMM8_SIGNED/F16/F32.
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +010044 * @param[in] weights Weights tensor. A 3D tensor with dimensions [IFM, 3, 3].
Michele Di Giorgio37cbc572019-12-19 16:41:49 +000045 * Data type supported: Same as @p input or QASYMM8/QASYMM8_SIGNED/QSYMM8_PER_CHANNEL when @p input is QASYMM8/QASYMM8_SIGNED.
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +010046 * @param[in] biases Biases tensor. A 1D tensor with dimensions [IFM]. Must be nullptr if not needed.
Michele Di Giorgio37cbc572019-12-19 16:41:49 +000047 * Data type supported: Same as @p input, S32 when input is QASYMM8/QASYMM8_SIGNED.
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +010048 * @param[out] output Destination tensor. Data type supported: Same as @p input.
49 * @param[in] conv_info Padding and stride information to use for the convolution.
50 * @param[in] depth_multiplier (Optional) Multiplier to apply to the input's depth in order to retrieve the output's depth. Defaults to 1.
51 * @param[in] act_info (Optional) Activation layer information in case of a fused activation. Only RELU, BOUNDED_RELU and LU_BOUNDED_RELU are supported.
52 * @param[in] dilation (Optional) Dilation, in elements, across x and y. Defaults to (1, 1).
53 * @param[in] output_multipliers (Optional) Output multipliers tensor for quantized computations. In case of per-channel quantization,
54 * the number of multipliers must be equal to the number of filters (IFM). Supported data types: S32
55 * @param[in] output_shifts (Optional) Output shifts tensor for quantized computations. In case of per-channel quantization,
56 * the number of multipliers must be equal to the number of filters (IFM). Supported data types: S32
Giorgio Arenadfca60b2018-01-31 10:30:59 +000057 */
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +010058 void configure(const ICLTensor *input, const ICLTensor *weights, const ICLTensor *biases, ICLTensor *output, const PadStrideInfo &conv_info,
59 unsigned int depth_multiplier = 1, ActivationLayerInfo act_info = ActivationLayerInfo(), const Size2D &dilation = Size2D(1U, 1U),
60 const ICLTensor *output_multipliers = nullptr, const ICLTensor *output_shifts = nullptr) override;
Manuel Bottini4c6bd512020-04-08 10:15:51 +010061 /** Initialize the function's source, destination, conv and border_size.
62 *
63 * @param[in] compile_context The compile context to be used.
Michele Di Giorgiof6f78762020-07-06 11:27:21 +010064 * @param[in] input Source tensor. DataType supported: QASYMM8/QASYMM8_SIGNED/F16/F32.
Manuel Bottini4c6bd512020-04-08 10:15:51 +010065 * @param[in] weights Weights tensor. A 3D tensor with dimensions [IFM, 3, 3].
66 * Data type supported: Same as @p input or QASYMM8/QASYMM8_SIGNED/QSYMM8_PER_CHANNEL when @p input is QASYMM8/QASYMM8_SIGNED.
67 * @param[in] biases Biases tensor. A 1D tensor with dimensions [IFM]. Must be nullptr if not needed.
68 * Data type supported: Same as @p input, S32 when input is QASYMM8/QASYMM8_SIGNED.
69 * @param[out] output Destination tensor. Data type supported: Same as @p input.
70 * @param[in] conv_info Padding and stride information to use for the convolution.
71 * @param[in] depth_multiplier (Optional) Multiplier to apply to the input's depth in order to retrieve the output's depth. Defaults to 1.
72 * @param[in] act_info (Optional) Activation layer information in case of a fused activation. Only RELU, BOUNDED_RELU and LU_BOUNDED_RELU are supported.
73 * @param[in] dilation (Optional) Dilation, in elements, across x and y. Defaults to (1, 1).
74 * @param[in] output_multipliers (Optional) Output multipliers tensor for quantized computations. In case of per-channel quantization,
75 * the number of multipliers must be equal to the number of filters (IFM). Supported data types: S32
76 * @param[in] output_shifts (Optional) Output shifts tensor for quantized computations. In case of per-channel quantization,
77 * the number of multipliers must be equal to the number of filters (IFM). Supported data types: S32
78 */
Manuel Bottini256c0b92020-04-21 13:29:30 +010079 void configure(const CLCompileContext &compile_context, const ICLTensor *input, const ICLTensor *weights, const ICLTensor *biases, ICLTensor *output, const PadStrideInfo &conv_info,
Manuel Bottini4c6bd512020-04-08 10:15:51 +010080 unsigned int depth_multiplier = 1, ActivationLayerInfo act_info = ActivationLayerInfo(), const Size2D &dilation = Size2D(1U, 1U),
81 const ICLTensor *output_multipliers = nullptr, const ICLTensor *output_shifts = nullptr) override;
Giorgio Arenadfca60b2018-01-31 10:30:59 +000082 /** Static function to check if given info will lead to a valid configuration of @ref CLDepthwiseConvolutionLayer3x3NHWCKernel
83 *
Michele Di Giorgiof6f78762020-07-06 11:27:21 +010084 * @param[in] input Source tensor info. DataType supported: QASYMM8/QASYMM8_SIGNED/F16/F32.
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +010085 * @param[in] weights Weights tensor info. A 3D tensor with dimensions [IFM, 3, 3].
Michele Di Giorgio37cbc572019-12-19 16:41:49 +000086 * Data type supported: Same as @p input or QASYMM8/QASYMM8_SIGNED/QSYMM8_PER_CHANNEL when @p input is QASYMM8/QASYMM8_SIGNED.
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +010087 * @param[in] biases Biases tensor info. A 1D tensor with dimensions [IFM]. Must be nullptr if not needed.
Michele Di Giorgio37cbc572019-12-19 16:41:49 +000088 * Data type supported: Same as @p input, S32 when input is QASYMM8/QASYMM8_SIGNED.
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +010089 * @param[in] output Destination tensor info. Data type supported: Same as @p input.
90 * @param[in] conv_info Padding and stride information to use for the convolution.
91 * @param[in] depth_multiplier (Optional) Multiplier to apply to the input's depth in order to retrieve the output's depth. Defaults to 1.
92 * @param[in] act_info (Optional) Activation layer information in case of a fused activation. Only RELU, BOUNDED_RELU and LU_BOUNDED_RELU are supported.
93 * @param[in] dilation (Optional) Dilation, in elements, across x and y. Defaults to (1, 1).
94 * @param[in] output_multipliers (Optional) Output multipliers tensor info for quantized computations. In case of per-channel quantization,
95 * the number of multipliers must be equal to the number of filters (IFM). Supported data types: S32
96 * @param[in] output_shifts (Optional) Output shifts tensor for quantized computations. In case of per-channel quantization,
97 * the number of multipliers must be equal to the number of filters (IFM). Supported data types: S32
Giorgio Arenadfca60b2018-01-31 10:30:59 +000098 *
99 * @return a status
100 */
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100101 static Status validate(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *biases, const ITensorInfo *output, const PadStrideInfo &conv_info,
102 unsigned int depth_multiplier = 1, ActivationLayerInfo act_info = ActivationLayerInfo(), const Size2D &dilation = Size2D(1U, 1U),
103 const ITensorInfo *output_multipliers = nullptr, const ITensorInfo *output_shifts = nullptr);
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000104
giuros016d109962019-01-07 17:47:19 +0000105 // Inherited methods overridden:
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000106 void run(const Window &window, cl::CommandQueue &queue) override;
107 BorderSize border_size() const override;
108
109private:
Giorgio Arenad051e972018-06-20 11:46:42 +0100110 unsigned int _num_planes_processed_per_iteration;
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000111};
112} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +0000113#endif /*ARM_COMPUTE_CLDEPTHWISECONVOLUTIONNHWCKERNEL3x3_H */