You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Caffe, all the multi-GPU work has to be done on their side. You just pass --gpus 0,1 as a command line argument to Caffe, and you're running on 2 GPUs like magic.
For Torch, this will require writing some non-trivial lua code for communication between the GPUs (e.g. torch/cutorch#42 (comment)).
In Caffe, all the multi-GPU work has to be done on their side. You just pass
--gpus 0,1as a command line argument to Caffe, and you're running on 2 GPUs like magic.For Torch, this will require writing some non-trivial lua code for communication between the GPUs (e.g. torch/cutorch#42 (comment)).