blob: 3d9863266efc3bc3877d3cc040743c5fe434c4b6 [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_SRC_GPU_CL_OPERATORS_CLMATMUL
25#define ACL_ARM_COMPUTE_SRC_GPU_CL_OPERATORS_CLMATMUL
Ramy Elgammalf26ea2f2023-03-24 11:42:03 +000026
27#include "src/gpu/cl/IClOperator.h"
Jakub Sujak1ed6a142023-04-13 21:14:42 +010028#include "src/gpu/cl/kernels/ClMatMulNativeKernel.h"
Jakub Sujake9b3ee22023-04-17 12:08:48 +010029#include "src/gpu/cl/kernels/ClMatMulLowpNativeKernel.h"
30
Ramy Elgammalf26ea2f2023-03-24 11:42:03 +000031#include <memory>
32
33namespace arm_compute
34{
35namespace opencl
36{
37/** Basic operator to execute BatchMatMul on OpenCL. This operator calls the following OpenCL kernels:
38 *
Jakub Sujak1ed6a142023-04-13 21:14:42 +010039 * -# @ref kernels::ClMatMulNativeKernel
Ramy Elgammalf26ea2f2023-03-24 11:42:03 +000040 */
41class ClMatMul : public IClOperator
42{
43public:
44 /** Constructor */
45 ClMatMul();
Jakub Sujake9b3ee22023-04-17 12:08:48 +010046 /** Default destructor */
47 ~ClMatMul() = default;
Ramy Elgammalf26ea2f2023-03-24 11:42:03 +000048 /** Initialise the kernel's inputs and output
49 *
50 * Valid data layouts:
51 * - All
52 *
53 * Valid data type configurations:
Jakub Sujake9b3ee22023-04-17 12:08:48 +010054 * |lhs |rhs |dst |
55 * |:--------------|:--------------|:--------------|
56 * |F32 |F32 |F32 |
57 * |F16 |F16 |F16 |
58 * |QASYMM8_SIGNED |QASYMM8_SIGNED |QASYMM8_SIGNED |
59 * |QASYMM8 |QASYMM8 |QASYMM8 |
Ramy Elgammalf26ea2f2023-03-24 11:42:03 +000060 *
61 * @note BatchMatMul: Batched Matrix Multiply - [A * B], Multiplies all slices (slice is an element of a batch) of Tensors A and B
62 * and stores the result in the dst tensor of the same batch size.
63 * 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
64 * For NHWC for example: the batch is the higher dimensions H * N, and in general it is H * all higher dimensions.
65 * @note All tensors must have the same data type.
66 *
67 * @param[in] compile_context The compile context to be used.
Jakub Sujake9b3ee22023-04-17 12:08:48 +010068 * @param[in] lhs Left-hand side tensor info. Data types supported: F16/F32/QASYMM8_SIGNED/QASYMM8.
69 * @param[in] rhs Right-hand side tensor info. Data types supported: same as @p lhs.
70 * @param[out] dst Output tensor to store the result of the batched matrix multiplication. Data types supported: same as @p lhs.
71 * @param[in] matmul_info Contains MatMul operation information described in @ref MatMulInfo.
Ramy Elgammalf26ea2f2023-03-24 11:42:03 +000072 */
Jakub Sujake9b3ee22023-04-17 12:08:48 +010073 void configure(const CLCompileContext &compile_context, ITensorInfo *lhs, ITensorInfo *rhs, ITensorInfo *dst, const MatMulInfo &matmul_info);
Ramy Elgammalf26ea2f2023-03-24 11:42:03 +000074 /** Static function to check if given info will lead to a valid configuration
75 *
76 * Similar to @ref ClMatMul::configure()
77 *
78 * @return a status
79 */
Jakub Sujake9b3ee22023-04-17 12:08:48 +010080 static Status validate(const ITensorInfo *lhs, const ITensorInfo *rhs, const ITensorInfo *dst, const MatMulInfo &matmul_info);
Ramy Elgammalf26ea2f2023-03-24 11:42:03 +000081 // Inherited methods overridden:
82 void run(ITensorPack &tensors) override;
83
84private:
Jakub Sujake9b3ee22023-04-17 12:08:48 +010085 std::unique_ptr<kernels::ClMatMulNativeKernel> _matmul_native_kernel{nullptr};
86 std::unique_ptr<kernels::ClMatMulLowpNativeKernel> _matmul_lowp_native_kernel{nullptr};
87
88 bool _is_quantized{ false };
Ramy Elgammalf26ea2f2023-03-24 11:42:03 +000089};
90} // namespace opencl
91} // namespace arm_compute
Jakub Sujake9b3ee22023-04-17 12:08:48 +010092#endif /* ACL_ARM_COMPUTE_SRC_GPU_CL_OPERATORS_CLMATMUL */