_mm512_cvtpd_pslo
Classification
AVX-512, Convert, CPUID Test: AVX512F
Header File
Instruction
VCVTPD2PS zmm, zmm
Synopsis
_mm512_cvtpd_pslo(__m512d v2);
Description
Performs an element-by-element conversion of packed double-precision (64-bit) floating-point elements in "v2" to single-precision (32-bit) floating-point elements and stores them in "dst". The elements are stored in the lower half of the results vector, while the remaining upper half locations are set to 0.
Operation
FOR j := 0 to 7
i := j*64
k := j*32
dst[k+31:k] := Convert_FP64_To_FP32(v2[i+63:i])
ENDFOR
dst[MAX:512] := 0