blob: 4592fc29219583c6101309f51af5615ab3fd997b [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 *
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010067 * @param[in] input Input tensor. Data types supported: U8/S8/QASYMM8/U16/S16/F16/U32/S32/F32
Gian Marco36a0a462018-01-12 10:21:40 +000068 * @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
Gian Marco Iodice68a3f562018-07-26 11:44:03 +010070 * @param[in] reinterpret_input_as_3d (Optional) True if the input has to be reinterpreted as 3D tensor
Anthony Barbier6ff3b192017-09-04 18:44:23 +010071 */
Gian Marco Iodice68a3f562018-07-26 11:44:03 +010072 void configure(const ICLTensor *input, ICLTensor *output, int mult_interleave4x4_height = 1, bool reinterpret_input_as_3d = false);
Georgios Pinitas358ca202017-12-07 16:47:52 +000073 /** Static function to check if given info will lead to a valid configuration of @ref CLGEMMInterleave4x4Kernel
74 *
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010075 * @param[in] input Input tensor info. Data types supported: U8/S8/QASYMM8/U16/S16/F16/U32/S32/F32
Gian Marco36a0a462018-01-12 10:21:40 +000076 * @param[in] output Output tensor info which stores the interleaved matrix. Data type supported: same as @p input.
77 * @param[in] mult_interleave4x4_height Multiplication factor for the height of the 4x4 interleave block
Gian Marco Iodice68a3f562018-07-26 11:44:03 +010078 * @param[in] reinterpret_input_as_3d (Optional) True if the input has to be reinterpreted as 3D tensor
Georgios Pinitas358ca202017-12-07 16:47:52 +000079 *
80 * @return a status
81 */
Gian Marco Iodice68a3f562018-07-26 11:44:03 +010082 static Status validate(const ITensorInfo *input, const ITensorInfo *output, int mult_interleave4x4_height, bool reinterpret_input_as_3d);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010083
84 // Inherited methods overridden
85 void run(const Window &window, cl::CommandQueue &queue) override;
86
87private:
88 const ICLTensor *_input;
89 ICLTensor *_output;
Gian Marco Iodice68a3f562018-07-26 11:44:03 +010090 bool _reinterpret_input_as_3d;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010091};
Gian Marco Iodicef670a0a2017-09-18 12:20:45 +010092} // namespace arm_compute
Anthony Barbier6ff3b192017-09-04 18:44:23 +010093#endif /* __ARM_COMPUTE_CLGEMMINTERLEAVE4X4KERNEL_H__ */