1 | /*************************************************************************** |
---|---|
2 | * Copyright (c) Johan Mabille, Sylvain Corlay, Wolf Vollprecht and * |
3 | * Martin Renou * |
4 | * Copyright (c) QuantStack * |
5 | * Copyright (c) Serge Guelton * |
6 | * * |
7 | * Distributed under the terms of the BSD 3-Clause License. * |
8 | * * |
9 | * The full license is in the file LICENSE, distributed with this software. * |
10 | ****************************************************************************/ |
11 | |
12 | #ifndef XSIMD_ISA_HPP |
13 | #define XSIMD_ISA_HPP |
14 | |
15 | #include "../config/xsimd_arch.hpp" |
16 | |
17 | #include "./xsimd_generic_fwd.hpp" |
18 | |
19 | #if XSIMD_WITH_SSE2 |
20 | #include "./xsimd_sse2.hpp" |
21 | #endif |
22 | |
23 | #if XSIMD_WITH_SSE3 |
24 | #include "./xsimd_sse3.hpp" |
25 | #endif |
26 | |
27 | #if XSIMD_WITH_SSSE3 |
28 | #include "./xsimd_ssse3.hpp" |
29 | #endif |
30 | |
31 | #if XSIMD_WITH_SSE4_1 |
32 | #include "./xsimd_sse4_1.hpp" |
33 | #endif |
34 | |
35 | #if XSIMD_WITH_SSE4_2 |
36 | #include "./xsimd_sse4_2.hpp" |
37 | #endif |
38 | |
39 | #if XSIMD_WITH_FMA3_SSE |
40 | #include "./xsimd_fma3_sse.hpp" |
41 | #endif |
42 | |
43 | #if XSIMD_WITH_FMA4 |
44 | #include "./xsimd_fma4.hpp" |
45 | #endif |
46 | |
47 | #if XSIMD_WITH_AVX |
48 | #include "./xsimd_avx.hpp" |
49 | #endif |
50 | |
51 | #if XSIMD_WITH_FMA3_AVX |
52 | #include "./xsimd_fma3_avx.hpp" |
53 | #endif |
54 | |
55 | #if XSIMD_WITH_AVX2 |
56 | #include "./xsimd_avx2.hpp" |
57 | #endif |
58 | |
59 | #if XSIMD_WITH_FMA3_AVX2 |
60 | #include "./xsimd_fma3_avx2.hpp" |
61 | #endif |
62 | |
63 | #if XSIMD_WITH_AVX512F |
64 | #include "./xsimd_avx512f.hpp" |
65 | #endif |
66 | |
67 | #if XSIMD_WITH_AVX512BW |
68 | #include "./xsimd_avx512bw.hpp" |
69 | #endif |
70 | |
71 | #if XSIMD_WITH_NEON |
72 | #include "./xsimd_neon.hpp" |
73 | #endif |
74 | |
75 | #if XSIMD_WITH_NEON64 |
76 | #include "./xsimd_neon64.hpp" |
77 | #endif |
78 | |
79 | #if XSIMD_WITH_SVE |
80 | #include "./xsimd_sve.hpp" |
81 | #endif |
82 | |
83 | // Must come last to have access to all conversion specializations. |
84 | #include "./xsimd_generic.hpp" |
85 | |
86 | #endif |
87 |