[][src]Function safe_arch::max_i32_m256i

#[must_use]pub fn max_i32_m256i(a: m256i, b: m256i) -> m256i
This is supported with target feature avx2 only.

Lanewise max(a, b) with lanes as i32.

let a = m256i::from([0_i32, 1, 2, 3, 4, 5, 6, 7]);
let b = m256i::from([0_i32, 11, 2, -13, 4, 15, 6, -17]);
let c: [i32; 8] = max_i32_m256i(a, b).into();
assert_eq!(c, [0, 11, 2, 3, 4, 15, 6, 7]);