From 3872285d8cd6fe7d32b8191a8a1cd7d5de9f133f Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Thu, 19 Feb 2026 20:03:20 -0600 Subject: [PATCH] Fix incorrectly enabling SSSE3 on all x64 Windows platforms --- nanors/deps/obl/autoshim.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nanors/deps/obl/autoshim.h b/nanors/deps/obl/autoshim.h index 297dc7d..b19459d 100644 --- a/nanors/deps/obl/autoshim.h +++ b/nanors/deps/obl/autoshim.h @@ -4,7 +4,7 @@ #if defined(__AVX2__) #define OBLAS_AVX2 #else -#if defined(__SSSE3__) || (defined(_MSC_VER) && defined(_M_X64) && !defined(_M_ARM64)) +#if defined(__SSSE3__) #define OBLAS_SSE3 #endif #endif