_mm512_cvtepi32lo_pd
Classification
AVX-512, Convert, CPUID Test: AVX512F
Header File
immintrin.h
Instruction
VCVTDQ2PD zmm, zmm
Synopsis
 _mm512_cvtepi32lo_pd(__m512i v2);
Description
Performs element-by-element conversion of the lower half of packed 32-bit integer elements in "v2" to packed double-precision (64-bit) floating-point elements, storing the results in "dst".
Operation
FOR j := 0 to 7
	i := j*32
	l := j*64
	dst[l+63:l] := Convert_Int32_To_FP64(v2[i+31:i])
ENDFOR
dst[MAX:512] := 0