mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-10 14:08:09 -05:00
13 lines
211 B
Bash
Executable File
13 lines
211 B
Bash
Executable File
#!/bin/bash
|
|
|
|
HERE=$(cd `dirname $0`; pwd)
|
|
SPDZROOT=$HERE/..
|
|
|
|
bits=${2:-128}
|
|
g=${3:-0}
|
|
mem=${4:-empty}
|
|
|
|
. $HERE/run-common.sh
|
|
|
|
run_player Player-Online.x ${1:-test_all} -lgp ${bits} -lg2 ${g} -m ${mem} || exit 1
|