blob: 2520eff5dec5cfef0924c07cb1b51e100e94e565 [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_CLGEMMINTERLEAVE4X4KERNEL_H__
25#define __ARM_COMPUTE_CLGEMMINTERLEAVE4X4KERNEL_H__
26
27#include "arm_compute/core/CL/ICLKernel.h"
28
29namespace arm_compute
30{
31class ICLTensor;
32
33/** OpenCL kernel which interleaves the elements of a matrix A in chunk of 4x4
34 *
35 * This function puts the values in a 4x4 block of Matrix A on the same row (Interleaved values)
36 *
37 * @f[
38 * \left( \begin{array}{cccc}
39 * a00 & a01 & a02 & a03 \\
40 * a10 & a11 & a12 & a13 \\
41 * a20 & a21 & a22 & a23 \\
42 * a30 & a31 & a32 & a33 \\
43 * \end{array} \right)
44 * \rightarrow
45 * \left( \begin{array}{ccccccccccccccccc}
46 * a00 & a10 & a20 & a30 & a01 & a11 & a21 & a31 & a02 & a12 & a22 & a32 & a03 & a13 & a23 & a33 \\
47 * \end{array} \right)
48 * @f]
49 *
50 * After this operation, the output matrix will have the following shape: [ height * 4, ceil(width / 4.0f) ]
51 */
52class CLGEMMInterleave4x4Kernel : public ICLKernel
53{
54public:
55 /** Default constructor */
56 CLGEMMInterleave4x4Kernel();
57 /** Prevent instances of this class from being copied (As this class contains pointers) */
58 CLGEMMInterleave4x4Kernel(const CLGEMMInterleave4x4Kernel &) = delete;
59 /** Prevent instances of this class from being copied (As this class contains pointers) */
60 CLGEMMInterleave4x4Kernel &operator=(const CLGEMMInterleave4x4Kernel &) = delete;
61 /** Allow instances of this class to be moved */
62 CLGEMMInterleave4x4Kernel(CLGEMMInterleave4x4Kernel &&) = default;
63 /** Allow instances of this class to be moved */
64 CLGEMMInterleave4x4Kernel &operator=(CLGEMMInterleave4x4Kernel &&) = default;
65 /** Initialise the kernel's input and output.
66 *
Gian Marcoc8279902017-11-27 16:35:28 +000067 * @param[in] input Input tensor. Data types supported: U8/S8/QS8/QASYMM8/U16/S16/QS16/F16/U32/S32/F32
Anthony Barbier6ff3b192017-09-04 18:44:23 +010068 * @param[out] output Output tensor. Data type supported: same as @p input
69 */
70 void configure(const ICLTensor *input, ICLTensor *output);
Georgios Pinitas358ca202017-12-07 16:47:52 +000071 /** Static function to check if given info will lead to a valid configuration of @ref CLGEMMInterleave4x4Kernel
72 *
73 * @param[in] input Input tensor info. Data types supported: U8/S8/QS8/QASYMM8/U16/S16/QS16/F16/U32/S32/F32
74 * @param[in] output Output tensor info which stores the interleaved matrix. Data type supported: same as @p input.
75 *
76 * @return a status
77 */
78 static Status validate(const ITensorInfo *input, const ITensorInfo *output);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010079
80 // Inherited methods overridden
81 void run(const Window &window, cl::CommandQueue &queue) override;
82
83private:
84 const ICLTensor *_input;
85 ICLTensor *_output;
86};
Gian Marco Iodicef670a0a2017-09-18 12:20:45 +010087} // namespace arm_compute
Anthony Barbier6ff3b192017-09-04 18:44:23 +010088#endif /* __ARM_COMPUTE_CLGEMMINTERLEAVE4X4KERNEL_H__ */