We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3cb45ba commit c0972e1Copy full SHA for c0972e1
docker/caffe2/jenkins/common/install_nccl.sh
@@ -30,6 +30,9 @@ if [ -n "$NCCL_UBUNTU_VER" ]; then
30
apt-get install -y wget
31
dpkg -i "${NCCL_DEB}"
32
33
+ # On March 8, 2018 Nvidia began recommending version 2.1.15
34
+ NCCL_LIB_VERSION="2.1.15-1+cuda${CUDA_VERSION:0:3}"
35
+
36
apt update
- apt install -y libnccl2 libnccl-dev
37
+ apt install -y libnccl2=$NCCL_LIB_VERSION libnccl-dev=$NCCL_LIB_VERSION
38
fi
0 commit comments