_mm512_cvtfxpnt_roundpd_epi32lo
Classification
KNC, Convert, CPUID Test: KNCNI
Header File
immintrin.h
Instruction
VCVTFXPNTPD2DQ zmm, m512, imm8
Synopsis
 _mm512_cvtfxpnt_roundpd_epi32lo(__m512d v2, int rounding);
Description
Performs an element-by-element conversion of elements in packed double-precision (64-bit) floating-point vector "v2" to 32-bit integer elements, storing them in the lower half of "dst". The elements in the upper half of "dst" are set to 0. [round_note]
Operation
FOR j := 0 to 7
	i := j*64
	k := j*32
	dst[k+31:k] := Convert_FP64_To_Int32(v2[i+63:i])
ENDFOR
dst[MAX:512] := 0