_mm256_cvtsepi64_epi32
Classification
AVX-512, Convert, CPUID Test: AVX512F
Header File
immintrin.h
Instruction
VPMOVSQD xmm, ymm
Synopsis
 _mm256_cvtsepi64_epi32(__m256i 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 3
	i := 64*j
	k := 32*j
	dst[k+31:k] := Saturate32(a[i+63:i])
ENDFOR
dst[MAX:128] := 0