bench: add board place benchmark

This commit is contained in:
2025-02-28 20:53:36 -05:00
parent 47050a6871
commit 97d914238c
5 changed files with 37 additions and 3 deletions

View File

@@ -22,7 +22,7 @@ fn criterion_benchmark(c: &mut Criterion) {
let mut group = c.benchmark_group("extend_layer (no pruning)");
const ARENA_SIZE: usize = 10_000_000;
for depth in 1..8 {
for depth in 6..8 {
group.throughput(Throughput::Elements(
extend_layers_no_pruning(depth, ARENA_SIZE) as u64,
));