blob: b22c666a6b0e396a08a935b7c40e3c0d7e7ab753 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Manuel Bottini8481d832019-12-10 15:28:40 +00002 * 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_CLCOL2IMKERNEL_H
25#define ARM_COMPUTE_CLCOL2IMKERNEL_H
Anthony Barbier6ff3b192017-09-04 18:44:23 +010026
27#include "arm_compute/core/CL/ICLKernel.h"
28
29namespace arm_compute
30{
31class ICLTensor;
32
33/** Interface for the col2im reshaping kernel.
34 *
35 * Rearranges each matrix column into image blocks. It's the inverse operation of @ref CLIm2ColKernel.
36 *
37 * For example, a vector of 9 elements can be reshaped to a block(image) of 3x3:
38 *
39 * @f[
40 * \left( \begin{array}{ccccccccc}
41 * a0 & a1 & a2 & a3 & a4 & a5 & a6 & a7 & a8 \\
42 * \end{array} \right)
43 * \rightarrow
44 * \left( \begin{array}{ccc}
45 * a0 & a1 & a2 \\
46 * a3 & a4 & a5 \\
47 * a6 & a7 & a8 \\
48 * \end{array} \right)
49 * @f]
50 */
51class CLCol2ImKernel : public ICLKernel
52{
53public:
54 /** Default constructor */
55 CLCol2ImKernel();
56 /** Prevent instances of this class from being copied (As this class contains pointers) */
57 CLCol2ImKernel(const CLCol2ImKernel &) = delete;
58 /** Prevent instances of this class from being copied (As this class contains pointers) */
59 CLCol2ImKernel &operator=(const CLCol2ImKernel &) = delete;
60 /** Allow instances of this class to be moved */
61 CLCol2ImKernel(CLCol2ImKernel &&) = default;
62 /** Allow instances of this class to be moved */
63 CLCol2ImKernel &operator=(CLCol2ImKernel &&) = default;
64 /** Default destructor */
65 ~CLCol2ImKernel() = default;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010066 /** Set the input and output of the kernel.
67 *
Manuel Bottini8481d832019-12-10 15:28:40 +000068 * @param[in] input The input tensor to convert. Data types supported: QASYMM8/QASYMM8_SIGNED/F16/F32
Anthony Barbier6ff3b192017-09-04 18:44:23 +010069 * @param[out] output The output tensor. 3 lower dimensions represent a single output [width, height, OFM],
Gian Marco Iodice916d1bc2018-08-13 11:20:41 +010070 * while the rest represent batch of outputs. Data types supported: Same as @p input. Data layout: NCHW
Anthony Barbier6ff3b192017-09-04 18:44:23 +010071 * @param[in] convolved_dims Output convolved dimensions.
Michele Di Giorgio980002b2018-08-08 09:25:51 +010072 * @param[in] num_groups (Optional) Number of groups when performing a grouped convolution
Anthony Barbier6ff3b192017-09-04 18:44:23 +010073 */
Giorgio Arena226e4b92018-08-23 12:00:02 +010074 void configure(const ICLTensor *input, ICLTensor *output, const Size2D &convolved_dims, unsigned int num_groups = 1);
Georgios Pinitas78c00902018-01-09 17:33:11 +000075 /** Static function to check if given info will lead to a valid configuration of @ref CLCol2ImKernel
76 *
Manuel Bottini8481d832019-12-10 15:28:40 +000077 * @param[in] input The input tensor to convert. Data types supported: QASYMM8/QASYMM8_SIGNED/F16/F32
Georgios Pinitas78c00902018-01-09 17:33:11 +000078 * @param[in] output The output tensor. 3 lower dimensions represent a single output [width, height, OFM],
Gian Marco Iodice916d1bc2018-08-13 11:20:41 +010079 * while the rest represent batch of outputs. Data types supported: Same as @p input. Data layout: NCHW
Georgios Pinitas78c00902018-01-09 17:33:11 +000080 * @param[in] convolved_dims Output convolved dimensions.
Michele Di Giorgio980002b2018-08-08 09:25:51 +010081 * @param[in] num_groups (Optional) Number of groups when performing a grouped convolution
Georgios Pinitas78c00902018-01-09 17:33:11 +000082 *
83 * @return a status
84 */
Giorgio Arena226e4b92018-08-23 12:00:02 +010085 static Status validate(const ITensorInfo *input, const ITensorInfo *output, const Size2D &convolved_dims, unsigned int num_groups = 1);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010086
87 // Inherited methods overridden:
88 void run(const Window &window, cl::CommandQueue &queue) override;
89
Georgios Pinitas17812ba2018-06-04 19:27:13 +010090public:
Anthony Barbier6ff3b192017-09-04 18:44:23 +010091 const ICLTensor *_input;
92 ICLTensor *_output;
Giorgio Arena226e4b92018-08-23 12:00:02 +010093 Size2D _convolved_dims;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010094};
Gian Marco Iodicef670a0a2017-09-18 12:20:45 +010095} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +000096#endif /*ARM_COMPUTE_CLCOL2IMKERNEL_H */