forked from OSchip/llvm-project
parent
a5a25036bb
commit
8c333153e0
|
@ -343,7 +343,7 @@ _mm256_dp_ps(__m256 a, __m256 b, const int c)
|
|||
#define _mm256_shuffle_ps(a, b, mask) \
|
||||
(__builtin_shufflevector((__v8sf)(a), (__v8sf)(b), \
|
||||
(mask) & 0x3, ((mask) & 0xc) >> 2, \
|
||||
(((mask) & 0x30) >> 4) + 8, (((mask) & 0xc0) >> 6) + 8 \
|
||||
(((mask) & 0x30) >> 4) + 8, (((mask) & 0xc0) >> 6) + 8, \
|
||||
(mask) & 0x3 + 4, (((mask) & 0xc) >> 2) + 4, \
|
||||
(((mask) & 0x30) >> 4) + 12, (((mask) & 0xc0) >> 6) + 12))
|
||||
|
||||
|
|
Loading…
Reference in New Issue