blob: fc930abcbe734172feaf5260f6d81e1c55cf76d7 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Gian Marco76faef82018-01-29 12:15:32 +00002 * Copyright (c) 2017-2018 ARM Limited.
Anthony Barbier6ff3b192017-09-04 18:44:23 +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 */
24#ifndef __ARM_COMPUTE_CLIM2COLKERNEL_H__
25#define __ARM_COMPUTE_CLIM2COLKERNEL_H__
26
27#include "arm_compute/core/CL/ICLKernel.h"
Gian Marco76faef82018-01-29 12:15:32 +000028#include "arm_compute/core/Size2D.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010029
30namespace arm_compute
31{
32class ICLTensor;
33
34/** Interface for the im2col reshape kernel.
35 *
36 * Rearranges image blocks into columns. It is used to strip out each convolution block to a single column.
37 * It is used to transform a convolution to a plain matrix multiplication.
38 *
39 * For example taking into account the image below and assuming 3x3 image blocks with stride of 1 we have:
40 * @f[
41 * \left( \begin{array}{cccc}
42 * a00 & a01 & a02 & a03 \\
43 * a10 & a11 & a12 & a13 \\
44 * a20 & a21 & a22 & a23 \\
45 * a30 & a31 & a32 & a33 \\
46 * \end{array} \right)
47 * =
48 * \left( \begin{array}{ccccccccc}
49 * a00 & a01 & a02 & a10 & a11 & a12 & a20 & a21 & a22 \\
50 * a01 & a02 & a03 & a11 & a12 & a13 & a21 & a22 & a23 \\
51 * a10 & a11 & a12 & a20 & a21 & a22 & a30 & a31 & a32 \\
52 * a11 & a12 & a13 & a21 & a22 & a23 & a31 & a32 & a33 \\
53 * \end{array} \right)
54 * @f]
55 */
56class CLIm2ColKernel : public ICLKernel
57{
58public:
59 /** Default constructor */
60 CLIm2ColKernel();
61 /** Prevent instances of this class from being copied (As this class contains pointers) */
62 CLIm2ColKernel(const CLIm2ColKernel &) = delete;
63 /** Prevent instances of this class from being copied (As this class contains pointers) */
64 CLIm2ColKernel &operator=(const CLIm2ColKernel &) = delete;
65 /** Allow instances of this class to be moved */
66 CLIm2ColKernel(CLIm2ColKernel &&) = default;
67 /** Allow instances of this class to be moved */
68 CLIm2ColKernel &operator=(CLIm2ColKernel &&) = default;
69 /** Set the input and output of the kernel.
70 *
Gian Marco Iodice13edbff2017-06-26 17:20:16 +010071 * @param[in] input The input tensor to convert. 3 lower dimensions represent a single input [width, height, IFM],
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010072 * while every optional dimension from 4 and above represent a batch of inputs. Data types supported: QASYMM8/F16/F32
Gian Marco Iodice13edbff2017-06-26 17:20:16 +010073 * @param[out] output The output tensor. First 2 lower dimensions represent a transform of each 3D input,
74 * while every dimension above represents a batch. Data types supported: Same as @p input
75 * @param[in] kernel_dims The kernel dimensions (width and height).
76 * @param[in] conv_info Contains padding and stride information described in @ref PadStrideInfo.
77 * @param[in] has_bias In case biases are provided expands the matrix with 1.
Alex Gilday7da29b62018-03-23 14:16:00 +000078 * @param[in] dilation (Optional) Dilation, in elements, across x and y. Defaults to (1, 1).
Anthony Barbier6ff3b192017-09-04 18:44:23 +010079 */
Alex Gilday7da29b62018-03-23 14:16:00 +000080 void configure(const ICLTensor *input, ICLTensor *output, const Size2D &kernel_dims, const PadStrideInfo &conv_info, bool has_bias, const Size2D &dilation = Size2D(1U, 1U));
Georgios Pinitas358ca202017-12-07 16:47:52 +000081 /** Static function to check if given info will lead to a valid configuration of @ref CLIm2ColKernel
82 *
83 * @param[in] input The input tensor to convert. 3 lower dimensions represent a single input [width, height, IFM],
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010084 * while every optional dimension from 4 and above represent a batch of inputs. Data types supported: QASYMM8/F16/F32
Georgios Pinitas358ca202017-12-07 16:47:52 +000085 * @param[in] output The output tensor. First 2 lower dimensions represent a transform of each 3D input,
86 * while every dimension above represents a batch. Data types supported: Same as @p input
87 * @param[in] kernel_dims The kernel dimensions (width and height).
88 * @param[in] conv_info Contains padding and stride information described in @ref PadStrideInfo.
89 * @param[in] has_bias In case biases are provided expands the matrix with 1.
Alex Gilday7da29b62018-03-23 14:16:00 +000090 * @param[in] dilation (Optional) Dilation, in elements, across x and y. Defaults to (1, 1).
Georgios Pinitas358ca202017-12-07 16:47:52 +000091 *
92 * @return a status
93 */
Alex Gilday7da29b62018-03-23 14:16:00 +000094 static Status validate(const ITensorInfo *input, const ITensorInfo *output, const Size2D &kernel_dims, const PadStrideInfo &conv_info, bool has_bias, const Size2D &dilation = Size2D(1U, 1U));
Anthony Barbier6ff3b192017-09-04 18:44:23 +010095
Georgios Pinitas78c00902018-01-09 17:33:11 +000096 // Inherited methods overridden:
97 void run(const Window &window, cl::CommandQueue &queue) override;
98
Anthony Barbier6ff3b192017-09-04 18:44:23 +010099private:
100 /** Run the reshape kernel optimised for the special case (stride is 1, padding is 0 and kernel's low 3 dimensions are same as input)
101 *
102 * @param[in] window Region on which to execute the kernel. (Must be a valid region of the window returned by window()).
103 * @param[in,out] queue Command queue on which to enqueue the kernel.
104 */
105 void run_reduced(const Window &window, cl::CommandQueue &queue);
106 /** run the generic convolution layer input reshape kernel
107 *
108 * @param[in] window Region on which to execute the kernel. (Must be a valid region of the window returned by window()).
109 * @param[in,out] queue Command queue on which to enqueue the kernel.
110 */
111 void run_generic(const Window &window, cl::CommandQueue &queue);
112
Pablo Tello4a626a72018-04-04 10:01:14 +0100113 /** Chooses and configure the right kernel for the given input arguments.
114 *
115 * @param[in] input The input tensor to convert. 3 lower dimensions represent a single input [width, height, IFM],
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +0100116 * while every optional dimension from 4 and above represent a batch of inputs. Data types supported: QASYMM8/F16/F32
Pablo Tello4a626a72018-04-04 10:01:14 +0100117 * @param[in] output The output tensor. First 2 lower dimensions represent a transform of each 3D input,
118 * while every dimension above represents a batch. Data types supported: Same as @p input
119 * @param[in] kernel_dims The kernel dimensions (width and height).
120 * @param[in] dilation Dilation, in elements, across x and y. Defaults to (1, 1).
121 * @param[in] conv_info Contains padding and stride information described in @ref PadStrideInfo.
122 * @param[in] has_bias In case biases are provided expands the matrix with 1.
123 * @param[out] build_opts OpenCL buil program options.
124 *
125 * @return the name of the kernel chosen
126 */
127 std::string configure_window(const ICLTensor *input, ICLTensor *output, const Size2D &kernel_dims,
128 const Size2D &dilation, const PadStrideInfo &conv_info, CLBuildOptions &build_opts);
129
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100130 /** Common signature for the kernel to run */
131 using Im2ColFunction = void (CLIm2ColKernel::*)(const Window &, cl::CommandQueue &);
132
Georgios Pinitas17812ba2018-06-04 19:27:13 +0100133public:
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100134 const ICLTensor *_input;
135 ICLTensor *_output;
Georgios Pinitas17812ba2018-06-04 19:27:13 +0100136 PadStrideInfo _conv_info;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100137 std::pair<unsigned int, unsigned int> _convolved_dims;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100138 unsigned int _num_elems_processed_per_iteration;
139 Im2ColFunction _run_func;
Gian Marco76faef82018-01-29 12:15:32 +0000140 Size2D _kernel_dims;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100141};
Gian Marco Iodicef670a0a2017-09-18 12:20:45 +0100142} // namespace arm_compute
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100143#endif /*__ARM_COMPUTE_CLIM2COLKERNEL_H__ */