bachelor-project/src/run.sh

15 lines
249 B
Bash
Raw Normal View History

#!/usr/bin/env bash
2023-03-29 15:16:38 +00:00
2023-05-14 22:07:42 +00:00
PROG="semi2k-party.x"
2023-05-03 16:17:23 +00:00
if [[ $1 == "-k" ]]; then
2023-05-14 22:07:42 +00:00
killall "$PROG"
exit "$?"
2023-05-03 16:17:23 +00:00
fi
2023-05-14 22:07:42 +00:00
cd "$(dirname "$0")/MP-SPDZ" || exit 1
for i in $(seq 0 2); do
2023-05-14 22:07:42 +00:00
"./$PROG" -v -N 3 -p "$i" -e gale_shapley > "../out-p$i.txt" 2>&1 &
done