Function core::arch::x86::_mm512_maskz_dbsad_epu8
source · pub unsafe fn _mm512_maskz_dbsad_epu8(
k: __mmask32,
a: __m512i,
b: __m512i,
const IMM8: i32
) -> __m512i
🔬This is a nightly-only experimental API. (
stdsimd
#48556)Available on (x86 or x86-64) and target feature
avx512bw
and x86 only.Expand description
计算 a 中与 b 中的无符号 8 位整数的四元组的绝对差之和 (SADs) 的总和,并使用零掩码 k 将 16 位结果存储在 dst 中 (当未设置相应的掩码位时,元素将被清零)。对于每个 64 位 lane,在四个 8 位四元组上执行四个 SAD。前两个 SAD 使用 a 中 lane 的低 8 位四元组,而后两个 SAD 使用 a 中 lane 的较高 8 位四元组。根据 imm8 中的控件,从 128 位 lane 中选择 b 中的四元组,并且每个 64 位 lanes 中的每个 SAD 使用 8 位偏移量的选定四元组。