Function add_saturating_i8_m256i
pub fn add_saturating_i8_m256i(a: m256i, b: m256i) -> m256i
Available on crate feature
dep_safe_arch
only.Expand description
Lanewise saturating a + b
with lanes as i8
.
let a = m256i::from([126_i8; 32]);
let b = m256i::from([125_i8; 32]);
let c: [i8; 32] = add_saturating_i8_m256i(a, b).into();
assert_eq!(c, [127_i8; 32]);
- Intrinsic:
_mm256_adds_epi8
- Assembly:
vpaddsb ymm, ymm, ymm