bbqvec 0.0.10

Scalable, embeddable, vector storage for approximate K-nearest-neighbors (AKNN)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use criterion::{criterion_group, criterion_main, Criterion};
mod micro;
use micro::criterion_benchmark_micro;
mod memory_store;
use memory_store::criterion_benchmark_memory_store;
use pprof::criterion::{Output, PProfProfiler};

criterion_group! {
    name = memory;
    config = Criterion::default().with_profiler(PProfProfiler::new(1000, Output::Protobuf));
    targets = criterion_benchmark_memory_store
}
criterion_group!(micro, criterion_benchmark_micro);
criterion_main!(micro, memory);