_mm_cvtepi64_epi32
Classification
AVX-512, Convert, CPUID Test: AVX512F
Header File
immintrin.h
Instruction
VPMOVQD xmm, xmm
Synopsis
 _mm_cvtepi64_epi32(__m128i 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 1
	i := 64*j
	k := 32*j
	dst[k+31:k] := Truncate32(a[i+63:i])
ENDFOR
dst[MAX:64] := 0