pub unsafe fn _mm_maskz_shufflelo_epi16(
    k: __mmask8,
    a: __m128i,
    const IMM8: i32
) -> __m128i
🔬This is a nightly-only experimental API. (stdsimd #48556)
Available on (x86 or x86-64) and target feature avx512bw,avx512vl and x86-64 only.
Expand description

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

Intel’s documentation