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

Function quicksort_float

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

Source from the content-addressed store, hash-verified

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{
805 if (quicksort_dispatch((npy_float *)start, n)) {
806 return 0;
807 }
808 return quicksort_<npy::float_tag>((npy_float *)start, n);
809}
810NPY_NO_EXPORT int
811quicksort_double(void *start, npy_intp n, void *NPY_UNUSED(varr))
812{

Callers

nothing calls this directly

Calls 1

quicksort_dispatchFunction · 0.85

Tested by

no test coverage detected