Merge pull request #3190 from martin-frbg/issue3128-2
Replace spurious AVX512 requirement in the Haswell drot microkernel with an AVX2/FMA3 guard
This commit is contained in:
commit
adcfe7b789
|
@ -1,6 +1,4 @@
|
|||
/* need a new enough GCC for avx512 support */
|
||||
#if (( defined(__GNUC__) && __GNUC__ > 6 && defined(__AVX512CD__)) || (defined(__clang__) && __clang_major__ >= 9))
|
||||
|
||||
#if defined(HAVE_FMA3) && defined(HAVE_AVX2)
|
||||
#define HAVE_DROT_KERNEL 1
|
||||
|
||||
#include <immintrin.h>
|
||||
|
|
Loading…
Reference in New Issue