blob: e9e335f500b49a9b85e8ca24833d56d66a67fdfa [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"
Joseph Dobson6f8b17d2020-02-11 19:32:11 +000030#include "gemm_interleaved_pretransposed_2d.hpp"
David Mansellce8f6052018-05-17 18:51:26 +010031#include "gemv_batched.hpp"
Pablo Telloeb82fd22018-02-23 13:43:50 +000032#include "gemv_pretransposed.hpp"
33
Anthony Barbier5f707732018-07-03 16:22:02 +010034#include "kernels/a32_sgemm_8x6.hpp"
Georgios Pinitasc0b6f762020-11-02 01:37:17 +000035#include "kernels/a64_gemv_fp32_mla_32.hpp"
36#include "kernels/a64_hybrid_fp32_mla_6x16.hpp"
37#include "kernels/a64_hybrid_fp32_mla_8x4.hpp"
38#include "kernels/a64_sgemm_8x12.hpp"
39#include "kernels/a64_smallK_hybrid_fp32_mla_6x4.hpp"
40#include "kernels/a64_smallK_hybrid_fp32_mla_8x4.hpp"
Pablo Telloeb82fd22018-02-23 13:43:50 +000041
Georgios Pinitasc0b6f762020-11-02 01:37:17 +000042#include "kernels/sve_gemv_fp32_mla_8VL.hpp"
43#include "kernels/sve_hybrid_fp32_mla_6x4VL.hpp"
44#include "kernels/sve_hybrid_fp32_mla_8x1VL.hpp"
45#include "kernels/sve_interleaved_fp32_mla_8x3VL.hpp"
46#include "kernels/sve_interleaved_fp32_mmla_8x3VL.hpp"
47#include "kernels/sve_smallK_hybrid_fp32_mla_8x1VL.hpp"
Georgios Pinitas421405b2018-10-26 19:05:32 +010048
Anthony Barbier5f707732018-07-03 16:22:02 +010049namespace arm_gemm {
50
Georgios Pinitas7cd26d42019-01-09 18:35:17 +000051static const GemmImplementation<float, float> gemm_fp32_methods[] =
52{
Georgios Pinitasc0b6f762020-11-02 01:37:17 +000053// GEMV cases - starting with 'gemv_batched' wrapper to turn batched GEMV into GEMM.
Georgios Pinitas7cd26d42019-01-09 18:35:17 +000054{
55 GemmMethod::GEMV_BATCHED,
56 "gemv_batched",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +000057 [](const GemmArgs &args) { return args._Msize==1 && args._nbatches>1 && !args._indirect_input; },
Georgios Pinitas7cd26d42019-01-09 18:35:17 +000058 nullptr,
Georgios Pinitas48b3ef82019-10-14 19:03:09 +010059 [](const GemmArgs &args) { return new GemvBatched<float, float>(args); }
Georgios Pinitas7cd26d42019-01-09 18:35:17 +000060},
61#ifdef __aarch64__
Georgios Pinitasc0b6f762020-11-02 01:37:17 +000062#ifdef __ARM_FEATURE_SVE
Georgios Pinitas5aa1a0b2020-07-02 20:02:20 +010063{
64 GemmMethod::GEMM_HYBRID,
Georgios Pinitasc0b6f762020-11-02 01:37:17 +000065 "sve_gemv_fp32_mla_8VL",
66 [](const GemmArgs &args) { return args._Msize==1 && args._nbatches==1 && !args._indirect_input; },
67 nullptr,
68 [](const GemmArgs &args) { return new GemvPretransposed<cls_sve_gemv_fp32_mla_8VL, float, float>(args); }
Georgios Pinitas5aa1a0b2020-07-02 20:02:20 +010069},
Georgios Pinitasc0b6f762020-11-02 01:37:17 +000070#endif
71{
72 GemmMethod::GEMM_HYBRID,
73 "a64_gemv_fp32_mla_32",
74 [](const GemmArgs &args) { return args._Msize==1 && args._nbatches==1 && !args._indirect_input; },
75 nullptr,
76 [](const GemmArgs &args) { return new GemvPretransposed<cls_a64_gemv_fp32_mla_32, float, float>(args); }
77},
78
79// MMLA next due to higher throughput (SVE only)
80#if defined(__ARM_FEATURE_SVE) && defined(MMLA_FP32)
Georgios Pinitas5aa1a0b2020-07-02 20:02:20 +010081{
82 GemmMethod::GEMM_INTERLEAVED,
Georgios Pinitasc0b6f762020-11-02 01:37:17 +000083 "sve_interleaved_fp32_mmla_8x3VL",
Georgios Pinitas5aa1a0b2020-07-02 20:02:20 +010084 [](const GemmArgs &args) { return (args._Ksize>4); },
85 nullptr,
Georgios Pinitasc0b6f762020-11-02 01:37:17 +000086 [](const GemmArgs &args) { return new GemmInterleaved<cls_sve_interleaved_fp32_mmla_8x3VL, float, float>(args); }
Georgios Pinitas5aa1a0b2020-07-02 20:02:20 +010087},
88#endif // __ARM_FEATURE_SVE && MMLA_FP32
89
Georgios Pinitas7cd26d42019-01-09 18:35:17 +000090#ifdef __ARM_FEATURE_SVE
Georgios Pinitasc0b6f762020-11-02 01:37:17 +000091// SVE smallk / hybrid methods
Georgios Pinitasc7b183a2020-03-06 18:12:09 +000092{
93 GemmMethod::GEMM_HYBRID,
Georgios Pinitasc0b6f762020-11-02 01:37:17 +000094 "sve_smallK_hybrid_fp32_mla_8x1VL",
95 [](const GemmArgs &args) { return args._Ksize <= 24 && !args._indirect_input; },
Georgios Pinitasc7b183a2020-03-06 18:12:09 +000096 nullptr,
Georgios Pinitasc0b6f762020-11-02 01:37:17 +000097 [](const GemmArgs &args) { return new GemmHybrid<cls_sve_smallK_hybrid_fp32_mla_8x1VL, float, float>(args); }
Georgios Pinitasc7b183a2020-03-06 18:12:09 +000098},
Georgios Pinitas7cd26d42019-01-09 18:35:17 +000099{
100 GemmMethod::GEMM_HYBRID,
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000101 "sve_hybrid_fp32_mla_8x1VL",
102 nullptr,
103 [](const GemmArgs &args) { return (args._Nsize < 12); },
104 [](const GemmArgs &args) { return new GemmHybridIndirect<cls_sve_hybrid_fp32_mla_8x1VL, float, float>(args); }
105},
106{
107 GemmMethod::GEMM_HYBRID,
108 "sve_hybrid_fp32_mla_6x4VL",
109 nullptr,
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100110 [](const GemmArgs &args) { return ((args._Ksize <= 256) && (args._Nsize <= 256)) || ((args._nmulti > 1) && ((args._Msize / args._maxthreads) < 8)); },
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000111 [](const GemmArgs &args) { return new GemmHybridIndirect<cls_sve_hybrid_fp32_mla_6x4VL, float, float>(args); }
Georgios Pinitas7cd26d42019-01-09 18:35:17 +0000112},
Georgios Pinitas7cd26d42019-01-09 18:35:17 +0000113#endif // __ARM_FEATURE_SVE
Pablo Telloeb82fd22018-02-23 13:43:50 +0000114
Georgios Pinitas0cc50ed2020-07-06 19:10:38 +0100115// NEON hybrid methods
Georgios Pinitas7cd26d42019-01-09 18:35:17 +0000116{
117 GemmMethod::GEMM_HYBRID,
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000118 "a64_smallK_hybrid_fp32_mla_8x4",
119 [](const GemmArgs &args) { return args._Ksize <= 8 && (args._Nsize % 4)==0 && !args._indirect_input; },
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100120 nullptr,
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000121 [](const GemmArgs &args) { return new GemmHybrid<cls_a64_smallK_hybrid_fp32_mla_8x4, float, float>(args); }
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100122},
123{
124 GemmMethod::GEMM_HYBRID,
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000125 "a64_smallK_hybrid_fp32_mla_6x4",
126 [](const GemmArgs &args) { return (args._Ksize > 8 && args._Ksize <= 16) && (args._Nsize % 4)==0 && !args._indirect_input; },
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100127 nullptr,
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000128 [](const GemmArgs &args) { return new GemmHybrid<cls_a64_smallK_hybrid_fp32_mla_6x4, float, float>(args); }
Georgios Pinitas7cd26d42019-01-09 18:35:17 +0000129},
130{
Georgios Pinitas14613832019-03-01 19:07:11 +0000131 GemmMethod::GEMM_HYBRID,
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000132 "a64_hybrid_fp32_mla_8x4",
133 nullptr,
Michalis Spyrou71ac9032019-11-14 14:31:44 +0000134 [](const GemmArgs &args) { return (args._Nsize < 12); },
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000135 [](const GemmArgs &args) { return new GemmHybridIndirect<cls_a64_hybrid_fp32_mla_8x4, float, float>(args); }
Michalis Spyrou71ac9032019-11-14 14:31:44 +0000136},
David Mansell318c9f42020-07-08 13:28:45 +0100137GemmImplementation<float, float>::with_estimate(
Michalis Spyrou71ac9032019-11-14 14:31:44 +0000138 GemmMethod::GEMM_HYBRID,
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000139 "a64_hybrid_fp32_mla_6x16",
140 nullptr,
141 [](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)); },
142 [](const GemmArgs &args) { return new GemmHybridIndirect<cls_a64_hybrid_fp32_mla_6x16, float, float>(args); }
David Mansell318c9f42020-07-08 13:28:45 +0100143),
Georgios Pinitas7cd26d42019-01-09 18:35:17 +0000144#ifdef __ARM_FEATURE_SVE
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100145{
Georgios Pinitas7cd26d42019-01-09 18:35:17 +0000146 GemmMethod::GEMM_INTERLEAVED,
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000147 "sve_interleaved_fp32_mla_8x3VL",
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100148 [](const GemmArgs &args) { return (args._Ksize>4); },
Georgios Pinitas7cd26d42019-01-09 18:35:17 +0000149 nullptr,
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000150 [](const GemmArgs &args) { return new GemmInterleaved<cls_sve_interleaved_fp32_mla_8x3VL, float, float>(args); }
Georgios Pinitas7cd26d42019-01-09 18:35:17 +0000151},
152#endif // __ARM_FEATURE_SVE
David Mansell318c9f42020-07-08 13:28:45 +0100153GemmImplementation<float, float>::with_estimate(
Georgios Pinitas7cd26d42019-01-09 18:35:17 +0000154 GemmMethod::GEMM_INTERLEAVED,
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000155 "a64_sgemm_8x12",
Gian Marco Iodice463f9762020-05-19 14:12:27 +0100156 nullptr,
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000157 [](const GemmArgs &args) { return GemmInterleaved<cls_a64_sgemm_8x12, float, float>::estimate_cycles(args, cls_a64_sgemm_8x12::get_performance_parameters(args._ci)); },
158 [](const GemmArgs &args) { return new GemmInterleaved<cls_a64_sgemm_8x12, float, float>(args); }
David Mansell318c9f42020-07-08 13:28:45 +0100159),
David Manselle39334c2018-07-06 17:53:35 +0100160#endif // __aarch64__
161
Georgios Pinitas7cd26d42019-01-09 18:35:17 +0000162#ifdef __arm__
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100163{
Georgios Pinitas7cd26d42019-01-09 18:35:17 +0000164 GemmMethod::GEMM_INTERLEAVED,
165 "sgemm_8x6",
166 nullptr,
167 nullptr,
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100168 [](const GemmArgs &args) { return new GemmInterleaved<sgemm_8x6, float, float>(args); }
Georgios Pinitas7cd26d42019-01-09 18:35:17 +0000169},
170#endif // __arm__
171{
172 GemmMethod::DEFAULT,
173 "",
174 nullptr,
175 nullptr,
176 nullptr
177}
David Manselle39334c2018-07-06 17:53:35 +0100178};
179
180/* Templated function to return this list. */
181template<>
Georgios Pinitas7cd26d42019-01-09 18:35:17 +0000182const GemmImplementation<float, float> *gemm_implementation_list<float, float>() {
183 return gemm_fp32_methods;
Pablo Telloeb82fd22018-02-23 13:43:50 +0000184}
185
David Manselle39334c2018-07-06 17:53:35 +0100186/* Explicitly instantiate the external functions for these types. */
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100187template UniqueGemmCommon<float, float> gemm<float, float, Nothing>(const GemmArgs &args, const Nothing &);
188template KernelDescription get_gemm_method<float, float, Nothing>(const GemmArgs &args, const Nothing &);
189template std::vector<KernelDescription> get_compatible_kernels<float, float, Nothing> (const GemmArgs &args, const Nothing &);
Pablo Telloeb82fd22018-02-23 13:43:50 +0000190
Georgios Pinitas14613832019-03-01 19:07:11 +0000191} // namespace arm_gemm