You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by we...@apache.org on 2020/03/07 14:23:27 UTC

[arrow] branch master updated (fe71388 -> f6a41a4)

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

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


    from fe71388  ARROW-7444: [GLib] Add LocalFileSystem support
     add f6a41a4  ARROW-7785: [C++] Improve compilation performance of sparse tensor related code

No new revisions were added by this update.

Summary of changes:
 cpp/src/arrow/CMakeLists.txt          |   4 +
 cpp/src/arrow/sparse_tensor.cc        | 625 +---------------------------------
 cpp/src/arrow/sparse_tensor.h         |  20 +-
 cpp/src/arrow/tensor/converter.h      |  52 +++
 cpp/src/arrow/tensor/coo_converter.cc | 185 ++++++++++
 cpp/src/arrow/tensor/csc_converter.cc | 196 +++++++++++
 cpp/src/arrow/tensor/csf_converter.cc | 232 +++++++++++++
 cpp/src/arrow/tensor/csr_converter.cc | 196 +++++++++++
 8 files changed, 891 insertions(+), 619 deletions(-)
 create mode 100644 cpp/src/arrow/tensor/converter.h
 create mode 100644 cpp/src/arrow/tensor/coo_converter.cc
 create mode 100644 cpp/src/arrow/tensor/csc_converter.cc
 create mode 100644 cpp/src/arrow/tensor/csf_converter.cc
 create mode 100644 cpp/src/arrow/tensor/csr_converter.cc