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