blob: acae0e7565cae1b223dd5a7ac5d240ab7aa2081e [file] [log] [blame]
Gian Marco Iodice5a4fe192020-03-16 12:22:37 +00001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2020 Arm Limited.
Gian Marco Iodice5a4fe192020-03-16 12:22:37 +00003 *
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 */
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010024#include "src/runtime/CL/gemm/CLGEMMKernelSelectionValhall.h"
Gian Marco Iodice5a4fe192020-03-16 12:22:37 +000025
26#include "arm_compute/core/CL/CLHelpers.h"
27#include "arm_compute/core/CL/CLKernelLibrary.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010028#include "src/core/CL/gemm/CLGEMMHelpers.h"
Gian Marco Iodice5a4fe192020-03-16 12:22:37 +000029
30#include <map>
31#include <utility>
32
33namespace arm_compute
34{
35namespace cl_gemm
36{
37CLGEMMKernelSelectionValhall::CLGEMMKernelSelectionValhall(GPUTarget gpu)
38 : ICLGEMMKernelSelection(gpu)
39{
40}
41
42CLGEMMKernelType CLGEMMKernelSelectionValhall::select_kernel(const CLGEMMKernelSelectionParams &params)
43{
44 // _target could be used in the future to have a dedicated heuristic for each GPU IP
45 ARM_COMPUTE_UNUSED(_target);
46
Gian Marco Iodice026d0452020-08-28 13:52:12 +010047 using FunctionExecutorPtr = CLGEMMKernelType (CLGEMMKernelSelectionValhall::*)(unsigned int m, unsigned int n, unsigned int k, unsigned int b, bool is_rhs_constant);
Gian Marco Iodice5a4fe192020-03-16 12:22:37 +000048
49 // Configurations for Valhall architectures
50 static std::map<DataType, FunctionExecutorPtr> gemm_configs =
51 {
52 { DataType::F32, &CLGEMMKernelSelectionValhall::default_f32 },
53 { DataType::F16, &CLGEMMKernelSelectionValhall::default_f16 },
54 { DataType::QASYMM8, &CLGEMMKernelSelectionValhall::default_q8 },
55 { DataType::QASYMM8_SIGNED, &CLGEMMKernelSelectionValhall::default_q8 },
56 { DataType::QSYMM8, &CLGEMMKernelSelectionValhall::default_q8 },
57 { DataType::QSYMM8_PER_CHANNEL, &CLGEMMKernelSelectionValhall::default_q8 }
58 };
59
60 const DataType data_type = params.data_type;
61
62 if(gemm_configs.find(data_type) != gemm_configs.end())
63 {
Gian Marco Iodice026d0452020-08-28 13:52:12 +010064 return (this->*gemm_configs[data_type])(params.m, params.n, params.k, params.b, params.is_rhs_constant);
Gian Marco Iodice5a4fe192020-03-16 12:22:37 +000065 }
66
67 ARM_COMPUTE_ERROR("Not supported data type");
68}
69
Gian Marco Iodice026d0452020-08-28 13:52:12 +010070CLGEMMKernelType CLGEMMKernelSelectionValhall::default_f32(unsigned int m, unsigned int n, unsigned int k, unsigned int b, bool is_rhs_constant)
Gian Marco Iodice5a4fe192020-03-16 12:22:37 +000071{
Gian Marco Iodice026d0452020-08-28 13:52:12 +010072 ARM_COMPUTE_UNUSED(m, n, k, b);
Gian Marco Iodice5a4fe192020-03-16 12:22:37 +000073
74 return is_rhs_constant ? CLGEMMKernelType::RESHAPED_ONLY_RHS : CLGEMMKernelType::NATIVE_V1;
75}
76
Gian Marco Iodice026d0452020-08-28 13:52:12 +010077CLGEMMKernelType CLGEMMKernelSelectionValhall::default_f16(unsigned int m, unsigned int n, unsigned int k, unsigned int b, bool is_rhs_constant)
Gian Marco Iodice5a4fe192020-03-16 12:22:37 +000078{
Gian Marco Iodice026d0452020-08-28 13:52:12 +010079 ARM_COMPUTE_UNUSED(m, n, k, b);
Gian Marco Iodice5a4fe192020-03-16 12:22:37 +000080
81 return is_rhs_constant ? CLGEMMKernelType::RESHAPED_ONLY_RHS : CLGEMMKernelType::NATIVE_V1;
82}
83
Gian Marco Iodice026d0452020-08-28 13:52:12 +010084CLGEMMKernelType CLGEMMKernelSelectionValhall::default_q8(unsigned int m, unsigned int n, unsigned int k, unsigned int b, bool is_rhs_constant)
Gian Marco Iodice5a4fe192020-03-16 12:22:37 +000085{
Gian Marco Iodice026d0452020-08-28 13:52:12 +010086 ARM_COMPUTE_UNUSED(m, n, k, b);
Gian Marco Iodice5a4fe192020-03-16 12:22:37 +000087
88 if(is_rhs_constant)
89 {
Gian Marco Iodiceeb65f6d2020-04-15 11:42:15 +010090 return CLGEMMKernelType::RESHAPED_ONLY_RHS;
Gian Marco Iodice5a4fe192020-03-16 12:22:37 +000091 }
92 else
93 {
Gian Marco Iodiceeb65f6d2020-04-15 11:42:15 +010094 return CLGEMMKernelType::NATIVE;
Gian Marco Iodice5a4fe192020-03-16 12:22:37 +000095 }
96}
97} // namespace cl_gemm
98} // namespace arm_compute