是否可以为Caffe (特别是pyCaffe)设置所有GPU?
类似于:
caffe train -solver examples/mnist/lenet_solver.prototxt -gpu all发布于 2015-11-16 07:03:02
发布于 2016-01-22 18:25:58
发布于 2015-11-18 15:28:21
看来Caffe现在开始支持C++接口的多GPU培训。请参阅CommandLine接口上的文档。
# 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 allhttps://stackoverflow.com/questions/33726333
复制相似问题