| 792 | return quicksort_<npy::ulonglong_tag>((npy_ulonglong *)start, n); |
| 793 | } |
| 794 | NPY_NO_EXPORT int |
| 795 | quicksort_half(void *start, npy_intp n, void *NPY_UNUSED(varr)) |
| 796 | { |
| 797 | if (quicksort_dispatch((np::Half *)start, n)) { |
| 798 | return 0; |
| 799 | } |
| 800 | return quicksort_<npy::half_tag>((npy_half *)start, n); |
| 801 | } |
| 802 | NPY_NO_EXPORT int |
| 803 | quicksort_float(void *start, npy_intp n, void *NPY_UNUSED(varr)) |
| 804 | { |
nothing calls this directly
no test coverage detected