blob: c0fef45afee0e3885ced9a373028fc72a9310036 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Gian Marco36a0a462018-01-12 10:21:40 +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_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 *
Gian Marco36a0a462018-01-12 10:21:40 +000050 * After this operation, the output matrix will have the following shape: [ height * W, ceil(width / W) ] where W = 4 * mult_interleave4x4_height
Anthony Barbier6ff3b192017-09-04 18:44:23 +010051 */
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 Marco36a0a462018-01-12 10:21:40 +000067 * @param[in] input Input tensor. Data types supported: U8/S8/QS8/QASYMM8/U16/S16/QS16/F16/U32/S32/F32
68 * @param[out] output Output tensor. Data type supported: same as @p input
69 * @param[in] mult_interleave4x4_height (Optional) Multiplication factor for the height of the 4x4 interleave block
Anthony Barbier6ff3b192017-09-04 18:44:23 +010070 */
Gian Marco36a0a462018-01-12 10:21:40 +000071 void configure(const ICLTensor *input, ICLTensor *output, int mult_interleave4x4_height = 1);
Georgios Pinitas358ca202017-12-07 16:47:52 +000072 /** Static function to check if given info will lead to a valid configuration of @ref CLGEMMInterleave4x4Kernel
73 *
Gian Marco36a0a462018-01-12 10:21:40 +000074 * @param[in] input Input tensor info. Data types supported: U8/S8/QS8/QASYMM8/U16/S16/QS16/F16/U32/S32/F32
75 * @param[in] output Output tensor info which stores the interleaved matrix. Data type supported: same as @p input.
76 * @param[in] mult_interleave4x4_height Multiplication factor for the height of the 4x4 interleave block
Georgios Pinitas358ca202017-12-07 16:47:52 +000077 *
78 * @return a status
79 */
Gian Marco36a0a462018-01-12 10:21:40 +000080 static Status validate(const ITensorInfo *input, const ITensorInfo *output, int mult_interleave4x4_height);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010081
82 // Inherited methods overridden
83 void run(const Window &window, cl::CommandQueue &queue) override;
84
85private:
86 const ICLTensor *_input;
87 ICLTensor *_output;
88};
Gian Marco Iodicef670a0a2017-09-18 12:20:45 +010089} // namespace arm_compute
Anthony Barbier6ff3b192017-09-04 18:44:23 +010090#endif /* __ARM_COMPUTE_CLGEMMINTERLEAVE4X4KERNEL_H__ */