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 2021/03/09 15:17:35 UTC

[arrow] branch master updated (e7c47ba -> fbb0662)

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 e7c47ba  ARROW-11905: [C++] Fix SIMD detection on macOS
     add fbb0662  ARROW-11680: [C++] Add vendored version of folly's spsc queue

No new revisions were added by this update.

Summary of changes:
 LICENSE.txt                                        |  16 ++
 cpp/src/arrow/testing/gtest_util.h                 |  44 +++++
 cpp/src/arrow/util/CMakeLists.txt                  |   2 +
 cpp/src/arrow/util/future_test.cc                  |  44 -----
 cpp/src/arrow/util/{bpacking_avx2.h => queue.h}    |   9 +-
 cpp/src/arrow/util/queue_benchmark.cc              |  85 ++++++++
 .../util/{tdigest_benchmark.cc => queue_test.cc}   |  49 +++--
 cpp/src/arrow/vendored/ProducerConsumerQueue.h     | 217 +++++++++++++++++++++
 8 files changed, 397 insertions(+), 69 deletions(-)
 copy cpp/src/arrow/util/{bpacking_avx2.h => queue.h} (84%)
 create mode 100644 cpp/src/arrow/util/queue_benchmark.cc
 copy cpp/src/arrow/util/{tdigest_benchmark.cc => queue_test.cc} (54%)
 create mode 100644 cpp/src/arrow/vendored/ProducerConsumerQueue.h