Skip to content

Commit

Permalink
recalibrate benchmarks
Browse files Browse the repository at this point in the history
  • Loading branch information
brunocodutra committed Jan 24, 2025
1 parent 7b1d0cd commit 23ea1cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions benches/search.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ fn crit(c: &mut Criterion) {
}));

for o in &options {
let depth = Depth::new(16);
let depth = Depth::new(18);
c.benchmark_group("ttd")
.sampling_mode(SamplingMode::Flat)
.bench_function(o.threads.to_string(), |b| {
Expand All @@ -46,7 +46,7 @@ fn crit(c: &mut Criterion) {
}

for o in &options {
let nodes = 200_000;
let nodes = 250_000;
c.benchmark_group("nps")
.sampling_mode(SamplingMode::Flat)
.throughput(Throughput::Elements(nodes))
Expand Down

0 comments on commit 23ea1cf

Please sign in to comment.