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

Function npyv_max_s64

numpy/core/src/common/simd/neon/math.h:120–123  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

118 return vbslq_u64(npyv_cmpgt_u64(a, b), a, b);
119}
120NPY_FINLINE npyv_s64 npyv_max_s64(npyv_s64 a, npyv_s64 b)
121{
122 return vbslq_s64(npyv_cmpgt_s64(a, b), a, b);
123}
124
125// Minimum, natively mapping with no guarantees to handle NaN.
126#define npyv_min_f32 vminq_f32

Callers

nothing calls this directly

Calls 1

npyv_cmpgt_s64Function · 0.85

Tested by

no test coverage detected