blob: 44700ad4f470ef19304c4ffaa922473c73ad83a5 [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 */
24#include "arm_compute/runtime/CL/gemm/CLGEMMKernelSelectionMidgard.h"
25
26#include "arm_compute/core/CL/CLHelpers.h"
27#include "arm_compute/core/CL/CLKernelLibrary.h"
28#include "arm_compute/core/CL/gemm/CLGEMMHelpers.h"
29#include "arm_compute/core/GPUTarget.h"
30
31#include <map>
32#include <utility>
33
34namespace arm_compute
35{
36namespace cl_gemm
37{
38CLGEMMKernelSelectionMidgard::CLGEMMKernelSelectionMidgard(GPUTarget gpu)
39 : ICLGEMMKernelSelection(gpu)
40{
41}
42
43CLGEMMKernelType CLGEMMKernelSelectionMidgard::select_kernel(const CLGEMMKernelSelectionParams &params)
44{
45 // _target could be used in the future to have a dedicated heuristic for each GPU IP
46 ARM_COMPUTE_UNUSED(_target);
47
48 using FunctionExecutorPtr = CLGEMMKernelType (CLGEMMKernelSelectionMidgard::*)(unsigned int m, unsigned int n, unsigned int k, bool is_rhs_constant);
49
50 // Configurations for Midgard architectures
51 static std::map<DataType, FunctionExecutorPtr> gemm_configs =
52 {
53 { DataType::F32, &CLGEMMKernelSelectionMidgard::default_f32 },
54 { DataType::F16, &CLGEMMKernelSelectionMidgard::default_f16 },
55 { DataType::QASYMM8, &CLGEMMKernelSelectionMidgard::default_q8 },
56 { DataType::QASYMM8_SIGNED, &CLGEMMKernelSelectionMidgard::default_q8 },
57 { DataType::QSYMM8, &CLGEMMKernelSelectionMidgard::default_q8 },
58 { DataType::QSYMM8_PER_CHANNEL, &CLGEMMKernelSelectionMidgard::default_q8 }
59 };
60
61 const DataType data_type = params.data_type;
62
63 if(gemm_configs.find(data_type) != gemm_configs.end())
64 {
65 return (this->*gemm_configs[data_type])(params.m, params.n, params.k, params.is_rhs_constant);
66 }
67
68 ARM_COMPUTE_ERROR("Not supported data type");
69}
70
71CLGEMMKernelType CLGEMMKernelSelectionMidgard::default_f32(unsigned int m, unsigned int n, unsigned int k, bool is_rhs_constant)
72{
73 ARM_COMPUTE_UNUSED(n, k);
74
75 // We reshape the matrices only if we do not have the vector-by-matrix case and we reshape the matrix B only once
76 return ((m != 1) && is_rhs_constant) ? CLGEMMKernelType::RESHAPED_V1 : CLGEMMKernelType::NATIVE_V1;
77}
78
79CLGEMMKernelType CLGEMMKernelSelectionMidgard::default_f16(unsigned int m, unsigned int n, unsigned int k, bool is_rhs_constant)
80{
81 ARM_COMPUTE_UNUSED(n, k);
82
83 // We reshape the matrices only if we do not have the vector-by-matrix case and we reshape the matrix B only once
84 return ((m != 1) && is_rhs_constant) ? CLGEMMKernelType::RESHAPED_V1 : CLGEMMKernelType::NATIVE_V1;
85}
86
87CLGEMMKernelType CLGEMMKernelSelectionMidgard::default_q8(unsigned int m, unsigned int n, unsigned int k, bool is_rhs_constant)
88{
Gian Marco Iodiceeb65f6d2020-04-15 11:42:15 +010089 ARM_COMPUTE_UNUSED(m, n, k, is_rhs_constant);
Gian Marco Iodice5a4fe192020-03-16 12:22:37 +000090
Gian Marco Iodiceeb65f6d2020-04-15 11:42:15 +010091 return CLGEMMKernelType::NATIVE;
Gian Marco Iodice5a4fe192020-03-16 12:22:37 +000092}
93} // namespace cl_gemm
94} // namespace arm_compute