MCPcopy Create free account
hub / github.com/numpy/numpy / npyv_cmpgt_u64

Function npyv_cmpgt_u64

numpy/core/src/common/simd/sse/operators.h:218–222  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 2

npyv_max_u64Function · 0.70
npyv_max_u64Function · 0.50

Calls 2

npyv_cmpgt_s64Function · 0.85
npyv_setall_s64Function · 0.70

Tested by

no test coverage detected