I installed NCCL to use more gpus to train model.
install step:
- git clone https://github.com/NVIDIA/nccl.git
- cd nccl
- sudo make install -j8
- remove Makefile.config USE_NCCL comment
When I train model I use below instruction:
$CAFFE_ROOT/build/tools/caffe train --solver="models/ssd/${PROJECT}/initial/solver.prototxt" --weights="models/ssd/${PROJECT}/initial/${PRETRAINED}" -gpu 0,1,2
it get error:


But I can use 2 gpus to train.
Did I loss something instruction?