|
# 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"
|
|
|
|
cd ../benchmarks
|