mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-09 05:27:56 -05:00
22 lines
428 B
Bash
Executable File
22 lines
428 B
Bash
Executable File
#!/bin/bash
|
|
|
|
make stream-fake-mascot-triples.x
|
|
./compile.py test_thread_mul || exit 1
|
|
|
|
rm Player-Data/2-p-128/Triples-p-P?-T?
|
|
mkdir Player-Data/2-p-128
|
|
|
|
for i in 0 1; do
|
|
for j in 0 1 2; do
|
|
mknod Player-Data/2-p-128/Triples-p-P$i-T$j p || exit 1
|
|
done
|
|
done
|
|
|
|
./stream-fake-mascot-triples.x &
|
|
|
|
Scripts/mascot.sh test_thread_mul -f || exit 1
|
|
|
|
./stream-fake-mascot-triples.x &
|
|
|
|
Scripts/mascot.sh test_thread_mul -f || exit 1
|