use az::{Az, Cast}; use codspeed_criterion_compat::{ black_box, criterion_group, criterion_main, measurement::WallTime, AxisScale, BatchSize, BenchmarkGroup, BenchmarkId, Criterion, PlotConfiguration, Throughput, }; use fixed::types::extra::{LeEqU16, Unsigned, U16}; use fixed::FixedU16; use kiddo::batch_benches_parameterized; use kiddo::fixed::distance::SquaredEuclidean as SquaredEuclideanFixed; use kiddo::fixed::kdtree::{Axis as AxisFixed, KdTree as KdTreeFixed}; use kiddo::float::distance::SquaredEuclidean; use kiddo::float::kdtree::{Axis, KdTree}; use kiddo::test_utils::{ build_populated_tree_and_query_points_fixed, build_populated_tree_and_query_points_float, process_queries_fixed_parameterized, process_queries_float_parameterized, }; use kiddo::types::{Content, Index}; use rand::distributions::Standard; use rand_distr::Distribution; const BUCKET_SIZE: usize = 32; const QUERY_POINTS_PER_LOOP: usize = 100; const RADIUS_SMALL: f64 = 0.01; const RADIUS_MEDIUM: f64 = 0.05; const RADIUS_LARGE: f64 = 0.25; type Fxd = U16; // FixedU16; macro_rules! bench_float { ($group:ident, $a:ty, $t:ty, $k:tt, $idx: ty, $size:tt, $radius:tt, $subtype: expr) => { bench_query_float::<$a, $t, $k, $idx>(&mut $group, $size, $radius, $subtype); }; } macro_rules! bench_fixed { ($group:ident, $a:ty, $t:ty, $k:tt, $idx:ty, $size:tt, $radius:tt, $subtype: expr) => { bench_query_fixed::<$a, $t, $k, $idx>(&mut $group, $size, $radius, $subtype); }; } pub fn within_unsorted_small(c: &mut Criterion) { within_unsorted(c, RADIUS_SMALL, "small"); } pub fn within_unsorted_medium(c: &mut Criterion) { within_unsorted(c, RADIUS_MEDIUM, "medium"); } pub fn within_unsorted_large(c: &mut Criterion) { within_unsorted(c, RADIUS_LARGE, "large"); } fn within_unsorted(c: &mut Criterion, radius: f64, radius_name: &str) { let mut group = c.benchmark_group(format!("Query: within_unsorted, {} radius", radius_name)); group.throughput(Throughput::Elements(QUERY_POINTS_PER_LOOP as u64)); let plot_config = PlotConfiguration::default().summary_scale(AxisScale::Logarithmic); group.plot_config(plot_config); batch_benches_parameterized!( group, bench_float, radius, [(f64, 2), (f64, 3), (f64, 4), (f32, 3)], [ (100, u16, u16), (1_000, u16, u16), (10_000, u16, u16), (100_000, u32, u16), (1_000_000, u32, u32) ] ); batch_benches_parameterized!( group, bench_fixed, radius, [(Fxd, 3)], [ (100, u16, u16), (1_000, u16, u16), (10_000, u16, u16), (100_000, u32, u16), (1_000_000, u32, u32) ] ); group.finish(); } fn perform_query_float< A: Axis, T: Content + 'static, const K: usize, const B: usize, IDX: Index + 'static, >( kdtree: &KdTree, point: &[A; K], radius: f64, ) where usize: Cast, f64: Cast, { { let _res = black_box(kdtree.within_unsorted::(point, radius.az::())); }; black_box(()); // .for_each(|res_item| { // black_box({ // let _x = res_item; // }); // }) } fn perform_query_fixed< A: Unsigned, T: Content + 'static, const K: usize, const B: usize, IDX: Index + 'static, >( kdtree: &KdTreeFixed, T, K, BUCKET_SIZE, IDX>, point: &[FixedU16; K], radius: f64, ) where usize: Cast, FixedU16: AxisFixed, A: LeEqU16, { { let _res = black_box( kdtree.within_unsorted::(point, FixedU16::::from_num(radius)), ); }; black_box(()); // .for_each(|res_item| { // black_box({ // let _x = res_item; // }); // }) } fn bench_query_float< A: Axis + 'static, T: Content + 'static, const K: usize, IDX: Index + 'static, >( group: &mut BenchmarkGroup, initial_size: usize, radius: f64, subtype: &str, ) where usize: Cast, f64: Cast, Standard: Distribution, Standard: Distribution<[A; K]>, { group.bench_with_input( BenchmarkId::new(subtype, initial_size), &initial_size, |b, &size| { b.iter_batched( || { build_populated_tree_and_query_points_float::( size, QUERY_POINTS_PER_LOOP, ) }, process_queries_float_parameterized( perform_query_float::, radius, ), BatchSize::SmallInput, ); }, ); } fn bench_query_fixed< A: Unsigned, T: Content + 'static, const K: usize, IDX: Index + 'static, >( group: &mut BenchmarkGroup, initial_size: usize, radius: f64, subtype: &str, ) where usize: Cast, Standard: Distribution, FixedU16: AxisFixed, A: LeEqU16, { group.bench_with_input( BenchmarkId::new(subtype, initial_size), &initial_size, |b, &size| { b.iter_batched( || { build_populated_tree_and_query_points_fixed::( size, QUERY_POINTS_PER_LOOP, ) }, process_queries_fixed_parameterized( perform_query_fixed::, radius, ), BatchSize::SmallInput, ); }, ); } criterion_group!( benches, within_unsorted_small, within_unsorted_medium, within_unsorted_large ); criterion_main!(benches);