[][src]Function safe_arch::cmp_neq_i32_m128_s

#[must_use]pub fn cmp_neq_i32_m128_s(a: m128, b: m128) -> i32
This is supported with target feature sse only.

Low lane not equal to.

i32 output.

let a = m128::from_array([1.0, 2.0, 3.0, 4.0]);
let b = m128::from_array([1.0, 1.0, 1.0, 1.0]);
assert_eq!(0_i32, cmp_neq_i32_m128_s(a, b));