| 216 | NPYV_IMPL_SSE_UNSIGNED_GT(32, 0x80000000) |
| 217 | |
| 218 | NPY_FINLINE __m128i npyv_cmpgt_u64(__m128i a, __m128i b) |
| 219 | { |
| 220 | const __m128i sbit = npyv_setall_s64(0x8000000000000000); |
| 221 | return npyv_cmpgt_s64(_mm_xor_si128(a, sbit), _mm_xor_si128(b, sbit)); |
| 222 | } |
| 223 | #endif |
| 224 | |
| 225 | // unsigned greater than or equal |
no test coverage detected