This commit is contained in:
2026-03-10 09:31:39 -04:00
commit 1f4ab43c3c
52 changed files with 2660 additions and 0 deletions

9
start.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/bash
export OMP_NUM_THREADS=1
host=${1:-localhost}
port=${2:-60000}
for i in {1..11}; do
python3 run_player.py --host $host --port $port -n $i -t SE &
done