pub unsafe fn _mm256_mask_subs_epi8(
    src: __m256i,
    k: __mmask32,
    a: __m256i,
    b: __m256i
) -> __m256i
🔬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

使用饱和度将 b 中的包装 8 位整数减去 b 中的包装 8 位有符号整数,并使用写掩码 k 将结果存储在 dst 中 (当未设置相应的掩码位时,将从 src 复制元素)。

Intel’s documentation