Files
Gym_GPU/start3v3.sh
2026-03-14 21:31:00 -04:00

10 lines
178 B
Bash
Executable File

#!/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