Now we are passing the folder where the round instances are saved. The problem is that calling utils::Check or utils::Assert on 1 or 2 nodes, shutdowns all of them. Only those should be shutdown and this will work. There maybe some other mechanism to shutdown a particular node. Tianqi?
8 lines
160 B
Bash
Executable File
8 lines
160 B
Bash
Executable File
#!/bin/bash
|
|
if [ "$#" -ne 4 ];
|
|
then
|
|
echo "Usage <nslave> <ndata> <config> <round_files_dir>"
|
|
exit -1
|
|
fi
|
|
|
|
../submit_job_tcp.py $1 test_allreduce $2 $3 $4 |