Function safe_arch::max_u32_m256i
source ยท pub fn max_u32_m256i(a: m256i, b: m256i) -> m256i
Available with target feature
avx2
only.Expand description
Lanewise max(a, b)
with lanes as u32
.
let a = m256i::from([0_u32, 1, 2, 3, 4, 5, 6, 7]);
let b = m256i::from([0_u32, 11, 2, 13, 4, 15, 6, 17]);
let c: [u32; 8] = max_u32_m256i(a, b).into();
assert_eq!(c, [0, 11, 2, 13, 4, 15, 6, 17]);
- Intrinsic:
_mm256_max_epu32
- Assembly:
vpmaxud ymm, ymm, ymm