blob: e084e53fe40dd4cc6922f2c2bddebc55383b2962 [file] [log] [blame]
Georgios Pinitas856f66e2021-04-22 21:13:21 +01001/*
2 * Copyright (c) 2016-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_GEMM_H
25#define ARM_COMPUTE_CL_GEMM_H
26
27#include "arm_compute/core/TensorInfo.h"
28#include "arm_compute/runtime/CL/CLTensor.h"
29#include "arm_compute/runtime/CL/CLTypes.h"
Georgios Pinitasf4e84fb2021-07-08 15:36:07 +010030
Georgios Pinitas7891a732021-08-20 21:39:25 +010031#include "src/gpu/cl/ClCompileContext.h"
32#include "src/gpu/cl/IClKernel.h"
33#include "src/gpu/cl/IClOperator.h"
Georgios Pinitas7891a732021-08-20 21:39:25 +010034#include "src/gpu/cl/kernels/ClGemmMatrixMultiplyNativeKernel.h"
35#include "src/gpu/cl/kernels/ClGemmMatrixMultiplyReshapedKernel.h"
36#include "src/gpu/cl/kernels/ClGemmMatrixMultiplyReshapedOnlyRhsKernel.h"
37#include "src/gpu/cl/kernels/ClGemmReshapeLhsMatrixKernel.h"
38#include "src/gpu/cl/kernels/ClGemmReshapeRhsMatrixKernel.h"
Georgios Pinitas856f66e2021-04-22 21:13:21 +010039
40#include <memory>
41
42namespace arm_compute
43{
44namespace opencl
45{
46/** Basic function to execute GEMM on OpenCL. This function calls the following OpenCL kernels:
47 *
Gian Marco Iodicec9cecc02021-10-15 10:23:24 +010048 * -# @ref kernels::ClGemmReshapeLhsMatrixKernel (only if the RESHAPED is selected by the heuristic model)
49 * -# @ref kernels::ClGemmReshapeRhsMatrixKernel (only if either the RESHAPED or RESHAPED_ONLY_RHS is selected by the select_gemm_kernel method())
50 * -# @ref kernels::ClGemmMatrixMultiplyNativeKernel (only if NATIVE is selected by the select_gemm_kernel method())
51 * -# @ref kernels::ClGemmMatrixMultiplyReshapedKernel (only if RESHAPED is selected by the select_gemm_kernel method())
Georgios Pinitas856f66e2021-04-22 21:13:21 +010052 * -# @ref kernels::ClGemmMatrixMultiplyReshapedOnlyRhsKernel (only if RESHAPED_ONLY_RHS is selected by the select_gemm_kernel method())
53 */
54class ClGemm : public IClOperator
55{
56public:
57 /** Constructor */
58 ClGemm();
59 /** Initialise the kernel's inputs and output
60 *
61 * Valid data layouts:
62 * - All
63 *
64 * Valid data type configurations:
65 * |src0 |src1 |src2 |dst |
66 * |:------------|:-----------|:---------|:--------------|
67 * |F32 |F32 |F32 |F32 |
68 * |F16 |F16 |F16 |F16 |
69 *
70 * @note GEMM: General Matrix Multiply - [alpha * A * B + beta * C].
71 *
72 * @note All tensors must have the same data type.
73 *
74 * @note Whilst the first input tensor can be a vector, the second input tensor must be at least a matrix
75 *
76 * @param[in] compile_context The compile context to be used.
77 * @param[in] a First input tensor (Matrix or Vector A). Data types supported: F16/F32
78 * @param[in] b Second input tensor (Matrix B). Data type supported: same as @p a.
79 * @param[in] c Third input tensor (Matrix C). It can be a nullptr if just the multiplication between @p a and @p b is needed. Data type supported: same as @p a.
80 * @param[out] output Output tensor. Data type supported: same as @p a
81 * @param[in] alpha Weight of the matrix product
82 * @param[in] beta Weight of matrix C
83 * @param[in] gemm_info (Optional) Specifies if the matrix A and/or matrix B have been reshaped and
SiCongLi579ca842021-10-18 09:38:33 +010084 * if the reshape of matrix B should happen only for the first run. GEMMInfo also contains information about the reshaping
85 * in case matrix A and matrix B have been already transformed.
Georgios Pinitas856f66e2021-04-22 21:13:21 +010086 */
87 void configure(const CLCompileContext &compile_context, ITensorInfo *a, ITensorInfo *b, ITensorInfo *c, ITensorInfo *output, float alpha, float beta, const GEMMInfo &gemm_info);
88 /** Static function to check if given info will lead to a valid configuration
89 *
90 * Similar to ClGemm::configure()
91 *
92 * @return a status
93 */
94 static Status validate(const ITensorInfo *a, const ITensorInfo *b, const ITensorInfo *c, const ITensorInfo *output, float alpha, float beta, const GEMMInfo &gemm_info);
95
96 // Inherited methods overridden:
97 void run(ITensorPack &tensors) override;
98 void prepare(ITensorPack &constants) override;
99 experimental::MemoryRequirements workspace() const override;
100
101private:
Gian Marco Iodicec9cecc02021-10-15 10:23:24 +0100102 void configure_native(const CLCompileContext &compile_context, ITensorInfo *a, ITensorInfo *b, ITensorInfo *c, ITensorInfo *output, float alpha, float beta, const GEMMInfo &gemm_info);
103 void configure_reshaped(const CLCompileContext &compile_context, ITensorInfo *a, ITensorInfo *b, ITensorInfo *c, ITensorInfo *output, float alpha, float beta, const GEMMInfo &gemm_info);
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100104 void configure_reshaped_only_rhs(const CLCompileContext &compile_context, ITensorInfo *a, ITensorInfo *b, ITensorInfo *c, ITensorInfo *output, float alpha, float beta, const GEMMInfo &gemm_info);
105
Gian Marco Iodicec9cecc02021-10-15 10:23:24 +0100106 static Status validate_native(const ITensorInfo *a, const ITensorInfo *b, const ITensorInfo *c, const ITensorInfo *output, float alpha, float beta, const GEMMInfo &gemm_info);
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100107 static Status validate_reshaped(const ITensorInfo *a, const ITensorInfo *b, const ITensorInfo *c, const ITensorInfo *output, float alpha, float beta, const GEMMInfo &gemm_info);
108 static Status validate_reshaped_only_rhs(const ITensorInfo *a, const ITensorInfo *b, const ITensorInfo *c, const ITensorInfo *output, float alpha, float beta, const GEMMInfo &gemm_info);
109
110private:
111 enum AuxTensorIdx
112 {
113 LhsReshape = 0,
114 RhsReshape,
115 Count
116 };
117
118private:
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100119 std::unique_ptr<kernels::ClGemmReshapeLhsMatrixKernel> _reshape_lhs_kernel;
120 std::unique_ptr<kernels::ClGemmReshapeRhsMatrixKernel> _reshape_rhs_kernel;
Gian Marco Iodicec9cecc02021-10-15 10:23:24 +0100121 std::unique_ptr<kernels::ClGemmMatrixMultiplyNativeKernel> _mm_native_kernel;
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100122 std::unique_ptr<kernels::ClGemmMatrixMultiplyReshapedKernel> _mm_reshaped_kernel;
123 std::unique_ptr<kernels::ClGemmMatrixMultiplyReshapedOnlyRhsKernel> _mm_reshaped_only_rhs_kernel;
124 std::unique_ptr<kernels::ClGemmMatrixMultiplyReshapedOnlyRhsKernel> _mm_reshaped_only_rhs_fallback_kernel;
125 TensorInfo _tmp_a;
126 TensorInfo _tmp_b;
127 bool _reshape_b_only_on_first_run;
128 CLGEMMKernelType _gemm_kernel_type;
Manuel Bottinid87aded2021-07-16 10:23:31 +0100129 bool _is_prepared;
130 experimental::MemoryRequirements _aux_mem{};
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100131};
132} // namespace opencl
133} // namespace arm_compute
134#endif /* ARM_COMPUTE_CLGEMM_H */