Compute Library
 23.08
ClGemm.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2016-2023 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 
31 
33 #include "src/gpu/cl/IClKernel.h"
34 #include "src/gpu/cl/IClOperator.h"
41 
42 #include <memory>
43 
44 namespace arm_compute
45 {
46 namespace opencl
47 {
48 /** Basic function to execute GEMM on OpenCL. This function calls the following OpenCL kernels:
49  *
50  * -# @ref kernels::ClGemmReshapeLhsMatrixKernel (only if the RESHAPED is selected by the heuristic model)
51  * -# @ref kernels::ClGemmReshapeRhsMatrixKernel (only if either the RESHAPED or RESHAPED_ONLY_RHS is selected by the select_gemm_kernel method())
52  * -# @ref kernels::ClGemmMatrixMultiplyNativeKernel (only if NATIVE is selected by the select_gemm_kernel method())
53  * -# @ref kernels::ClGemmMatrixMultiplyReshapedKernel (only if RESHAPED is selected by the select_gemm_kernel method())
54  * -# @ref kernels::ClGemmMatrixMultiplyReshapedOnlyRhsKernel (only if RESHAPED_ONLY_RHS is selected by the select_gemm_kernel method())
55  * -# @ref kernels::ClGemmMatrixMultiplyReshapedOnlyRhsMMULKernel (only if RESHAPED_ONLY_RHS_MMUL is selected by the select_gemm_kernel method())
56  */
57 class ClGemm : public IClOperator
58 {
59 public:
60  /** Constructor */
61  ClGemm();
62  /** Initialise the kernel's inputs and output
63  *
64  * Valid data layouts:
65  * - All
66  *
67  * Valid data type configurations:
68  * |src0 |src1 |src2 |dst |
69  * |:------------|:-----------|:---------|:--------------|
70  * |F32 |F32 |F32 |F32 |
71  * |F16 |F16 |F16 |F16 |
72  *
73  * @note GEMM: General Matrix Multiply - [alpha * A * B + beta * C].
74  *
75  * @note All tensors must have the same data type.
76  *
77  * @note Whilst the first input tensor can be a vector, the second input tensor must be at least a matrix
78  *
79  * @note Batched GEMM only allows RHS tensor's rank to be <= 3
80  * @note Batched GEMM only supports broadcasting cases where RHS rank < LHS rank but not the other way around
81  *
82  * @param[in] compile_context The compile context to be used.
83  * @param[in] a First input tensor (Matrix or Vector A). Data types supported: F16/F32
84  * @param[in] b Second input tensor (Matrix B). Data type supported: same as @p a.
85  * @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.
86  * @param[out] output Output tensor. Data type supported: same as @p a
87  * @param[in] alpha Weight of the matrix product
88  * @param[in] beta Weight of matrix C
89  * @param[in] gemm_info (Optional) Specifies if the matrix A and/or matrix B have been reshaped and
90  * if the reshape of matrix B should happen only for the first run. GEMMInfo also contains information about the reshaping
91  * in case matrix A and matrix B have been already transformed.
92  */
93  void configure(const CLCompileContext &compile_context, ITensorInfo *a, ITensorInfo *b, ITensorInfo *c, ITensorInfo *output, float alpha, float beta, const GEMMInfo &gemm_info);
94  /** Static function to check if given info will lead to a valid configuration
95  *
96  * Similar to ClGemm::configure()
97  *
98  * @return a status
99  */
100  static Status validate(const ITensorInfo *a, const ITensorInfo *b, const ITensorInfo *c, const ITensorInfo *output, float alpha, float beta, const GEMMInfo &gemm_info);
101 
102  // Inherited methods overridden:
103  void run(ITensorPack &tensors) override;
104  void prepare(ITensorPack &constants) override;
106 
107 private:
108  void configure_native(const CLCompileContext &compile_context, ITensorInfo *a, ITensorInfo *b, ITensorInfo *c, ITensorInfo *output, float alpha, float beta, const GEMMInfo &gemm_info);
109  void configure_reshaped(const CLCompileContext &compile_context, ITensorInfo *a, ITensorInfo *b, ITensorInfo *c, ITensorInfo *output, float alpha, float beta, const GEMMInfo &gemm_info);
110  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);
111  void configure_reshaped_only_rhs_mmul(const CLCompileContext &compile_context, ITensorInfo *a, ITensorInfo *b, ITensorInfo *c, ITensorInfo *output, float alpha, float beta, const GEMMInfo &gemm_info);
112 
113  static Status validate_native(const ITensorInfo *a, const ITensorInfo *b, const ITensorInfo *c, const ITensorInfo *output, float alpha, float beta, const GEMMInfo &gemm_info);
114  static Status validate_reshaped(const ITensorInfo *a, const ITensorInfo *b, const ITensorInfo *c, const ITensorInfo *output, float alpha, float beta, const GEMMInfo &gemm_info);
115  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);
116  static Status validate_reshaped_only_rhs_mmul(const ITensorInfo *a, const ITensorInfo *b, const ITensorInfo *c, const ITensorInfo *output, float alpha, float beta, const GEMMInfo &gemm_info);
117 
118 private:
119  enum AuxTensorIdx
120  {
121  LhsReshape = 0,
122  RhsReshape,
123  Count
124  };
125 
126 private:
127  std::unique_ptr<kernels::ClGemmReshapeLhsMatrixKernel> _reshape_lhs_kernel;
128  std::unique_ptr<kernels::ClGemmReshapeRhsMatrixKernel> _reshape_rhs_kernel;
129  std::unique_ptr<kernels::ClGemmMatrixMultiplyNativeKernel> _mm_native_kernel;
130  std::unique_ptr<kernels::ClGemmMatrixMultiplyReshapedKernel> _mm_reshaped_kernel;
131  std::unique_ptr<kernels::ClGemmMatrixMultiplyReshapedOnlyRhsKernel> _mm_reshaped_only_rhs_kernel;
132  std::unique_ptr<kernels::ClGemmMatrixMultiplyReshapedOnlyRhsMMULKernel> _mm_reshaped_only_rhs_mmul_kernel;
133  TensorInfo _tmp_a;
134  TensorInfo _tmp_b;
135  bool _reshape_b_only_on_first_run;
136  CLGEMMKernelType _gemm_kernel_type;
137  bool _is_prepared;
139 };
140 } // namespace opencl
141 } // namespace arm_compute
142 #endif /* ARM_COMPUTE_CLGEMM_H */
ClGemmMatrixMultiplyReshapedKernel.h
arm_compute::experimental::MemoryRequirements
std::vector< MemoryInfo > MemoryRequirements
Definition: Types.h:134
arm_compute::opencl::ClGemm::workspace
experimental::MemoryRequirements workspace() const override
Return the memory requirements required by the workspace.
Definition: ClGemm.cpp:796
arm_compute::opencl::ClGemm::configure
void configure(const CLCompileContext &compile_context, ITensorInfo *a, ITensorInfo *b, ITensorInfo *c, ITensorInfo *output, float alpha, float beta, const GEMMInfo &gemm_info)
Initialise the kernel's inputs and output.
Definition: ClGemm.cpp:557
TensorInfo.h
arm_compute::GEMMInfo
GEMM information class.
Definition: GEMMInfo.h:64
arm_compute::CLGEMMKernelType
CLGEMMKernelType
OpenCL GEMM kernel types.
Definition: CLTypes.h:31
ClGemmMatrixMultiplyReshapedOnlyRhsKernel.h
IClOperator.h
arm_compute::ITensorPack
Tensor packing service.
Definition: ITensorPack.h:39
arm_compute::experimental::ICLOperator
Basic interface for functions which have a single async CL kernel.
Definition: ICLOperator.h:41
arm_compute::test::validation::gemm_info
gemm_info
Definition: GEMMMatrixMultiplyReshaped.cpp:862
arm_compute::CLCompileContext
CLCompileContext class.
Definition: CLCompileContext.h:204
ClCompileContext.h
arm_compute::Status
Status class.
Definition: Error.h:52
IClKernel.h
CLTypes.h
ClGemmReshapeRhsMatrixKernel.h
arm_compute::opencl::ClGemm
Basic function to execute GEMM on OpenCL.
Definition: ClGemm.h:57
ClGemmReshapeLhsMatrixKernel.h
arm_compute::TensorInfo
Store the tensor's metadata.
Definition: TensorInfo.h:42
arm_compute::test::validation::b
SimpleTensor< float > b
Definition: DFT.cpp:157
arm_compute
Copyright (c) 2017-2023 Arm Limited.
Definition: introduction.dox:24
arm_compute::opencl::ClGemm::prepare
void prepare(ITensorPack &constants) override
Prepare the function for executing.
Definition: ClGemm.cpp:774
CLTensor.h
arm_compute::opencl::ClGemm::run
void run(ITensorPack &tensors) override
Run the kernels contained in the function.
Definition: ClGemm.cpp:666
arm_compute::ITensorInfo
Store the tensor's metadata.
Definition: ITensorInfo.h:43
ClGemmMatrixMultiplyNativeKernel.h
GEMMInfo.h
arm_compute::opencl::ClGemm::validate
static Status validate(const ITensorInfo *a, const ITensorInfo *b, const ITensorInfo *c, const ITensorInfo *output, float alpha, float beta, const GEMMInfo &gemm_info)
Static function to check if given info will lead to a valid configuration.
Definition: ClGemm.cpp:612
ClGemmMatrixMultiplyReshapedOnlyRhsMMULKernel.h
arm_compute::opencl::ClGemm::ClGemm
ClGemm()
Constructor.
Definition: ClGemm.cpp:188