From 515d174f1be9b1af2c3e388fced46ed6a7970688 Mon Sep 17 00:00:00 2001 From: Michael Kuron <mkuron@icp.uni-stuttgart.de> Date: Mon, 22 Feb 2021 16:52:07 +0100 Subject: [PATCH] Fix an ifdef --- pystencils/include/philox_rand.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pystencils/include/philox_rand.h b/pystencils/include/philox_rand.h index 046c59fea..295071773 100644 --- a/pystencils/include/philox_rand.h +++ b/pystencils/include/philox_rand.h @@ -1,6 +1,6 @@ #include <cstdint> -#if defined(__SSE4_1__) || defined(_MSC_VER) +#if defined(__SSE2__) || defined(_MSC_VER) #include <emmintrin.h> // SSE2 #endif #ifdef __AVX2__ -- GitLab