From f3a6411b903859e6d0a8dd4aa55c8c786781ce9b Mon Sep 17 00:00:00 2001 From: not-jan <61017633+not-jan@users.noreply.github.com> Date: Wed, 29 Jun 2022 18:59:58 +0200 Subject: [PATCH] Increase the numbers! --- benchmarks/benches/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmarks/benches/lib.rs b/benchmarks/benches/lib.rs index ca2df7c0..57afcb2e 100644 --- a/benchmarks/benches/lib.rs +++ b/benchmarks/benches/lib.rs @@ -652,7 +652,7 @@ fn insert_range_bitmap(c: &mut Criterion) { } fn insert_range_treemap(c: &mut Criterion) { - for &size in &[10, 100, 1_000, 5_000, 10_000, 20_000] { + for &size in &[1_000_u64, 10_000u64, 2 * (u32::MAX as u64)] { let mut group = c.benchmark_group("insert_range_treemap"); group.throughput(criterion::Throughput::Elements(size as u64)); group.bench_function(format!("from_empty_{}", size), |b| {