From 24ebb3684b302873ffaa3ff5c4357cd64ed3b8c4 Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Fri, 6 Sep 2024 19:42:32 +0200 Subject: Fix architecture detection --- src/arch/arch.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/arch/arch.h') diff --git a/src/arch/arch.h b/src/arch/arch.h index d5e0218..e5de0cf 100644 --- a/src/arch/arch.h +++ b/src/arch/arch.h @@ -1,4 +1,4 @@ -#if defined(CUBE_AVX2) +#if defined(AVX2) #include @@ -9,7 +9,7 @@ typedef __m256i cube_t; #include "avx2.h" #endif -#elif defined(CUBE_NEON) +#elif defined(NEON) #include #include -- cgit v1.3