blob: 3fd0c637821aa4249b806c2a25deb7e9f857fb55 [file] [log] [blame]
steniu0127b386c2017-07-18 17:37:43 +01001/*
Sheri Zhang1efed922021-03-10 22:43:38 +00002 * Copyright (c) 2017-2021 Arm Limited.
steniu0127b386c2017-07-18 17:37:43 +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 */
Michalis Spyrouf4643372019-11-29 16:17:13 +000024#ifndef ARM_COMPUTE_CLDIRECTCONVOLUTIONLAYER_H
25#define ARM_COMPUTE_CLDIRECTCONVOLUTIONLAYER_H
steniu0127b386c2017-07-18 17:37:43 +010026
steniu0127b386c2017-07-18 17:37:43 +010027#include "arm_compute/core/Types.h"
Isabella Gottardi3f217ec2018-02-12 14:59:19 +000028#include "arm_compute/runtime/CL/functions/CLActivationLayer.h"
steniu0127b386c2017-07-18 17:37:43 +010029#include "arm_compute/runtime/IFunction.h"
30
31#include <memory>
32
33namespace arm_compute
34{
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010035class CLCompileContext;
steniu0127b386c2017-07-18 17:37:43 +010036class ICLTensor;
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010037class ITensorInfo;
steniu0127b386c2017-07-18 17:37:43 +010038
39/** Basic function to execute direct convolution function:
40 */
41class CLDirectConvolutionLayer : public IFunction
42{
43public:
Sheri Zhang1efed922021-03-10 22:43:38 +000044 /** Constructor */
steniu0127b386c2017-07-18 17:37:43 +010045 CLDirectConvolutionLayer();
Sheri Zhang1efed922021-03-10 22:43:38 +000046 /** Destructor */
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010047 ~CLDirectConvolutionLayer();
Sheri Zhang1efed922021-03-10 22:43:38 +000048 /** Prevent instances of this class from being copied (As this class contains pointers) */
49 CLDirectConvolutionLayer(const CLDirectConvolutionLayer &) = delete;
50 /** Default move constructor */
51 CLDirectConvolutionLayer(CLDirectConvolutionLayer &&);
52 /** Prevent instances of this class from being copied (As this class contains pointers) */
53 CLDirectConvolutionLayer &operator=(const CLDirectConvolutionLayer &) = delete;
54 /** Default move assignment operator */
55 CLDirectConvolutionLayer &operator=(CLDirectConvolutionLayer &&);
steniu0127b386c2017-07-18 17:37:43 +010056 /** Set the input and output tensors.
57 *
Sheri Zhanga47dcc22021-04-22 14:41:12 +010058 * Valid data layouts:
59 * - NHWC
60 * - NCHW
61 *
62 * Valid data type configurations:
63 * |src0 |src1 |src2 |dst |
64 * |:--------------|:--------------|:------|:--------------|
65 * |F16 |F16 |F16 |F16 |
66 * |F32 |F32 |F32 |F32 |
67 * |QASYMM8 |QASYMM8 |S32 |QASYMM8 |
68 * |QASYMM8_SIGNED |QASYMM8_SIGNED |S32 |QASYMM8_SIGNED |
69 *
steniu0127b386c2017-07-18 17:37:43 +010070 * @param[in] input Source tensor. 3 lower dimensions represent a single input [width, height, IFM],
71 * while every optional dimension from 4 and above represent a batch of inputs.
Sheri Zhang681f2d42020-02-20 11:23:08 +000072 * Data types supported: QASYMM8_SIGNED/QASYMM8/F16/F32.
steniu0127b386c2017-07-18 17:37:43 +010073 * @param[in] weights Weights tensor. Weights are 4D tensor with dimensions [kernel_x, kernel_y, IFM, OFM]. Data type supported:Same as @p input.
Georgios Pinitas540d0082017-11-17 10:55:00 +000074 * @param[in] biases Biases tensor. Shared biases supported. Biases are 1D tensor with dimensions [OFM].
Sheri Zhang681f2d42020-02-20 11:23:08 +000075 * Data type supported: Should match @p input data type, except for input of QASYMM8 and QASYMM8_SIGNED type where biases should be of S32 type.
steniu0127b386c2017-07-18 17:37:43 +010076 * @param[out] output Destination tensor. 3 lower dimensions represent a single output [width, height, OFM], while the rest represent batch of outputs.
77 * Data types supported: Same as @p input.
78 * @param[in] conv_info Contains padding and stride information described in @ref PadStrideInfo.
Isabella Gottardi3f217ec2018-02-12 14:59:19 +000079 * @param[in] act_info (Optional) Activation layer information in case of a fused activation.
steniu0127b386c2017-07-18 17:37:43 +010080 */
Isabella Gottardi3f217ec2018-02-12 14:59:19 +000081 void configure(ICLTensor *input, const ICLTensor *weights, const ICLTensor *biases, ICLTensor *output, const PadStrideInfo &conv_info, const ActivationLayerInfo &act_info = ActivationLayerInfo());
Manuel Bottini2b84be52020-04-08 10:15:51 +010082 /** Set the input and output tensors.
83 *
84 * @param[in] compile_context The compile context to be used.
85 * @param[in] input Source tensor. 3 lower dimensions represent a single input [width, height, IFM],
86 * while every optional dimension from 4 and above represent a batch of inputs.
87 * Data types supported: QASYMM8_SIGNED/QASYMM8/F16/F32.
88 * @param[in] weights Weights tensor. Weights are 4D tensor with dimensions [kernel_x, kernel_y, IFM, OFM]. Data type supported:Same as @p input.
89 * @param[in] biases Biases tensor. Shared biases supported. Biases are 1D tensor with dimensions [OFM].
90 * Data type supported: Should match @p input data type, except for input of QASYMM8 and QASYMM8_SIGNED type where biases should be of S32 type.
91 * @param[out] output Destination tensor. 3 lower dimensions represent a single output [width, height, OFM], while the rest represent batch of outputs.
92 * Data types supported: Same as @p input.
93 * @param[in] conv_info Contains padding and stride information described in @ref PadStrideInfo.
94 * @param[in] act_info (Optional) Activation layer information in case of a fused activation.
95 */
96 void configure(const CLCompileContext &compile_context, ICLTensor *input, const ICLTensor *weights, const ICLTensor *biases, ICLTensor *output, const PadStrideInfo &conv_info,
97 const ActivationLayerInfo &act_info = ActivationLayerInfo());
Georgios Pinitas30902ed2017-11-14 15:32:57 +000098 /** Static function to check if given info will lead to a valid configuration of @ref CLDirectConvolutionLayer
99 *
100 * @param[in] input Source tensor. 3 lower dimensions represent a single input [width, height, IFM],
101 * while every optional dimension from 4 and above represent a batch of inputs.
Sheri Zhang681f2d42020-02-20 11:23:08 +0000102 * Data types supported: QASYMM8_SIGNED/QASYMM8/F16/F32.
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000103 * @param[in] weights Weights tensor. Weights are 4D tensor with dimensions [kernel_x, kernel_y, IFM, OFM]. Data type supported:Same as @p input.
Sheri Zhang681f2d42020-02-20 11:23:08 +0000104 * @param[in] biases Biases tensor. Shared biases supported. Biases are 1D tensor with dimensions [OFM].
105 * Data type supported: Should match @p input data type, except for input of QASYMM8 and QASYMM8_SIGNED type where biases should be of S32 type.
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000106 * @param[in] output Destination tensor. 3 lower dimensions represent a single output [width, height, OFM], while the rest represent batch of outputs.
107 * Data types supported: Same as @p input.
108 * @param[in] conv_info Contains padding and stride information described in @ref PadStrideInfo.
Isabella Gottardi3f217ec2018-02-12 14:59:19 +0000109 * @param[in] act_info (Optional) Activation layer information in case of a fused activation.
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000110 *
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000111 * @return a status
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000112 */
Isabella Gottardi3f217ec2018-02-12 14:59:19 +0000113 static Status validate(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *biases, const ITensorInfo *output, const PadStrideInfo &conv_info,
114 const ActivationLayerInfo &act_info = ActivationLayerInfo());
steniu0127b386c2017-07-18 17:37:43 +0100115
116 // Inherited methods overridden:
117 void run() override;
118
119private:
Sheri Zhang1efed922021-03-10 22:43:38 +0000120 struct Impl;
121 std::unique_ptr<Impl> _impl;
steniu0127b386c2017-07-18 17:37:43 +0100122};
123}
Michalis Spyrouf4643372019-11-29 16:17:13 +0000124#endif /* ARM_COMPUTE_CLDIRECTCONVOLUTIONLAYER_H */