_mm512_cvtepi64_epi32
Classification
AVX-512, Convert, CPUID Test: AVX512F
Header File
Instruction
VPMOVQD ymm, zmm
Synopsis
_mm512_cvtepi64_epi32(__m512i a);
Description
Convert packed 64-bit integers in "a" to packed 32-bit integers with truncation, and store the results in "dst".
Operation
FOR j := 0 to 7
i := 64*j
k := 32*j
dst[k+31:k] := Truncate32(a[i+63:i])
ENDFOR
dst[MAX:256] := 0