blob: 9b8b98b38875edee84440d7ebcf936b2b2d3d276 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +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_NEIM2COLKERNEL_H__
25#define __ARM_COMPUTE_NEIM2COLKERNEL_H__
26
27#include "arm_compute/core/NEON/INEKernel.h"
28
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:
60 /** Default constructor */
61 NEIm2ColKernel();
62 /** Prevent instances of this class from being copied (As this class contains pointers) */
63 NEIm2ColKernel(const NEIm2ColKernel &) = delete;
64 /** Prevent instances of this class from being copied (As this class contains pointers) */
65 NEIm2ColKernel &operator=(const NEIm2ColKernel &) = delete;
66 /** Allow instances of this class to be moved */
67 NEIm2ColKernel(NEIm2ColKernel &&) = default;
68 /** Allow instances of this class to be moved */
69 NEIm2ColKernel &operator=(NEIm2ColKernel &&) = default;
70 /** Default destructor */
71 ~NEIm2ColKernel() = default;
72
73 /** Set the input and output of the kernel.
74 *
Gian Marco Iodice13edbff2017-06-26 17:20:16 +010075 * @param[in] input The input tensor to convert. 3 lower dimensions represent a single input [width, height, IFM],
76 * while every optional dimension from 4 and above represent a batch of inputs. Data types supported: QS8/F16/F32
77 * @param[out] output The output tensor. Data types supported: Same as @p input
78 * @param[in] kernel_dims The kernel dimensions (width and height).
79 * @param[in] conv_info Contains padding and stride information described in @ref PadStrideInfo.
80 * @param[in] has_bias In case biases are provided expands the matrix with 1.
Anthony Barbier6ff3b192017-09-04 18:44:23 +010081 */
Gian Marco Iodice13edbff2017-06-26 17:20:16 +010082 void configure(const ITensor *input, ITensor *output, const Size2D &kernel_dims, const PadStrideInfo &conv_info, bool has_bias);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010083
84 // Inherited methods overridden:
85 void run(const Window &window) override;
86
87private:
88 /** Template function to run the im2col optimised for the fully connected layer case
89 *
90 * @param[in] window Region on which to execute the kernel. (Must be a valid region of the window returned by window()).
91 */
92 template <typename T>
93 void run_reduced(const Window &window);
94 /** Template function to run the im2col used for the convolution layer case
95 *
96 * @param[in] window Region on which to execute the kernel. (Must be a valid region of the window returned by window()).
97 */
98 template <typename T, bool has_pads>
99 void run_generic(const Window &window);
100 /** Common signature for all the specialised im2col functions
101 *
102 * @param[in] window Region on which to execute the kernel.
103 */
104 using Im2ColFunctionPtr = void (NEIm2ColKernel::*)(const Window &window);
105
106 Im2ColFunctionPtr _func;
107 const ITensor *_input;
108 ITensor *_output;
109 std::pair<unsigned int, unsigned int> _convolved_dims;
110 PadStrideInfo _conv_info;
Gian Marco Iodice13edbff2017-06-26 17:20:16 +0100111 unsigned int _kernel_width;
112 unsigned int _kernel_height;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100113 bool _has_bias;
114};
115}
116#endif /*__ARM_COMPUTE_NEIM2COLKERNEL_H__ */