blob: b37d3a4047128c3790dd824e37a1127ba7eecad8 [file] [log] [blame]
steniu0127b386c2017-07-18 17:37:43 +01001/*
Georgios Pinitas7fdcfb12020-01-09 16:45:46 +00002 * Copyright (c) 2017-2020 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_CLDIRECTCONVOLUTIONLAYERKERNEL_H
25#define ARM_COMPUTE_CLDIRECTCONVOLUTIONLAYERKERNEL_H
steniu0127b386c2017-07-18 17:37:43 +010026
27#include "arm_compute/core/CL/ICLKernel.h"
28#include "arm_compute/core/Types.h"
29
30namespace arm_compute
31{
32class ICLTensor;
33
34/** Interface for the direct convolution kernel.
35 */
steniu0127b386c2017-07-18 17:37:43 +010036class CLDirectConvolutionLayerKernel : public ICLKernel
37{
38public:
39 /** Default constructor */
40 CLDirectConvolutionLayerKernel();
41 /** Prevent instances of this class from being copied (As this class contains pointers) */
42 CLDirectConvolutionLayerKernel(const CLDirectConvolutionLayerKernel &) = delete;
43 /** Prevent instances of this class from being copied (As this class contains pointers) */
44 CLDirectConvolutionLayerKernel &operator=(const CLDirectConvolutionLayerKernel &) = delete;
45 /** Allow instances of this class to be moved */
46 CLDirectConvolutionLayerKernel(CLDirectConvolutionLayerKernel &&) = default;
47 /** Allow instances of this class to be moved */
48 CLDirectConvolutionLayerKernel &operator=(CLDirectConvolutionLayerKernel &&) = default;
49 /** Default destructor */
50 ~CLDirectConvolutionLayerKernel() = default;
51 /** Set the input, weights, biases and output tensors.
52 *
Gian Marco Iodice5cb4d6a2017-08-08 10:53:00 +010053 * @note: DirectConvolution only works in the following configurations:
54 * 1x1 convolution with stride_x = 1/2/3, stride_y = 1/2/3
55 * 3x3 convolution with stride_x = 1/2, stride_y = 1/2
steniu01db006682017-08-09 16:26:22 +010056 * 5x5 convolution with stride_x = 1/2, stride_y = 1/2
Michalis Spyrou45091732019-05-13 17:41:01 +010057 * 9x9 convolution with stride_x = 1/2, stride_y = 1/2, data_layout=NHWC
Gian Marco Iodice5cb4d6a2017-08-08 10:53:00 +010058 *
steniu0127b386c2017-07-18 17:37:43 +010059 * @param[in] input The input tensor to convolve. 3 lower dimensions represent a single input [width, height, IFM],
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010060 * while every optional dimension from 4 and above represent a batch of inputs. Data types supported: QASYMM8/F16/F32.
steniu0127b386c2017-07-18 17:37:43 +010061 * @param[in] weights Weights tensor. Weights are 4D tensor with dimensions [kernel_x, kernel_y, IFM, OFM].
62 * The 3rd dimension must be the same as the input's volume 3rd dimension.
63 * Data type supported:Same as @p input.
Georgios Pinitas540d0082017-11-17 10:55:00 +000064 * @param[in] biases Biases tensor. Biases are 1D tensor with dimension [OFM].
65 * Data type supported: Should match @p input data type, except for input of QASYMM8 type where biases should be of S32 type
steniu0127b386c2017-07-18 17:37:43 +010066 * @param[out] output Output tensor.
67 * The 3rd dimensions must be equal to the 4th dimension of the @p kernels tensor. Data types supported: Same as @p input.
68 * @param[in] conv_info Contains padding and stride information described in @ref PadStrideInfo.
69 */
70 void configure(const ICLTensor *input, const ICLTensor *weights, const ICLTensor *biases, ICLTensor *output, const PadStrideInfo &conv_info);
Georgios Pinitas30902ed2017-11-14 15:32:57 +000071 /** Static function to check if given info will lead to a valid configuration of @ref CLDirectConvolutionLayerKernel
72 *
73 * @param[in] input The input tensor to convolve. 3 lower dimensions represent a single input [width, height, IFM],
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010074 * while every optional dimension from 4 and above represent a batch of inputs. Data types supported: QASYMM8/F16/F32.
Georgios Pinitas30902ed2017-11-14 15:32:57 +000075 * @param[in] weights Weights tensor. Weights are 4D tensor with dimensions [kernel_x, kernel_y, IFM, OFM].
76 * The 3rd dimension must be the same as the input's volume 3rd dimension.
77 * Data type supported:Same as @p input.
78 * @param[in] biases Biases tensor. Biases are 1D tensor with dimension [OFM]. Data type supported: Same as @p input.
79 * @param[in] output Output tensor.
80 * The 3rd dimensions must be equal to the 4th dimension of the @p kernels tensor. Data types supported: Same as @p input.
81 * @param[in] conv_info Contains padding and stride information described in @ref PadStrideInfo.
Giorgio Arena59486342017-12-01 10:42:47 +000082 * @param[in] target Target GPU architecture.
Georgios Pinitas30902ed2017-11-14 15:32:57 +000083 *
Georgios Pinitas631c41a2017-12-06 11:53:03 +000084 * @return a status
Georgios Pinitas30902ed2017-11-14 15:32:57 +000085 */
Georgios Pinitas631c41a2017-12-06 11:53:03 +000086 static Status validate(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *biases, const ITensorInfo *output, const PadStrideInfo &conv_info, const GPUTarget target);
steniu0127b386c2017-07-18 17:37:43 +010087
88 // Inherited methods overridden:
89 void run(const Window &window, cl::CommandQueue &queue) override;
Georgios Pinitas30902ed2017-11-14 15:32:57 +000090 BorderSize border_size() const override;
steniu0127b386c2017-07-18 17:37:43 +010091
Georgios Pinitasc0d1c862018-03-23 15:13:15 +000092public:
steniu0127b386c2017-07-18 17:37:43 +010093 const ICLTensor *_input;
94 const ICLTensor *_biases;
95 const ICLTensor *_weights;
96 ICLTensor *_output;
Georgios Pinitas7fdcfb12020-01-09 16:45:46 +000097 DataLayout _data_layout;
steniu0127b386c2017-07-18 17:37:43 +010098 BorderSize _border_size;
steniu0127b386c2017-07-18 17:37:43 +010099 int _conv_stride_x;
100 int _conv_stride_y;
101};
Gian Marco Iodicef670a0a2017-09-18 12:20:45 +0100102} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +0000103#endif /*ARM_COMPUTE_CLDIRECTCONVOLUTIONLAYERKERNEL_H */