define __AVX2__ to ensure the haswell code compiled with avx2
This commit is contained in:
parent
cb3c190a3a
commit
448152cdd8
|
@ -1,4 +1,4 @@
|
|||
#if (( defined(__GNUC__) && __GNUC__ > 6 && defined(__AVX2__)) || (defined(__clang__) && __clang_major__ >= 6))
|
||||
#if (( defined(__GNUC__) && __GNUC__ > 6 ) || (defined(__clang__) && __clang_major__ >= 6)) && defined(__AVX2__)
|
||||
|
||||
#define HAVE_KERNEL_16 1
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#if (( defined(__GNUC__) && __GNUC__ > 6 && defined(__AVX2__)) || (defined(__clang__) && __clang_major__ >= 6))
|
||||
#if (( defined(__GNUC__) && __GNUC__ > 6 ) || (defined(__clang__) && __clang_major__ >= 6)) && defined(__AVX2__)
|
||||
|
||||
#define HAVE_KERNEL_32 1
|
||||
|
||||
|
|
Loading…
Reference in New Issue