mirror of
https://github.com/qdrant/qdrant.git
synced 2026-08-03 00:20:57 -05:00
* Benches: use SmallRng instead of ChaCha12-based generators All benchmarks used StdRng or rand::rng() (ThreadRng), both backed by the ChaCha12 block cipher in rand 0.10. Benchmarks do not need crypto-strength randomness, and several draw random values inside the timed closure, so cipher work was included in the measurement itself. Switch every bench target to SmallRng (Xoshiro256++), and key the HNSW graph cache and sparse index cache by RNG algorithm so stale caches built from the old generator are not reused against newly generated vectors. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * Benches: replace free-function rand::random with local SmallRng Addresses review: rand::random draws from the thread RNG (ChaCha12), including inside the timed loop of the pq score benchmark. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> --------- Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
97 lines
3.0 KiB
Rust
97 lines
3.0 KiB
Rust
use common::bitvec::BitVec;
|
|
use common::counter::hardware_counter::HardwareCounterCell;
|
|
use common::types::PointOffsetType;
|
|
use common::universal_io::{MmapFile, MmapFs, Populate};
|
|
use criterion::{Criterion, criterion_group, criterion_main};
|
|
use rand::prelude::SmallRng;
|
|
use rand::{RngExt, SeedableRng};
|
|
use segment::common::operation_error::OperationResult;
|
|
use segment::index::field_index::numeric_index::NumericIndexRead;
|
|
use segment::index::field_index::numeric_index::mutable_numeric_index::InMemoryNumericIndex;
|
|
use segment::index::field_index::numeric_index::on_disk_numeric_index::OnDiskNumericIndex;
|
|
use tempfile::Builder;
|
|
|
|
mod prof;
|
|
|
|
const NUM_POINTS: usize = 100000;
|
|
const VALUES_PER_POINT: usize = 2;
|
|
|
|
fn get_random_payloads(rng: &mut SmallRng, num_points: usize) -> Vec<(PointOffsetType, f64)> {
|
|
let mut payloads = Vec::with_capacity(num_points);
|
|
for i in 0..num_points {
|
|
for _ in 0..VALUES_PER_POINT {
|
|
let value: f64 = rng.random_range(0.0..1.0f64);
|
|
payloads.push((i as PointOffsetType, value));
|
|
}
|
|
}
|
|
payloads
|
|
}
|
|
|
|
pub fn struct_numeric_check_values(c: &mut Criterion) {
|
|
let seed = 42;
|
|
let mut rng = SmallRng::seed_from_u64(seed);
|
|
let dir = Builder::new().prefix("storage_dir").tempdir().unwrap();
|
|
|
|
let mut group = c.benchmark_group("numeric-check-values");
|
|
|
|
let payloads: Vec<(PointOffsetType, f64)> = get_random_payloads(&mut rng, NUM_POINTS);
|
|
// No deletions in this benchmark — sized generously to cover the whole point set.
|
|
let deleted_points = BitVec::repeat(false, NUM_POINTS);
|
|
|
|
let mutable_index: InMemoryNumericIndex<f64> = payloads
|
|
.into_iter()
|
|
.map(Ok)
|
|
.collect::<OperationResult<InMemoryNumericIndex<_>>>()
|
|
.unwrap();
|
|
|
|
let hw_counter = HardwareCounterCell::new();
|
|
|
|
let mut count = 0;
|
|
group.bench_function("numeric-index", |b| {
|
|
b.iter(|| {
|
|
let random_index = rng.random_range(0..NUM_POINTS) as PointOffsetType;
|
|
|
|
if mutable_index.check_values_any(random_index, |value| *value > 0.5) {
|
|
count += 1;
|
|
}
|
|
})
|
|
});
|
|
|
|
let mmap_index = OnDiskNumericIndex::<_, MmapFile>::build(
|
|
&MmapFs,
|
|
mutable_index,
|
|
dir.path(),
|
|
Populate::Blocking,
|
|
&deleted_points,
|
|
)
|
|
.unwrap();
|
|
|
|
group.bench_function("mmap-numeric-index", |b| {
|
|
b.iter(|| {
|
|
let random_index = rng.random_range(0..NUM_POINTS) as PointOffsetType;
|
|
|
|
if mmap_index.check_values_any(random_index, |value| *value > 0.5, &hw_counter) {
|
|
count += 1;
|
|
}
|
|
})
|
|
});
|
|
|
|
group.finish();
|
|
}
|
|
|
|
#[cfg(not(target_os = "windows"))]
|
|
criterion_group! {
|
|
name = benches;
|
|
config = Criterion::default().with_profiler(prof::FlamegraphProfiler::new(100));
|
|
targets = struct_numeric_check_values
|
|
}
|
|
|
|
#[cfg(target_os = "windows")]
|
|
criterion_group! {
|
|
name = benches;
|
|
config = Criterion::default();
|
|
targets = struct_numeric_check_values
|
|
}
|
|
|
|
criterion_main!(benches);
|