Increase benchmark iterations

This commit is contained in:
David Venhoff 2025-09-15 15:52:52 +02:00
parent 054403ae0d
commit 8110528e1c

View File

@ -78,7 +78,7 @@ fn warmup(benchmark: &mut impl Benchmark) {
}
fn benchmark_loop<B: Benchmark>(benchmark: &mut B) -> Vec<B::BenchmarkResult> {
let n = 50;
let n = 500;
println!("Perform {n} iterations...");
(0..n)
.map(|_| std::hint::black_box(benchmark.execute_once()))