4

is possible to set all GPUs for Caffe (especially pyCaffe)?

Something like:

caffe train -solver examples/mnist/lenet_solver.prototxt -gpu all
gulliver
  • 86
  • 2
  • 9

3 Answers3

7

Both forks have supported multi-GPU for a while now.

  • BVLC/caffe got support for multi-GPU on 08/13/2015 (see commit, issue).
  • NVIDIA/caffe got support for multi-GPU on 06/19/2015 (see release note).

You may be interested to know that there is a pretty serious outstanding issue with multi-GPU and PythonLayers (see issue, temporary fix).

Luke Yeager
  • 1,400
  • 1
  • 17
  • 30
6

AFAIK Caffe is not supporting multi gpu training at the moment. It is planned for future release. See a discussion here.
It seems like NVIDIA's branch of caffe has this functionality. See the issue here.

Shai
  • 111,146
  • 38
  • 238
  • 371
4

It seems that Caffe now starts supporting training on multi-GPUs for C++ interface. See the docs on CommandLine interface.

# train on GPUs 0 & 1 (doubling the batch size)
caffe train -solver examples/mnist/lenet_solver.prototxt -gpu 0,1
# train on all GPUs (multiplying batch size by number of devices)
caffe train -solver examples/mnist/lenet_solver.prototxt -gpu all
beahacker
  • 1,660
  • 14
  • 10