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

Function quicksort_half

numpy/core/src/npysort/quicksort.cpp:794–801  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

792 return quicksort_<npy::ulonglong_tag>((npy_ulonglong *)start, n);
793}
794NPY_NO_EXPORT int
795quicksort_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}
802NPY_NO_EXPORT int
803quicksort_float(void *start, npy_intp n, void *NPY_UNUSED(varr))
804{

Callers

nothing calls this directly

Calls 1

quicksort_dispatchFunction · 0.85

Tested by

no test coverage detected