# Move to the appropriate folder cd ../rust # Build binary cargo build --release # Benchmark day 1 hyperfine --warmup 5 --export-json ../benchmarks/data/bram-d01-100.json \ --runs 100 "for run in {1..100}; do target/release/aoc2025 1; done" # Benchmark day 2 hyperfine --warmup 5 --export-json ../benchmarks/data/bram-d02.json \ --runs 100 "for run in {1..100}; do target/release/aoc2025 2; done" # Benchmark day 3 hyperfine --warmup 5 --export-json ../benchmarks/data/bram-d03.json \ --runs 100 "for run in {1..100}; do target/release/aoc2025 3; done" cd ../benchmarks