blob: 5c894c01c8057d4e4f0330e4626ba583be0634a6 [file] [log] [blame]
Pablo Telloeb82fd22018-02-23 13:43:50 +00001/*
Georgios Pinitas5aa1a0b2020-07-02 20:02:20 +01002 * Copyright (c) 2017-2020 Arm Limited.
Pablo Telloeb82fd22018-02-23 13:43:50 +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_gemm.hpp"
25#include "gemm_common.hpp"
Georgios Pinitas7cd26d42019-01-09 18:35:17 +000026#include "gemm_hybrid.hpp"
Georgios Pinitasc0b6f762020-11-02 01:37:17 +000027#include "gemm_hybrid_indirect.hpp"
David Manselle39334c2018-07-06 17:53:35 +010028#include "gemm_implementation.hpp"
Pablo Telloeb82fd22018-02-23 13:43:50 +000029#include "gemm_interleaved.hpp"
David Mansellce8f6052018-05-17 18:51:26 +010030#include "gemv_batched.hpp"
Pablo Telloeb82fd22018-02-23 13:43:50 +000031#include "gemv_pretransposed.hpp"
32
Anthony Barbier5f707732018-07-03 16:22:02 +010033#include "kernels/a32_sgemm_8x6.hpp"
Georgios Pinitasc0b6f762020-11-02 01:37:17 +000034#include "kernels/a64_gemv_fp32_mla_32.hpp"
35#include "kernels/a64_hybrid_fp32_mla_6x16.hpp"
36#include "kernels/a64_hybrid_fp32_mla_8x4.hpp"
37#include "kernels/a64_sgemm_8x12.hpp"
38#include "kernels/a64_smallK_hybrid_fp32_mla_6x4.hpp"
39#include "kernels/a64_smallK_hybrid_fp32_mla_8x4.hpp"
Pablo Telloeb82fd22018-02-23 13:43:50 +000040
Georgios Pinitasc0b6f762020-11-02 01:37:17 +000041#include "kernels/sve_gemv_fp32_mla_8VL.hpp"
42#include "kernels/sve_hybrid_fp32_mla_6x4VL.hpp"
43#include "kernels/sve_hybrid_fp32_mla_8x1VL.hpp"
44#include "kernels/sve_interleaved_fp32_mla_8x3VL.hpp"
45#include "kernels/sve_interleaved_fp32_mmla_8x3VL.hpp"
46#include "kernels/sve_smallK_hybrid_fp32_mla_8x1VL.hpp"
Georgios Pinitas421405b2018-10-26 19:05:32 +010047
Anthony Barbier5f707732018-07-03 16:22:02 +010048namespace arm_gemm {
49
Georgios Pinitas7cd26d42019-01-09 18:35:17 +000050static const GemmImplementation<float, float> gemm_fp32_methods[] =
51{
Georgios Pinitasc0b6f762020-11-02 01:37:17 +000052// GEMV cases - starting with 'gemv_batched' wrapper to turn batched GEMV into GEMM.
Georgios Pinitas7cd26d42019-01-09 18:35:17 +000053{
54 GemmMethod::GEMV_BATCHED,
55 "gemv_batched",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +000056 [](const GemmArgs &args) { return args._Msize==1 && args._nbatches>1 && !args._indirect_input; },
Georgios Pinitas7cd26d42019-01-09 18:35:17 +000057 nullptr,
Georgios Pinitas48b3ef82019-10-14 19:03:09 +010058 [](const GemmArgs &args) { return new GemvBatched<float, float>(args); }
Georgios Pinitas7cd26d42019-01-09 18:35:17 +000059},
60#ifdef __aarch64__
Georgios Pinitasc0b6f762020-11-02 01:37:17 +000061#ifdef __ARM_FEATURE_SVE
Georgios Pinitas5aa1a0b2020-07-02 20:02:20 +010062{
63 GemmMethod::GEMM_HYBRID,
Georgios Pinitasc0b6f762020-11-02 01:37:17 +000064 "sve_gemv_fp32_mla_8VL",
Pablo Marquez Telloa50f1932021-03-08 17:27:05 +000065 [](const GemmArgs &args) { return args._ci->has_sve() && args._Msize==1 && args._nbatches==1 && !args._indirect_input; },
66 [](const GemmArgs &args) { return args._ci->get_cpu_model() != CPUModel::KLEIN; },
Georgios Pinitasc0b6f762020-11-02 01:37:17 +000067 [](const GemmArgs &args) { return new GemvPretransposed<cls_sve_gemv_fp32_mla_8VL, float, float>(args); }
Georgios Pinitas5aa1a0b2020-07-02 20:02:20 +010068},
Georgios Pinitasc0b6f762020-11-02 01:37:17 +000069#endif
70{
71 GemmMethod::GEMM_HYBRID,
72 "a64_gemv_fp32_mla_32",
73 [](const GemmArgs &args) { return args._Msize==1 && args._nbatches==1 && !args._indirect_input; },
74 nullptr,
75 [](const GemmArgs &args) { return new GemvPretransposed<cls_a64_gemv_fp32_mla_32, float, float>(args); }
76},
77
78// MMLA next due to higher throughput (SVE only)
79#if defined(__ARM_FEATURE_SVE) && defined(MMLA_FP32)
Georgios Pinitas5aa1a0b2020-07-02 20:02:20 +010080{
81 GemmMethod::GEMM_INTERLEAVED,
Georgios Pinitasc0b6f762020-11-02 01:37:17 +000082 "sve_interleaved_fp32_mmla_8x3VL",
Pablo Marquez Telloa50f1932021-03-08 17:27:05 +000083 [](const GemmArgs &args) { return args._ci->has_sve() && (args._Ksize>4); },
84 [](const GemmArgs &args) { return args._ci->get_cpu_model() != CPUModel::KLEIN; },
Georgios Pinitasc0b6f762020-11-02 01:37:17 +000085 [](const GemmArgs &args) { return new GemmInterleaved<cls_sve_interleaved_fp32_mmla_8x3VL, float, float>(args); }
Georgios Pinitas5aa1a0b2020-07-02 20:02:20 +010086},
87#endif // __ARM_FEATURE_SVE && MMLA_FP32
88
Georgios Pinitas7cd26d42019-01-09 18:35:17 +000089#ifdef __ARM_FEATURE_SVE
Georgios Pinitasc0b6f762020-11-02 01:37:17 +000090// SVE smallk / hybrid methods
Georgios Pinitasc7b183a2020-03-06 18:12:09 +000091{
92 GemmMethod::GEMM_HYBRID,
Georgios Pinitasc0b6f762020-11-02 01:37:17 +000093 "sve_smallK_hybrid_fp32_mla_8x1VL",
Pablo Marquez Telloa50f1932021-03-08 17:27:05 +000094 [](const GemmArgs &args) { return args._ci->has_sve() && args._Ksize <= 24 && !args._indirect_input; },
95 [](const GemmArgs &args) { return args._ci->get_cpu_model() != CPUModel::KLEIN; },
Georgios Pinitasc0b6f762020-11-02 01:37:17 +000096 [](const GemmArgs &args) { return new GemmHybrid<cls_sve_smallK_hybrid_fp32_mla_8x1VL, float, float>(args); }
Georgios Pinitasc7b183a2020-03-06 18:12:09 +000097},
Georgios Pinitas7cd26d42019-01-09 18:35:17 +000098{
99 GemmMethod::GEMM_HYBRID,
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000100 "sve_hybrid_fp32_mla_8x1VL",
Pablo Marquez Telloa50f1932021-03-08 17:27:05 +0000101 [](const GemmArgs &args) { return args._ci->has_sve(); },
102 [](const GemmArgs &args) { return args._ci->get_cpu_model() != CPUModel::KLEIN && (args._Nsize < 12); },
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000103 [](const GemmArgs &args) { return new GemmHybridIndirect<cls_sve_hybrid_fp32_mla_8x1VL, float, float>(args); }
104},
105{
106 GemmMethod::GEMM_HYBRID,
107 "sve_hybrid_fp32_mla_6x4VL",
Pablo Marquez Telloa50f1932021-03-08 17:27:05 +0000108 [](const GemmArgs &args) { return args._ci->has_sve(); },
109 [](const GemmArgs &args) { return args._ci->get_cpu_model() != CPUModel::KLEIN && (((args._Ksize <= 256) && (args._Nsize <= 256)) || ((args._nmulti > 1) && ((args._Msize / args._maxthreads) < 8))); },
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000110 [](const GemmArgs &args) { return new GemmHybridIndirect<cls_sve_hybrid_fp32_mla_6x4VL, float, float>(args); }
Georgios Pinitas7cd26d42019-01-09 18:35:17 +0000111},
Georgios Pinitas7cd26d42019-01-09 18:35:17 +0000112#endif // __ARM_FEATURE_SVE
Pablo Telloeb82fd22018-02-23 13:43:50 +0000113
Sheri Zhangac6499a2021-02-10 15:32:38 +0000114// Neon hybrid methods
Georgios Pinitas7cd26d42019-01-09 18:35:17 +0000115{
116 GemmMethod::GEMM_HYBRID,
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000117 "a64_smallK_hybrid_fp32_mla_8x4",
118 [](const GemmArgs &args) { return args._Ksize <= 8 && (args._Nsize % 4)==0 && !args._indirect_input; },
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100119 nullptr,
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000120 [](const GemmArgs &args) { return new GemmHybrid<cls_a64_smallK_hybrid_fp32_mla_8x4, float, float>(args); }
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100121},
122{
123 GemmMethod::GEMM_HYBRID,
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000124 "a64_smallK_hybrid_fp32_mla_6x4",
125 [](const GemmArgs &args) { return (args._Ksize > 8 && args._Ksize <= 16) && (args._Nsize % 4)==0 && !args._indirect_input; },
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100126 nullptr,
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000127 [](const GemmArgs &args) { return new GemmHybrid<cls_a64_smallK_hybrid_fp32_mla_6x4, float, float>(args); }
Georgios Pinitas7cd26d42019-01-09 18:35:17 +0000128},
129{
Georgios Pinitas14613832019-03-01 19:07:11 +0000130 GemmMethod::GEMM_HYBRID,
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000131 "a64_hybrid_fp32_mla_8x4",
132 nullptr,
Michalis Spyrou71ac9032019-11-14 14:31:44 +0000133 [](const GemmArgs &args) { return (args._Nsize < 12); },
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000134 [](const GemmArgs &args) { return new GemmHybridIndirect<cls_a64_hybrid_fp32_mla_8x4, float, float>(args); }
Michalis Spyrou71ac9032019-11-14 14:31:44 +0000135},
David Mansell318c9f42020-07-08 13:28:45 +0100136GemmImplementation<float, float>::with_estimate(
Michalis Spyrou71ac9032019-11-14 14:31:44 +0000137 GemmMethod::GEMM_HYBRID,
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000138 "a64_hybrid_fp32_mla_6x16",
139 nullptr,
140 [](const GemmArgs &args) { return GemmHybridIndirect<cls_a64_hybrid_fp32_mla_6x16, float, float>::estimate_cycles(args, cls_a64_hybrid_fp32_mla_6x16::get_performance_parameters(args._ci)); },
141 [](const GemmArgs &args) { return new GemmHybridIndirect<cls_a64_hybrid_fp32_mla_6x16, float, float>(args); }
David Mansell318c9f42020-07-08 13:28:45 +0100142),
Georgios Pinitas7cd26d42019-01-09 18:35:17 +0000143#ifdef __ARM_FEATURE_SVE
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100144{
Georgios Pinitas7cd26d42019-01-09 18:35:17 +0000145 GemmMethod::GEMM_INTERLEAVED,
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000146 "sve_interleaved_fp32_mla_8x3VL",
Pablo Marquez Telloa50f1932021-03-08 17:27:05 +0000147 [](const GemmArgs &args) { return args._ci->has_sve() && (args._Ksize>4); },
148 [](const GemmArgs &args) { return args._ci->get_cpu_model() != CPUModel::KLEIN; },
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000149 [](const GemmArgs &args) { return new GemmInterleaved<cls_sve_interleaved_fp32_mla_8x3VL, float, float>(args); }
Georgios Pinitas7cd26d42019-01-09 18:35:17 +0000150},
151#endif // __ARM_FEATURE_SVE
David Mansell318c9f42020-07-08 13:28:45 +0100152GemmImplementation<float, float>::with_estimate(
Georgios Pinitas7cd26d42019-01-09 18:35:17 +0000153 GemmMethod::GEMM_INTERLEAVED,
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000154 "a64_sgemm_8x12",
Gian Marco Iodice463f9762020-05-19 14:12:27 +0100155 nullptr,
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000156 [](const GemmArgs &args) { return GemmInterleaved<cls_a64_sgemm_8x12, float, float>::estimate_cycles(args, cls_a64_sgemm_8x12::get_performance_parameters(args._ci)); },
157 [](const GemmArgs &args) { return new GemmInterleaved<cls_a64_sgemm_8x12, float, float>(args); }
David Mansell318c9f42020-07-08 13:28:45 +0100158),
David Manselle39334c2018-07-06 17:53:35 +0100159#endif // __aarch64__
160
Georgios Pinitas7cd26d42019-01-09 18:35:17 +0000161#ifdef __arm__
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100162{
Georgios Pinitas7cd26d42019-01-09 18:35:17 +0000163 GemmMethod::GEMM_INTERLEAVED,
164 "sgemm_8x6",
165 nullptr,
166 nullptr,
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100167 [](const GemmArgs &args) { return new GemmInterleaved<sgemm_8x6, float, float>(args); }
Georgios Pinitas7cd26d42019-01-09 18:35:17 +0000168},
169#endif // __arm__
170{
171 GemmMethod::DEFAULT,
172 "",
173 nullptr,
174 nullptr,
175 nullptr
176}
David Manselle39334c2018-07-06 17:53:35 +0100177};
178
179/* Templated function to return this list. */
180template<>
Georgios Pinitas7cd26d42019-01-09 18:35:17 +0000181const GemmImplementation<float, float> *gemm_implementation_list<float, float>() {
182 return gemm_fp32_methods;
Pablo Telloeb82fd22018-02-23 13:43:50 +0000183}
184
David Manselle39334c2018-07-06 17:53:35 +0100185/* Explicitly instantiate the external functions for these types. */
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100186template UniqueGemmCommon<float, float> gemm<float, float, Nothing>(const GemmArgs &args, const Nothing &);
187template KernelDescription get_gemm_method<float, float, Nothing>(const GemmArgs &args, const Nothing &);
188template std::vector<KernelDescription> get_compatible_kernels<float, float, Nothing> (const GemmArgs &args, const Nothing &);
Pablo Telloeb82fd22018-02-23 13:43:50 +0000189
Georgios Pinitas14613832019-03-01 19:07:11 +0000190} // namespace arm_gemm