Files
MP-SPDZ/Scripts/yao.sh
2019-06-07 15:26:28 +10:00

13 lines
185 B
Bash
Executable File

#!/bin/bash
. Scripts/run-common.sh
for i in 0 1; do
IFS=""
log="yao-$*-$i"
IFS=" "
$prefix ./yao-party.x -p $i $* 2>&1 | tee -a logs/$log & true
done
wait || exit 1