Compare commits

...

1 Commits

Author SHA1 Message Date
Pascal Seitz
93365ab657 10% faster intersections: Use k-ary in block search 2026-06-28 15:32:38 +02:00
3 changed files with 100 additions and 29 deletions

View File

@@ -1,36 +1,68 @@
use crate::postings::compression::COMPRESSION_BLOCK_SIZE;
/// Search the first index containing an element greater or equal to
/// the target.
/// Returns the index of the first element in `arr` that is greater than or
/// equal to `target`.
///
/// The results should be equivalent to
/// ```compile_fail
/// block[..]
// .iter()
// .take_while(|&&val| val < target)
// .count()
/// This is equivalent to:
///
/// ```ignore
/// arr.iter().take_while(|&&val| val < target).count()
/// ```
///
/// the `start` argument is just used to hint that the response is
/// greater than beyond `start`. The implementation may or may not use
/// it for optimization.
///
/// # Assumption
/// # Assumptions
///
/// - The block is sorted. Some elements may appear several times. This is the case at the
/// end of the last block for instance.
/// - The target is assumed smaller or equal to the last element of the block.
pub fn branchless_binary_search(arr: &[u32; COMPRESSION_BLOCK_SIZE], target: u32) -> usize {
let mut start = 0;
let mut len = arr.len();
for _ in 0..7 {
len /= 2;
let pivot = unsafe { *arr.get_unchecked(start + len - 1) };
if pivot < target {
start += len;
/// - `arr` is sorted in nondecreasing order. Values may be repeated; the last block is often padded
/// with duplicates of its final value.
/// - `target` is less than or equal to the last element in `arr`, so the result is always a valid
/// index into the block.
///
/// # `K`
///
/// `K` is the branching factor. Each reduction probes `K - 1` segment-end
/// pivots, keeps the matching segment, and finally linearly scans the remaining
/// range. `K` must be one of `2`, `4`, `8`, `16`, `32`, or `64`.
///
/// The core idea vs a traditional binary search is that we can very cheaply scan blocks of
/// numbers, since they are already in the CPU cache line.
#[inline(always)]
pub fn kary_search<const K: usize>(arr: &[u32; COMPRESSION_BLOCK_SIZE], target: u32) -> usize {
const {
assert!(
matches!(K, 2 | 4 | 8 | 16 | 32 | 64),
"K must be one of 2, 4, 8, 16, 32, or 64"
);
};
let mut base = 0usize;
let mut range = COMPRESSION_BLOCK_SIZE;
loop {
let step = range / K;
if step == 0 {
break;
}
debug_assert_eq!(range % K, 0);
// Count how many segment-end pivots are < target (branchless, unrolled).
let mut count = 0usize;
for i in 1..K {
count += (unsafe { *arr.get_unchecked(base + i * step - 1) } < target) as usize;
}
base += count * step;
range = step;
}
start
// Linear scan over the ≤K remaining elements.
let mut count = 0usize;
for i in 0..range {
count += (unsafe { *arr.get_unchecked(base + i) } < target) as usize;
}
base + count
}
/// entry point used by postings; implemented as an 8-ary branchless search.
#[inline]
pub fn search_block(arr: &[u32; COMPRESSION_BLOCK_SIZE], target: u32) -> usize {
kary_search::<8>(arr, target)
}
#[cfg(test)]
@@ -39,7 +71,7 @@ mod tests {
use proptest::prelude::*;
use super::branchless_binary_search;
use super::{kary_search, search_block};
use crate::docset::TERMINATED;
use crate::postings::compression::COMPRESSION_BLOCK_SIZE;
@@ -57,7 +89,7 @@ mod tests {
assert_eq!(block.len(), COMPRESSION_BLOCK_SIZE);
let mut output_buffer = [TERMINATED; COMPRESSION_BLOCK_SIZE];
output_buffer[..block.len()].copy_from_slice(block);
assert_eq!(branchless_binary_search(&output_buffer, target), cursor);
assert_eq!(search_block(&output_buffer, target), cursor);
}
fn util_test_search_in_block_all(block: &[u32]) {
@@ -80,6 +112,45 @@ mod tests {
util_test_search_in_block_all(&v[..]);
}
#[test]
fn test_search_in_branchless_binary_search_corner_cases() {
let all_same = vec![7u32; COMPRESSION_BLOCK_SIZE];
util_test_search_in_block_all(&all_same);
let repeated_across_pivots: Vec<u32> = (0..COMPRESSION_BLOCK_SIZE)
.map(|i| (i / 17) as u32)
.collect();
util_test_search_in_block_all(&repeated_across_pivots);
let mut padded_last_block = vec![0u32; COMPRESSION_BLOCK_SIZE];
for (i, value) in padded_last_block.iter_mut().enumerate() {
*value = if i < COMPRESSION_BLOCK_SIZE / 2 {
i as u32
} else {
TERMINATED
};
}
util_test_search_in_block_all(&padded_last_block);
}
#[test]
fn test_kary_search_allowed_branching_factors() {
let mut block = [TERMINATED; COMPRESSION_BLOCK_SIZE];
for (idx, value) in block.iter_mut().enumerate() {
*value = (idx / 3) as u32;
}
for target in [0, 1, 17, block[COMPRESSION_BLOCK_SIZE - 1]] {
let expected = search_in_block_trivial_but_slow(&block, target);
assert_eq!(kary_search::<2>(&block, target), expected);
assert_eq!(kary_search::<4>(&block, target), expected);
assert_eq!(kary_search::<8>(&block, target), expected);
assert_eq!(kary_search::<16>(&block, target), expected);
assert_eq!(kary_search::<32>(&block, target), expected);
assert_eq!(kary_search::<64>(&block, target), expected);
}
}
fn monotonous_block() -> impl Strategy<Value = Vec<u32>> {
prop::collection::vec(0u32..5u32, COMPRESSION_BLOCK_SIZE).prop_map(|mut deltas| {
let mut el = 0;

View File

@@ -158,7 +158,7 @@ impl BlockDecoder {
/// Uses the padded buffer to enable branchless search.
#[inline]
pub(crate) fn seek_within_block(&self, target: u32) -> usize {
crate::postings::branchless_binary_search(&self.output, target)
crate::postings::search_block(&self.output, target)
}
#[inline]

View File

@@ -2,7 +2,7 @@
mod block_search;
pub(crate) use self::block_search::branchless_binary_search;
pub(crate) use self::block_search::search_block;
mod block_segment_postings;
pub(crate) mod compression;