Skip to content

Commit 0f62a2a

Browse files
committed
Bench day 25
1 parent b788072 commit 0f62a2a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

benches/bench_days.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ macro_rules! benches_day {
2424
[<day $day_num>]::part1(black_box(input))
2525
}
2626
group.bench_with_input(format!("day{}_part1", $day_num), input, |b, i| b.iter(|| routine_part1(i)));
27-
#[inline(never)]
28-
fn routine_part2(input: &str) -> impl Display + '_ {
29-
[<day $day_num>]::part2(black_box(input))
30-
}
31-
group.bench_with_input(format!("day{}_part2", $day_num), input, |b, i| b.iter(|| routine_part2(i)));
27+
// #[inline(never)]
28+
// fn routine_part2(input: &str) -> impl Display + '_ {
29+
// [<day $day_num>]::part2(black_box(input))
30+
// }
31+
// group.bench_with_input(format!("day{}_part2", $day_num), input, |b, i| b.iter(|| routine_part2(i)));
3232
}
3333
}
3434
};
@@ -48,4 +48,4 @@ macro_rules! benches {
4848
};
4949
}
5050

51-
benches!(24);
51+
benches!(25);

0 commit comments

Comments
 (0)