You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by jp...@apache.org on 2021/10/06 17:16:22 UTC

[lucene] branch main updated (9e9c3bd -> 5511bce)

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

jpountz pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/lucene.git.


    from 9e9c3bd  LUCENE-9325: Make Sort final (#338)
     add 5511bce  LUCENE-10153: Speed up BKDWriter using VarHandles. (#357)

No new revisions were added by this update.

Summary of changes:
 lucene/CHANGES.txt                                 |   3 +
 .../apache/lucene/util/bkd/BKDRadixSelector.java   |  48 +++-----
 .../java/org/apache/lucene/util/bkd/BKDUtil.java   | 104 ++++++++++++++++
 .../java/org/apache/lucene/util/bkd/BKDWriter.java | 115 ++++++-----------
 .../lucene/util/bkd/MutablePointsReaderUtils.java  |  29 ++---
 .../test/org/apache/lucene/util/TestArrayUtil.java |  48 ++++----
 .../org/apache/lucene/util/bkd/TestBKDUtil.java    | 136 +++++++++++++++++++++
 7 files changed, 335 insertions(+), 148 deletions(-)
 create mode 100644 lucene/core/src/java/org/apache/lucene/util/bkd/BKDUtil.java
 create mode 100644 lucene/core/src/test/org/apache/lucene/util/bkd/TestBKDUtil.java