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

pub unsafe fn _mm512_maskz_shufflehi_epi16<const IMM8: i32>(
    k: __mmask32,
    a: __m512i
) -> __m512i
🔬 This is a nightly-only experimental API. (stdsimd #48556)
This is supported on x86 and target feature avx512bw only.
Expand description

使用 imm8 中的控件在 a 的 128 位通道的高 64 位中对 16 位整数进行打乱。将结果存储在 dst 的 128 位通道的高 64 位中,将 128 位通道的低 64 位从 a 复制到 dst,使用 zeromask k (当相应的掩码位未设置时,元素被清零)。

Intel’s documentation