commit 57956af525d0926a00581f1d9498ca5111990f0b
parent 7e088b363db629bc956e793a996549166b0f9146
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Wed, 2 Jun 2021 16:37:38 +0200
Fix the detection of the SIMD instruction sets
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt
@@ -64,7 +64,7 @@ else()
endif()
if(SSF_USE_SIMD_256 AND NOT RSIMD_AVX)
get_property(_docstring CACHE SSF_USE_SIMD_256 PROPERTY HELPSTRING)
- set(SSF_USE_SIMD_128 OFF CACHE BOOL ${_docstring} FORCE)
+ set(SSF_USE_SIMD_256 OFF CACHE BOOL ${_docstring} FORCE)
endif()
if(SSF_USE_SIMD_128)