Not sure how to get the master uri and port. I believe I cannot do it before I launch the job. Updating the name from submit_job to submit_job_mpi
9 lines
155 B
Bash
Executable File
9 lines
155 B
Bash
Executable File
#!/bin/bash
|
|
if [ "$#" -lt 4 ];
|
|
then
|
|
echo "Usage <nslave> <ndata> <config> <round_files_dir>"
|
|
exit -1
|
|
fi
|
|
|
|
../submit_job.py $1 test_recover "${@:2}"
|