Bug Fix: correct the bug that won't define EIGEN_HAS_FP16_C

if the compiler isn't clang
This commit is contained in:
Gengxin Xie 2021-11-04 16:10:57 +08:00 committed by Rasmus Munk Larsen
parent 0d73440fb2
commit 5c642950a5

View File

@ -438,11 +438,11 @@
#include <arm_fp16.h> #include <arm_fp16.h>
#endif #endif
#if defined(__F16C__) && (!defined(EIGEN_GPUCC) && (!defined(EIGEN_COMP_CLANG) || EIGEN_COMP_CLANG>=380)) #if defined(__F16C__) && (!defined(EIGEN_GPUCC) && (!EIGEN_COMP_CLANG || EIGEN_COMP_CLANG>=380))
// We can use the optimized fp16 to float and float to fp16 conversion routines // We can use the optimized fp16 to float and float to fp16 conversion routines
#define EIGEN_HAS_FP16_C #define EIGEN_HAS_FP16_C
#if defined(EIGEN_COMP_CLANG) #if EIGEN_COMP_CLANG
// Workaround for clang: The FP16C intrinsics for clang are included by // Workaround for clang: The FP16C intrinsics for clang are included by
// immintrin.h, as opposed to emmintrin.h as suggested by Intel: // immintrin.h, as opposed to emmintrin.h as suggested by Intel:
// https://software.intel.com/sites/landingpage/IntrinsicsGuide/#othertechs=FP16C&expand=1711 // https://software.intel.com/sites/landingpage/IntrinsicsGuide/#othertechs=FP16C&expand=1711