You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

tf_2workers.sh 422 B

4 years ago
123456789
  1. #!/bin/bash
  2. workdir=$(cd $(dirname $0); pwd)
  3. mainpy=${workdir}/../tf_launch_worker.py
  4. rm -f logs/temp*.log
  5. CUDA_VISIBLE_DEVICES=0 python ${mainpy} --model wdl_criteo --config ${workdir}/../settings/tf_local_s1_w2.json --rank 0 > ${workdir}/../logs/temp0.log &
  6. CUDA_VISIBLE_DEVICES=1 python ${mainpy} --model wdl_criteo --config ${workdir}/../settings/tf_local_s1_w2.json --rank 1 > ${workdir}/../logs/temp1.log &
  7. wait