forked from apache/arrow
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ARROW-6232: [C++] Rename Argsort kernel to SortToIndices
"Argsort" is NumPy specific name. Other languages/libraries use different name: * R: order * https://cran.r-project.org/doc/manuals/r-release/fullrefman.pdf#Rfn.order * MATLAB: sort * https://mathworks.com/help/matlab/ref/sort.html * "sort" returns sorted array and indices to sort array * Julia: sortperm * https://pkg.julialang.org/docs/julia/THl1k/1.1.1/base/sort.html#Base.sortperm It's better that we use general name because Arrow C++ isn't a NumPy compatible library. "SortToIndices" means "sort that returns indices array". Closes apache#5080 from kou/cpp-argsort-to-sort-indicies and squashes the following commits: 2c26473 <Sutou Kouhei> Rename Argsort kernel to SortToIndices Authored-by: Sutou Kouhei <[email protected]> Signed-off-by: Sutou Kouhei <[email protected]>
- Loading branch information
Showing
6 changed files
with
96 additions
and
90 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.