blob: 0647f5dcec78583fe8cfb897d7206257e302bcd8 [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).
Gian Marco Iodice916d1bc2018-08-13 11:20:41 +010079 * @param[in] num_groups (Optional) Number of groups when performing a grouped convolution. num_groups != 1 is only supported for NCHW data layout
Anthony Barbier6ff3b192017-09-04 18:44:23 +010080 */
Giorgio Arena0f170392018-07-18 16:13:12 +010081 void configure(const ICLTensor *input, ICLTensor *output, const Size2D &kernel_dims, const PadStrideInfo &conv_info, bool has_bias, const Size2D &dilation = Size2D(1U, 1U),
82 unsigned int num_groups = 1);
Georgios Pinitas358ca202017-12-07 16:47:52 +000083 /** Static function to check if given info will lead to a valid configuration of @ref CLIm2ColKernel
84 *
85 * @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 +010086 * 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 +000087 * @param[in] output The output tensor. First 2 lower dimensions represent a transform of each 3D input,
88 * while every dimension above represents a batch. Data types supported: Same as @p input
89 * @param[in] kernel_dims The kernel dimensions (width and height).
90 * @param[in] conv_info Contains padding and stride information described in @ref PadStrideInfo.
91 * @param[in] has_bias In case biases are provided expands the matrix with 1.
Alex Gilday7da29b62018-03-23 14:16:00 +000092 * @param[in] dilation (Optional) Dilation, in elements, across x and y. Defaults to (1, 1).
Gian Marco Iodice916d1bc2018-08-13 11:20:41 +010093 * @param[in] num_groups (Optional) Number of groups when performing a grouped convolution. num_groups != 1 is only supported for NCHW data layout
Georgios Pinitas358ca202017-12-07 16:47:52 +000094 *
95 * @return a status
96 */
Giorgio Arena0f170392018-07-18 16:13:12 +010097 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),
98 unsigned int num_groups = 1);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010099
Georgios Pinitas78c00902018-01-09 17:33:11 +0000100 // Inherited methods overridden:
101 void run(const Window &window, cl::CommandQueue &queue) override;
102
Georgios Pinitas17812ba2018-06-04 19:27:13 +0100103public:
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100104 const ICLTensor *_input;
105 ICLTensor *_output;
106 std::pair<unsigned int, unsigned int> _convolved_dims;
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100107 unsigned int _num_elems_processed_per_iteration;
108 Size2D _kernel_dims;
109 PadStrideInfo _conv_info;
Giorgio Arena0f170392018-07-18 16:13:12 +0100110 unsigned int _num_groups;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100111};
Gian Marco Iodicef670a0a2017-09-18 12:20:45 +0100112} // namespace arm_compute
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100113#endif /*__ARM_COMPUTE_CLIM2COLKERNEL_H__ */