We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d52102a commit 0870927Copy full SHA for 0870927
1 file changed
internal/simd/simd_avx512.h
@@ -13,7 +13,7 @@
13
#define _mm512_movemask_epi32(a) \
14
int(_mm512_cmpneq_epi32_mask(_mm512_setzero_si512(), _mm512_and_si512(_mm512_set1_epi32(0x80000000U), a)))
15
#define _mm512_movemask_epi8(a) \
16
- int(_mm512_cmpneq_epi8_mask(_mm512_setzero_si512(), _mm512_and_si512(a, _mm512_set1_epi8(0x80))))
+ int(_mm512_cmpneq_epi8_mask(_mm512_setzero_si512(), _mm512_and_si512(a, _mm512_set1_epi8((char)0x80))))
17
18
// https://adms-conf.org/2020-camera-ready/ADMS20_05.pdf
19
#define _mm512_slli_si512(x, k) _mm512_alignr_epi32(x, _mm512_setzero_si512(), 16 - k)
0 commit comments