Use the SIMDe 128-bit path for all non-x86 systems

SIMDe includes support for AltiVec, LSX, NEON, and more. It also includes fallbacks that are optimized for compiler autovectorization for other architectures (like RISC-V RVV)

Since there's no runtime dispatching for these, they will be selected depending on which instructions are enabled by the toolchain at compile-time.
This commit is contained in:
Cameron Gutman
2026-02-19 19:29:11 -06:00
parent 5551d29ba2
commit a063522db4
2 changed files with 6 additions and 31 deletions
-4
View File
@@ -6,10 +6,6 @@
#else
#if defined(__SSSE3__) || (defined(_MSC_VER) && defined(_M_X64) && !defined(_M_ARM64))
#define OBLAS_SSE3
#else
#if defined(__aarch64__) || (defined(_MSC_VER) && defined(_M_ARM64))
#define OBLAS_NEON
#endif
#endif
#endif
#endif