blob: 203f68c253c7a8fdf115006921d8c7302321872e [file] [log] [blame]
Gian Marco Iodice352c07d2023-05-03 12:21:38 +01001/*
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 */
24#ifndef SRC_RUNTIME_HEURISTICS_MATMUL_NATIVE_ICLMATMULNATIVEKERNELCONFIG
25#define SRC_RUNTIME_HEURISTICS_MATMUL_NATIVE_ICLMATMULNATIVEKERNELCONFIG
26
27#include "arm_compute/core/GPUTarget.h"
28#include "arm_compute/core/KernelDescriptors.h"
Matthew Benthamf1aeab92023-05-30 13:35:34 +000029#include "arm_compute/core/MatMulInfo.h"
Gian Marco Iodice352c07d2023-05-03 12:21:38 +010030#include "arm_compute/core/Types.h"
31#include "src/core/common/Macros.h"
32
33namespace arm_compute
34{
35namespace cl_matmul
36{
37/** Basic container for the OpenCL MatMul Native configuration functions */
38template <class T>
39class ClMatMulNativeConfigArray
40{
41public:
42 /** Alias for F32 index */
43 static constexpr size_t DT_F32 = 0;
44 /** Alias for F16 index */
45 static constexpr size_t DT_F16 = 1;
46 /** Alias for Int8 index */
47 static constexpr size_t DT_INT8 = 2;
48
49 /** Constructor
50 *
51 * @param[in] func_f32 Function to call for matmul native F32
52 * @param[in] func_f16 Function to call for matmul native F16
53 * @param[in] func_int8 Function to call for matmul native Int8 (QASYMM8, QASYMM8_SIGNED, QSYMM8_PER_CHANNEL)
54 *
55 */
56 ClMatMulNativeConfigArray(T func_f32, T func_f16, T func_int8)
57 : _configs{ func_f32, func_f16, func_int8 }
58 {
59 }
60
61 /** Method to return the matmul native configuration function based on data type
62 *
63 * @param[in] data_type Input data type
64 *
65 * @return the valid function otherwise it returns nullptr if the data type is not valid
66 */
67 T get_function(DataType data_type)
68 {
69 switch(data_type)
70 {
71 case DataType::F32:
72 return _configs.at(DT_F32);
73 case DataType::F16:
74 return _configs.at(DT_F16);
75 case DataType::QASYMM8:
76 case DataType::QASYMM8_SIGNED:
77 case DataType::QSYMM8_PER_CHANNEL:
78 return _configs.at(DT_INT8);
79 default:
80 return nullptr;
81 }
82 }
83
84private:
85 std::array<T, 3> _configs;
86};
87
88/** Basic interface for the matmul native kernel configuration */
89class IClMatMulNativeKernelConfig
90{
91public:
92 /** Constructor
93 *
94 * @param[in] arch GPU target
95 */
96 IClMatMulNativeKernelConfig(GPUTarget arch)
97 : _target(arch)
98 {
99 }
100 ARM_COMPUTE_DISALLOW_COPY_ALLOW_MOVE(IClMatMulNativeKernelConfig);
101 /** Virtual destructor */
102 virtual ~IClMatMulNativeKernelConfig() = default;
103 /** This method returns the @ref MatMulKernelInfo for the given inputs
104 *
105 * @param[in] lhs LHS tensor
106 * @param[in] rhs RHS tensor
107 * @param[in] info MatMul info
108 */
109 virtual MatMulKernelInfo configure(const ITensorInfo *lhs, const ITensorInfo *rhs, const MatMulInfo &info) = 0;
110
111protected:
112 GPUTarget _target;
113};
114} // namespace opencl
115} // namespace arm_compute
116#endif /* SRC_RUNTIME_HEURISTICS_MATMUL_NATIVE_ICLMATMULNATIVEKERNELCONFIG */