pub unsafe fn _mm512_mask_cvtpd_pslo(
    src: __m512,
    k: __mmask8,
    v2: __m512d
) -> __m512
🔬This is a nightly-only experimental API. (stdsimd #48556)
Available on (x86 or x86-64) and target feature avx512f and x86-64 only.
Expand 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 using writemask k (elements are copied from src when the corresponding mask bit is not set). The elements are stored in the lower half of the results vector, while the remaining upper half locations are set to 0.

Intel’s documentation