‹ projects

cluster-rnn

a distributed Torch7 RNN cluster over MPI
Log | Files | Refs | README

commit 955d659eec7bd1efc0a00d0ad754f80873db4254
parent 7476c316fefea1c77bc36be40d01466c01852552
Author: umhau <umhau@users.noreply.github.com>
Date:   Tue, 14 Feb 2017 18:08:17 -0500

fix nil rank value

Diffstat:
Mtrain.lua | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/train.lua b/train.lua @@ -358,7 +358,7 @@ else end -- initialize MPI optimizer clients -rank = opt.rank +rank = opt.rank or -1 print('i am ' .. rank .. ' ready to run') if pclient then pclient:start(params,grad_params)