Skip to content

Commit

Permalink
update example 17 run script
Browse files Browse the repository at this point in the history
  • Loading branch information
kyechou committed Jul 29, 2024
1 parent dd1a16c commit c715401
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions examples/17-campus-network/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@ SCRIPT_DIR="$(dirname "$(realpath "${BASH_SOURCE[0]}")")"
source "${SCRIPT_DIR}/../common.sh"

# # Test
# emu_pct=10
# emu_pct=8
# invs=4
# "${CONFGEN[@]}" --data "$SCRIPT_DIR/data" -e "$emu_pct" -i "$invs" -l >"$CONF"
# procs=8
# "${CONFGEN[@]}" -e "$emu_pct" -i "$invs" >"$CONF"
# procs=4
# drop=timeout
# name="output.$emu_pct-emulated.$invs-invariants.$procs-procs.$drop"
# run "$name" "$procs" "$drop" "$CONF" #--parallel-invs
# rm "$CONF"

for emu_pct in 4 8 12 16 20; do
for invs in 1 4 8 12 16; do
"${CONFGEN[@]}" --data "$SCRIPT_DIR/data" -e "$emu_pct" -i "$invs" -l >"$CONF"
"${CONFGEN[@]}" --data "$SCRIPT_DIR/data" -e "$emu_pct" -i "$invs" >"$CONF"
for procs in 1 4 8 12 16; do
for drop in "${DROP_METHODS[@]}"; do
name="output.$emu_pct-emulated.$invs-invariants.$procs-procs.$drop"
Expand Down

0 comments on commit c715401

Please sign in to comment.