OpenTally/scripts/profile.sh

10 lines
653 B
Bash
Raw Normal View History

2022-08-20 18:24:24 +02:00
#!/bin/bash
cargo build --profile perf || exit
2022-08-22 11:19:22 +02:00
rm target/perf.data
2022-08-20 22:14:34 +02:00
# Burn in
./target/perf/opentally stv tests/data/raw/VIC2022.bin --bin --round-votes 0 --round-quota 0 --quota droop --quota-criterion geq --ties backwards random --random-seed 20210727 --surplus uig --surplus-order by_order --exclusion by_value --pp-decimals 0 $@
# Profile
2022-08-20 23:31:32 +02:00
perf record -g -o target/perf.data --call-graph=dwarf ./target/perf/opentally stv tests/data/raw/VIC2022.bin --bin --round-votes 0 --round-quota 0 --quota droop --quota-criterion geq --ties backwards random --random-seed 20210727 --surplus uig --surplus-order by_order --exclusion by_value --pp-decimals 0 $@