| 118 | return vbslq_u64(npyv_cmpgt_u64(a, b), a, b); |
| 119 | } |
| 120 | NPY_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 |
nothing calls this directly
no test coverage detected