IPPSortDispatcher ================= .. cpp:class:: numpy::IPPSortDispatcher numpy C++ class. Example ------- .. code-block:: cpp #include using namespace numpy; // Use IPPSortDispatcher IPPSortDispatcher obj; // ... operations ... Sorting ------- .. list-table:: :widths: 40 20 15 25 :header-rows: 1 * - Signature - Return Type - Location - Example * - ``void argsort_ascending(const T \*src, int \*indices, intlen, intstride = 1)`` - void - NP_IPP_SORT.H:257 - * - ``void sort_ascending(T \*data, intlen)`` - void - NP_IPP_SORT.H:63 - * - ``void sort_descending(T \*data, intlen)`` - void - NP_IPP_SORT.H:92 - Other Methods ------------- .. list-table:: :widths: 40 20 15 25 :header-rows: 1 * - Signature - Return Type - Location - Example * - ``void radix_sort_ascending(T \*data, intlen)`` - void - NP_IPP_SORT.H:121 - * - ``void radix_sort_descending(T \*data, intlen)`` - void - NP_IPP_SORT.H:189 -