_mm_cvtepu32_pd
Classification
AVX-512, Convert, CPUID Test: AVX512F
Header File
Instruction
VCVTUDQ2PD xmm, xmm
Synopsis
_mm_cvtepu32_pd(__m128i a);
Description
Convert packed unsigned 32-bit integers in "a" to packed double-precision (64-bit) floating-point elements, and store the results in "dst".
Operation
FOR j := 0 to 1
i := j*64
l := j*32
dst[i+63:i] := Convert_Int64_To_FP64(a[l+31:l])
ENDFOR
dst[MAX:128] := 0