_mm512_cvtepu32lo_pd
Classification
AVX-512, Convert, CPUID Test: AVX512F
Header File
Instruction
VCVTUDQ2PD zmm, zmm
Synopsis
_mm512_cvtepu32lo_pd(__m512i v2);
Description
Performs element-by-element conversion of the lower half of packed 32-bit unsigned 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
n := j*64
dst[n+63:n] := Convert_Int32_To_FP64(v2[i+31:i])
ENDFOR
dst[MAX:512] := 0