Function safe_arch::cmp_neq_i32_m128d_s
source ยท pub fn cmp_neq_i32_m128d_s(a: m128d, b: m128d) -> i32
Available with target feature
sse2
only.Expand description
Low lane f64
less than.
i32
output.
let a = m128d::from_array([0.0, 5.0]);
let b = m128d::from_array([1.0, 1.0]);
assert_eq!(1_i32, cmp_neq_i32_m128d_s(a, b));