Function core::arch::x86_64::_mm_ucomige_ss
1.27.0 · source · pub unsafe fn _mm_ucomige_ss(a: __m128, b: __m128) -> i32
Available on (x86 or x86-64) and target feature
sse
and x86-64 only.Expand description
Compares two 32-bit floats from the low-order bits of a
and b
. Returns
1
if the value from a
is greater than or equal to the one from b
, or
0
otherwise. This instruction will not signal an exception if either
argument is a quiet NaN.