1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-04-04 19:25:56 +01:00

Fix for AVX+FMA3 compilation

This commit is contained in:
Guido Cossu 2016-10-10 15:26:17 +01:00
parent b56c9ffa52
commit 611b5d74ba

View File

@ -442,7 +442,7 @@ namespace Optimization {
#define _mm256_alignr_epi64(ret,a,b,n) ret=(__m256d) _mm256_alignr_epi8((__m256i)a,(__m256i)b,(n*8)%16)
#endif
#if defined (AVX1)
#if defined (AVX1) || defined (AVXFMA)
#define _mm256_alignr_epi32(ret,a,b,n) { \
__m128 aa, bb; \