blob: 28eecf029a9360b55b07f85a98a2f77e4dbe90c6 [file] [log] [blame]
steniu0127b386c2017-07-18 17:37:43 +01001/*
2 * Copyright (c) 2017 ARM Limited.
3 *
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 */
24#ifndef __ARM_COMPUTE_CLDIRECTCONVOLUTIONLAYERKERNEL_H__
25#define __ARM_COMPUTE_CLDIRECTCONVOLUTIONLAYERKERNEL_H__
26
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 */
36template <unsigned int kernel_size>
37class CLDirectConvolutionLayerKernel : public ICLKernel
38{
39public:
40 /** Default constructor */
41 CLDirectConvolutionLayerKernel();
42 /** Prevent instances of this class from being copied (As this class contains pointers) */
43 CLDirectConvolutionLayerKernel(const CLDirectConvolutionLayerKernel &) = delete;
44 /** Prevent instances of this class from being copied (As this class contains pointers) */
45 CLDirectConvolutionLayerKernel &operator=(const CLDirectConvolutionLayerKernel &) = delete;
46 /** Allow instances of this class to be moved */
47 CLDirectConvolutionLayerKernel(CLDirectConvolutionLayerKernel &&) = default;
48 /** Allow instances of this class to be moved */
49 CLDirectConvolutionLayerKernel &operator=(CLDirectConvolutionLayerKernel &&) = default;
50 /** Default destructor */
51 ~CLDirectConvolutionLayerKernel() = default;
52 /** Set the input, weights, biases and output tensors.
53 *
54 * @param[in] input The input tensor to convolve. 3 lower dimensions represent a single input [width, height, IFM],
55 * while every optional dimension from 4 and above represent a batch of inputs. Data types supported: F32.
56 * @param[in] weights Weights tensor. Weights are 4D tensor with dimensions [kernel_x, kernel_y, IFM, OFM].
57 * The 3rd dimension must be the same as the input's volume 3rd dimension.
58 * Data type supported:Same as @p input.
59 * @param[in] biases Biases tensor. Biases are 1D tensor with dimension [OFM]. Data type supported: Same as @p input.
60 * @param[out] output Output tensor.
61 * The 3rd dimensions must be equal to the 4th dimension of the @p kernels tensor. Data types supported: Same as @p input.
62 * @param[in] conv_info Contains padding and stride information described in @ref PadStrideInfo.
63 */
64 void configure(const ICLTensor *input, const ICLTensor *weights, const ICLTensor *biases, ICLTensor *output, const PadStrideInfo &conv_info);
65
66 // Inherited methods overridden:
67 BorderSize border_size() const override;
68
69 // Inherited methods overridden:
70 void run(const Window &window, cl::CommandQueue &queue) override;
71
72private:
73 const ICLTensor *_input;
74 const ICLTensor *_biases;
75 const ICLTensor *_weights;
76 ICLTensor *_output;
77 BorderSize _border_size;
78 int _conv_pad_x;
79 int _conv_pad_y;
80 int _conv_stride_x;
81 int _conv_stride_y;
82};
83
84using CLDirectConvolutionLayer3x3Kernel = CLDirectConvolutionLayerKernel<3>;
85}
86#endif /*__ARM_COMPUTE_CLDIRECTCONVOLUTIONLAYERKERNEL_H__ */