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

Function npyv_max_s64

numpy/core/src/common/simd/sse/math.h:100–103  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

98 return npyv_select_u64(npyv_cmpgt_u64(a, b), a, b);
99}
100NPY_FINLINE npyv_s64 npyv_max_s64(npyv_s64 a, npyv_s64 b)
101{
102 return npyv_select_s64(npyv_cmpgt_s64(a, b), a, b);
103}
104
105// Minimum, natively mapping with no guarantees to handle NaN.
106#define npyv_min_f32 _mm_min_ps

Callers

nothing calls this directly

Calls 1

npyv_cmpgt_s64Function · 0.85

Tested by

no test coverage detected