blob: 2af9a4a9a690f420be98d68e0aebee9a77bbdbf3 [file] [log] [blame]
Ramy Elgammalf26ea2f2023-03-24 11:42:03 +00001/*
2 * Copyright (c) 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 */
Jakub Sujake9b3ee22023-04-17 12:08:48 +010024#ifndef ACL_ARM_COMPUTE_RUNTIME_CL_FUNCTIONS_CLMATMUL
25#define ACL_ARM_COMPUTE_RUNTIME_CL_FUNCTIONS_CLMATMUL
Ramy Elgammalf26ea2f2023-03-24 11:42:03 +000026
27#include "arm_compute/runtime/IFunction.h"
28#include <memory>
Jakub Sujake9b3ee22023-04-17 12:08:48 +010029
Ramy Elgammalf26ea2f2023-03-24 11:42:03 +000030namespace arm_compute
31{
32// Forward declarations for used types instead of including their header, that could minimize compile time
33class CLCompileContext;
34class ICLTensor;
35class ITensorInfo;
36class MatMulInfo;
37class Status;
38
Mohammed Suhail Munshia1b1e412023-03-23 22:21:31 +000039/** Settings for MatMul OpenCL implementation */
40class GpuMatMulSettings
41{
42public:
43 /* Placeholder for operator parity between CPU/GPU */
44};
45
Ramy Elgammalf26ea2f2023-03-24 11:42:03 +000046/** Basic function to execute MatMul (Matrix Multiplication) on OpenCL */
47class CLMatMul : public IFunction
48{
49public:
50 /** Default constructor.*/
51 CLMatMul();
52 /** Default destructor */
53 ~CLMatMul();
54 /** Prevent instances of this class from being copied (As this class contains pointers) */
55 CLMatMul(const CLMatMul &) = delete;
56 /** Default move constructor */
57 CLMatMul(CLMatMul &&);
58 /** Prevent instances of this class from being copied (As this class contains pointers) */
59 CLMatMul &operator=(const CLMatMul &) = delete;
60 /** Default move assignment operator */
61 CLMatMul &operator=(CLMatMul &&);
62 /** Initialise the kernel's inputs and output
63 *
64 * Valid data layouts:
65 * - All
66 *
67 * Valid data type configurations:
Jakub Sujake9b3ee22023-04-17 12:08:48 +010068 * |lhs |rhs |dst |
69 * |:--------------|:--------------|:--------------|
70 * |F32 |F32 |F32 |
71 * |F16 |F16 |F16 |
72 * |QASYMM8_SIGNED |QASYMM8_SIGNED |QASYMM8_SIGNED |
73 * |QASYMM8 |QASYMM8 |QASYMM8 |
Ramy Elgammalf26ea2f2023-03-24 11:42:03 +000074 *
75 * @note BatchMatMul: Batched Matrix Multiply - [A * B], Multiplies all slices (slice is an element of a batch) of Tensors A and B
76 * and stores the result in the dst tensor of the same batch size.
77 * Batch here is number of slices from A and B multiplied at a time, do not confuse with the batch dimension 'N' of NHWC/NCHW
78 * For NHWC for example: the batch is the higher dimensions H * N, and in general it is H * all higher dimensions.
79 * @note All tensors must have the same data type.
80 *
81 * @param[in] compile_context The compile context to be used.
Jakub Sujake9b3ee22023-04-17 12:08:48 +010082 * @param[in] lhs Left-hand side tensor info containing the input activations as Matrix A. Data types supported: F16/F32/QASYMM8_SIGNED/QASYMM8.
83 * @param[in] rhs Right-hand side tensor info containing the input weights as Matrix B. Data types supported: same as @p lhs.
84 * @param[out] dst Output tensor to store the result of the batched matrix multiplication. Data types supported: same as @p lhs.
85 * @param[in] matmul_info Contains MatMul operation information described in @ref MatMulInfo.
Mohammed Suhail Munshia1b1e412023-03-23 22:21:31 +000086 * @param[in] settings Class containing flags for function level settings
Ramy Elgammalf26ea2f2023-03-24 11:42:03 +000087 */
Jakub Sujake9b3ee22023-04-17 12:08:48 +010088 void configure(const CLCompileContext &compile_context, ICLTensor *rhs, ICLTensor *lhs, ICLTensor *dst, const MatMulInfo &matmul_info, const GpuMatMulSettings &settings = GpuMatMulSettings{});
Ramy Elgammalf26ea2f2023-03-24 11:42:03 +000089 /** Initialise the kernel's inputs and output
90 *
91 * Similar to @ref CLMatMul::configure()
92 */
Jakub Sujake9b3ee22023-04-17 12:08:48 +010093 void configure(ICLTensor *lhs, ICLTensor *rhs, ICLTensor *dst, const MatMulInfo &matmul_info, const GpuMatMulSettings &settings = GpuMatMulSettings{});
Ramy Elgammalf26ea2f2023-03-24 11:42:03 +000094 /** Static function to check if given info will lead to a valid configuration of @ref CLMatMul.
95 *
96 * Similar to @ref CLMatMul::configure()
97 *
98 * @return a status
99 */
100 static Status validate(const ITensorInfo *lhs, const ITensorInfo *rhs, const ITensorInfo *output, const MatMulInfo &matmul_info);
101 // Inherited methods overridden:
102 void run() override;
103
104private:
105 struct Impl;
106 std::unique_ptr<Impl> _impl;
107};
108} // namespace arm_compute
109
Jakub Sujake9b3ee22023-04-17 12:08:48 +0100110#endif /* ACL_ARM_COMPUTE_RUNTIME_CL_FUNCTIONS_CLMATMUL */