| 98 | return npyv_select_u64(npyv_cmpgt_u64(a, b), a, b); |
| 99 | } |
| 100 | NPY_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 |
nothing calls this directly
no test coverage detected