1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-06-14 13:57:07 +01:00

MPI back out of change that hangs

AVX2 for clang, gcc needs the -mfma flag.
This commit is contained in:
paboyle
2016-08-05 10:36:00 +01:00
parent b65e72e521
commit 32bc7a6ab8
6 changed files with 14 additions and 66 deletions

View File

@ -108,7 +108,7 @@ case ${ax_cv_cxx_compiler_vendor} in
SIMD_FLAGS='-mavx -mfma4';;
AVX2)
AC_DEFINE([AVX2],[1],[AVX2 intrinsics])
SIMD_FLAGS='-mavx2';;
SIMD_FLAGS='-mavx2 -mfma';;
AVX512|AVX512MIC|KNL)
AC_DEFINE([AVX512],[1],[AVX512 intrinsics])
SIMD_FLAGS='-mavx512f -mavx512pf -mavx512er -mavx512cd';;