[][src]Function safe_arch::min_m256

#[must_use]pub fn min_m256(a: m256, b: m256) -> m256
This is supported with target feature avx only.

Lanewise min(a, b).

let a = m256::from_array([1.0, 12.0, -1.0, 3.0, 10.0, 0.0, 1.0, 2.0]);
let b = m256::from_array([5.0, 6.0, -0.5, 2.2, 5.0, 6.0, 7.0, 8.0]);
let c = min_m256(a, b).to_array();
assert_eq!(c, [1.0, 6.0, -1.0, 2.2, 5.0, 0.0, 1.0, 2.0]);