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

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

比较 a 和 b 中包装的无符号 64 位整数,并使用零掩码 k (在未设置相应的掩码位时将元素清零) 将包装的最大值存储在 dst 中。

Intel’s documentation