run_actors.sh 102 字节
Newer Older
H
Hongsheng Zeng 已提交
1 2 3 4 5 6 7 8
#!/bin/bash

export CUDA_VISIBLE_DEVICES=""

for i in $(seq 1 5); do
    python actor.py &
done;
wait