mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-10 14:08:09 -05:00
15 lines
224 B
Bash
Executable File
15 lines
224 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
. Scripts/run-common.sh
|
|
|
|
port=$[RANDOM+1024]
|
|
|
|
for i in 0 1; do
|
|
IFS=""
|
|
log="yao-$*-$i"
|
|
IFS=" "
|
|
$prefix ./yao-party.x -p $i -pn $port $* 2>&1 | tee -a logs/$log & true
|
|
done
|
|
|
|
wait || exit 1
|