blob: 6c1c631d82941f519e46401b576fc963ce2af005 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2017-2020 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 */
Michalis Spyrouf4643372019-11-29 16:17:13 +000024#ifndef ARM_COMPUTE_NEIM2COLKERNEL_H
25#define ARM_COMPUTE_NEIM2COLKERNEL_H
Anthony Barbier6ff3b192017-09-04 18:44:23 +010026
Michalis Spyrouebcebf12020-10-21 00:04:14 +010027#include "src/core/NEON/INEKernel.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010028
29namespace arm_compute
30{
31class ITensor;
Gian Marco Iodice13edbff2017-06-26 17:20:16 +010032class Size2D;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010033
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 *
41 * @f[
42 * \left( \begin{array}{cccc}
43 * a00 & a01 & a02 & a03 \\
44 * a10 & a11 & a12 & a13 \\
45 * a20 & a21 & a22 & a23 \\
46 * a30 & a31 & a32 & a33 \\
47 * \end{array} \right)
48 * \rightarrow
49 * \left( \begin{array}{ccccccccc}
50 * a00 & a01 & a02 & a10 & a11 & a12 & a20 & a21 & a22 \\
51 * a01 & a02 & a03 & a11 & a12 & a13 & a21 & a22 & a23 \\
52 * a10 & a11 & a12 & a20 & a21 & a22 & a30 & a31 & a32 \\
53 * a11 & a12 & a13 & a21 & a22 & a23 & a31 & a32 & a33 \\
54 * \end{array} \right)
55 * @f]
56 */
57class NEIm2ColKernel : public INEKernel
58{
59public:
Anthony Barbiere8a49832018-01-18 10:04:05 +000060 const char *name() const override
61 {
62 return "NEIm2ColKernel";
63 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +010064 /** Default constructor */
65 NEIm2ColKernel();
66 /** Prevent instances of this class from being copied (As this class contains pointers) */
67 NEIm2ColKernel(const NEIm2ColKernel &) = delete;
68 /** Prevent instances of this class from being copied (As this class contains pointers) */
69 NEIm2ColKernel &operator=(const NEIm2ColKernel &) = delete;
70 /** Allow instances of this class to be moved */
71 NEIm2ColKernel(NEIm2ColKernel &&) = default;
72 /** Allow instances of this class to be moved */
73 NEIm2ColKernel &operator=(NEIm2ColKernel &&) = default;
74 /** Default destructor */
75 ~NEIm2ColKernel() = default;
76
77 /** Set the input and output of the kernel.
78 *
Giorgio Arena368e6352018-08-20 15:06:07 +010079 * @param[in] input The input tensor to convert. 3 lower dimensions represent a single input [width, height, IFM],
Georgios Pinitasc7b183a2020-03-06 18:12:09 +000080 * while every optional dimension from 4 and above represent a batch of inputs.
81 * Data types supported: QASYMM8/QASYMM8_SIGNED/BFLOAT16/F16/F32
Michele Di Giorgiof9b595a2020-07-03 13:34:52 +010082 * Note: QASYMM8/QASYMM8_SIGNED works only for has_bias = false
Giorgio Arena368e6352018-08-20 15:06:07 +010083 * @param[out] output The output tensor. Data types supported: Same as @p input
84 * @param[in] kernel_dims The kernel dimensions (width and height).
85 * @param[in] conv_info Contains padding and stride information described in @ref PadStrideInfo.
86 * @param[in] has_bias In case biases are provided expands the matrix with 1.
87 * @param[in] dilation (Optional) Dilation, in elements, across x and y. Defaults to (1, 1).
88 * @param[in] num_groups (Optional) Number of groups when performing a grouped convolution. num_groups != 1 is not supported
Anthony Barbier6ff3b192017-09-04 18:44:23 +010089 */
Ioan-Cristian Szabob4e3e1c2017-11-30 17:17:17 +000090 void configure(const ITensor *input, ITensor *output, const Size2D &kernel_dims, const PadStrideInfo &conv_info,
Giorgio Arena368e6352018-08-20 15:06:07 +010091 bool has_bias, const Size2D &dilation = Size2D(1U, 1U), unsigned int num_groups = 1);
Georgios Pinitasd912fd82017-11-27 21:00:13 +000092 /** Static function to check if given info will lead to a valid configuration of @ref NEIm2ColKernel
93 *
Giorgio Arena368e6352018-08-20 15:06:07 +010094 * @param[in] input The input tensor to convert. 3 lower dimensions represent a single input [width, height, IFM],
Georgios Pinitasc7b183a2020-03-06 18:12:09 +000095 * while every optional dimension from 4 and above represent a batch of inputs.
96 * Data types supported: QASYMM8/QASYMM8_SIGNED/BFLOAT16/F16/F32
Michele Di Giorgiof9b595a2020-07-03 13:34:52 +010097 * Note: QASYMM8/QASYMM8_SIGNED works only for has_bias = false
Giorgio Arena368e6352018-08-20 15:06:07 +010098 * @param[in] output The output tensor. Data types supported: Same as @p input
99 * @param[in] kernel_dims The kernel dimensions (width and height).
100 * @param[in] conv_info Contains padding and stride information described in @ref PadStrideInfo.
101 * @param[in] has_bias In case biases are provided expands the matrix with 1.
102 * @param[in] dilation (Optional) Dilation, in elements, across x and y. Defaults to (1, 1).
103 * @param[in] num_groups (Optional) Number of groups when performing a grouped convolution. num_groups != 1 is not supported
Georgios Pinitasd912fd82017-11-27 21:00:13 +0000104 *
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000105 * @return a status
Georgios Pinitasd912fd82017-11-27 21:00:13 +0000106 */
Ioan-Cristian Szabob4e3e1c2017-11-30 17:17:17 +0000107 static Status validate(const ITensorInfo *input, const ITensorInfo *output, const Size2D &kernel_dims, const PadStrideInfo &conv_info,
Giorgio Arena368e6352018-08-20 15:06:07 +0100108 bool has_bias, const Size2D &dilation = Size2D(1U, 1U), unsigned int num_groups = 1);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100109
110 // Inherited methods overridden:
Moritz Pflanzerc186b572017-09-07 09:48:04 +0100111 void run(const Window &window, const ThreadInfo &info) override;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100112
113private:
Giorgio Arenafb629082018-08-20 18:03:27 +0100114 /** Template function to run im2col
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100115 *
116 * @param[in] window Region on which to execute the kernel. (Must be a valid region of the window returned by window()).
117 */
Giorgio Arenafb629082018-08-20 18:03:27 +0100118 template <typename T, bool has_pads, bool is_nchw>
Giorgio Arena368e6352018-08-20 15:06:07 +0100119 void run_im2col(const Window &window);
120
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100121 /** Common signature for all the specialised im2col functions
122 *
123 * @param[in] window Region on which to execute the kernel.
124 */
125 using Im2ColFunctionPtr = void (NEIm2ColKernel::*)(const Window &window);
126
127 Im2ColFunctionPtr _func;
128 const ITensor *_input;
129 ITensor *_output;
130 std::pair<unsigned int, unsigned int> _convolved_dims;
131 PadStrideInfo _conv_info;
Gian Marco Iodice13edbff2017-06-26 17:20:16 +0100132 unsigned int _kernel_width;
133 unsigned int _kernel_height;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100134 bool _has_bias;
Alex Gilday7da29b62018-03-23 14:16:00 +0000135 Size2D _dilation;
Georgios Pinitas329b4d62020-01-15 17:48:20 +0000136 DataLayout _data_layout;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100137};
Gian Marco Iodice356f6432017-09-22 11:32:21 +0100138} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +0000139#endif /*ARM_COMPUTE_NEIM2COLKERNEL_H */