blob: d7b785996f6b66ba47d6ca73a4f68f7b05191159 [file] [log] [blame]
Georgios Pinitas4a578b92021-06-25 12:13:49 +01001/*
2 * Copyright (c) 2019-2021 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_CL_GEMMLOWP_MATRIXMULTIPLY_RESHAPED_KERNEL_H
25#define ARM_COMPUTE_CL_GEMMLOWP_MATRIXMULTIPLY_RESHAPED_KERNEL_H
26
27#include "arm_compute/core/KernelDescriptors.h"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010028
Georgios Pinitas4a578b92021-06-25 12:13:49 +010029#include "src/core/common/Macros.h"
Georgios Pinitas7891a732021-08-20 21:39:25 +010030#include "src/gpu/cl/ClCompileContext.h"
31#include "src/gpu/cl/IClKernel.h"
Georgios Pinitas4a578b92021-06-25 12:13:49 +010032
33namespace arm_compute
34{
35namespace opencl
36{
37namespace kernels
38{
39/** OpenCL kernel to multiply matrices when both the input matrices LHS (src0) and RHS (src1) have been reshaped
40 *
41 * @note The input matrices @p src0 and @p src1 must be reshaped through:
42 * - @ref opencl::kernels::ClGemmReshapeLhsMatrixKernel
43 * - @ref opencl::kernels::ClGemmReshapeRhsMatrixKernel
44 */
45class ClGemmLowpMatrixMultiplyReshapedKernel : public IClKernel
46{
47public:
48 ClGemmLowpMatrixMultiplyReshapedKernel();
49 ARM_COMPUTE_DISALLOW_COPY_ALLOW_MOVE(ClGemmLowpMatrixMultiplyReshapedKernel);
50 /** Initialise the kernel's input and dst.
51 *
52 * @param[in] compile_context The compile context to be used.
53 * @param[in] src0 Source tensor containing the LHS reshaped matrix. Data type supported: QASYMM8/QASYMM8_SIGNED. The number of dimensions for the LHS matrix must be less or equal than 4.
54 * @param[in] src1 Source tensor containing the RHS reshaped matrix. Data type supported: same as @p src0. The number of dimensions for the RHS matrix must be less or equal than 3.
55 * @param[out] dst Destination tensor to store the result of matrix multiplication. Data type supported: S32
56 * @param[in] lhs_info LHS matrix information used for reshaping the src0 tensor. Only the following values are supported:
57 * lhs_info.m0: 2,3,4,5,6,7,8
58 * lhs_info.k0: 2,3,4,8,16
59 * lhs_info.transpose: false
60 * @param[in] rhs_info RHS matrix information used for reshaping the src1 tensor. Only the following values are supported:
61 * rhs_info.n0: 2,3,4,8,16
62 * rhs_info.k0: same as lhs_info.k0
63 * rhs_info.transpose: true
64 * @param[in] gemm_info GEMM information used to retrieve the original dimensions of the input matrices
65 *
66 * @note lhs_info.k0 must be equal to rhs_info.k0
67 */
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010068 void configure(const CLCompileContext &compile_context,
69 const ITensorInfo *src0,
70 const ITensorInfo *src1,
71 ITensorInfo *dst,
72 const GEMMLHSMatrixInfo &lhs_info,
73 const GEMMRHSMatrixInfo &rhs_info,
74 const GEMMReshapeInfo &gemm_info);
Georgios Pinitas4a578b92021-06-25 12:13:49 +010075 /** Static function to check if given info will lead to a valid configuration
76 *
77 * Similar to @ref ClGemmLowpMatrixMultiplyReshapedKernel::configure()
78 *
79 * @return a status
80 */
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010081 static Status validate(const ITensorInfo *src0,
82 const ITensorInfo *src1,
83 const ITensorInfo *dst,
84 const GEMMLHSMatrixInfo &lhs_info,
85 const GEMMRHSMatrixInfo &rhs_info,
86 const GEMMReshapeInfo &gemm_info);
Georgios Pinitas4a578b92021-06-25 12:13:49 +010087
88 // Inherited methods overridden:
89 void run_op(ITensorPack &tensors, const Window &window, cl::CommandQueue &queue) override;
90
91private:
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010092 bool _slide_matrix_b{true};
93 bool _reinterpret_output_as_3d{false};
94 unsigned int _k{1};
95 bool _use_dummy_work_items{false};
Georgios Pinitas4a578b92021-06-25 12:13:49 +010096};
97} // namespace kernels
98} // namespace opencl
99} // namespace arm_compute
Georgios Pinitas2eb5d162021-07-02 09:01:49 +0100100#endif /* ARM_COMPUTE_CL_GEMMLOWP_MATRIXMULTIPLY_RESHAPED_KERNEL_H */