Function core::arch::x86::_mm512_mask_cvtpd_pslo[][src]

pub unsafe fn _mm512_mask_cvtpd_pslo(
    src: __m512,
    k: __mmask8,
    v2: __m512d
) -> __m512
🔬 This is a nightly-only experimental API. (stdsimd #48556)
This is supported on x86 and target feature avx512f only.
Expand description

将 v2 中的包装的双精度 (64-bit) 浮点元素转换为单精度 (32-bit) 浮点元素,将其逐个元素转换,并使用 writemask k 将它们存储在 dst 中 (如果没有相应的 mask 位,则从 src 复制元素放)。元素存储在结果 vector 的下半部分中,而其余的上半部分位置设置为 0。

Intel’s documentation