This commit is contained in:
2026-03-14 21:31:00 -04:00
commit 571b4283c7
45 changed files with 2591 additions and 0 deletions

9
start3v3.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..3}; do
python3 run_player.py --host $host --port $port -n $i -t SE -f hl_adult &
done