You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ap...@apache.org on 2020/03/12 15:08:39 UTC

[arrow] branch master updated (e28c5fa -> b314276)

This is an automated email from the ASF dual-hosted git repository.

apitrou pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git.


    from e28c5fa  ARROW-7419: [Python] Support SparseCSCMatrix
     add b314276  ARROW-7587: [C++][Compute] Implement nth_to_indices kernel

No new revisions were added by this update.

Summary of changes:
 cpp/src/arrow/CMakeLists.txt                       |   1 +
 cpp/src/arrow/compute/api.h                        |   1 +
 cpp/src/arrow/compute/kernels/CMakeLists.txt       |   1 +
 cpp/src/arrow/compute/kernels/nth_to_indices.cc    | 140 ++++++++++++++++
 .../{sort_to_indices.h => nth_to_indices.h}        |  24 +--
 .../arrow/compute/kernels/nth_to_indices_test.cc   | 185 +++++++++++++++++++++
 6 files changed, 341 insertions(+), 11 deletions(-)
 create mode 100644 cpp/src/arrow/compute/kernels/nth_to_indices.cc
 copy cpp/src/arrow/compute/kernels/{sort_to_indices.h => nth_to_indices.h} (59%)
 create mode 100644 cpp/src/arrow/compute/kernels/nth_to_indices_test.cc