From 01c7d4888a1f34d17f74d2da001a3879489621a7 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 4c4df36c..8bdf014a 100644 --- a/benchmarks/benches/lib.rs +++ b/benchmarks/benches/lib.rs @@ -675,7 +675,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| {