install_nccl2.sh 952 字节
Newer Older
Y
Yancey1989 已提交
1
#!/bin/bash
2 3 4 5 6
VERSION=$(nvcc --version | grep release | grep -oEi "release ([0-9]+)\.([0-9])"| sed "s/release //")
if [ "$VERSION" == "9.0" ]; then
  DEB="nccl-repo-ubuntu1604-2.1.15-ga-cuda9.0_1-1_amd64.deb"
  URL="http://nccl2-deb.gz.bcebos.com/nccl-repo-ubuntu1604-2.1.15-ga-cuda9.0_1-1_amd64.deb"
else
Y
update  
Yancey1989 已提交
7 8
  DEB="nccl-repo-ubuntu1604-2.1.15-ga-cuda8.0_1-1_amd64.deb"
  URL="http://nccl2-deb.gz.bcebos.com/nccl-repo-ubuntu1604-2.1.15-ga-cuda8.0_1-1_amd64.deb"
9 10
fi

Y
Yancey1989 已提交
11 12 13 14
DIR="/nccl2"
mkdir -p $DIR
# we cached the nccl2 deb package in BOS, so we can download it with wget
# install nccl2: http://docs.nvidia.com/deeplearning/sdk/nccl-install-guide/index.html#down
15
wget -O $DIR/$DEB $URL
Y
Yancey1989 已提交
16 17 18 19 20 21 22 23

cd $DIR && ar x $DEB && tar xf data.tar.xz
DEBS=$(find ./var/ -name "*.deb")
for sub_deb in $DEBS; do
  echo $sub_deb
  ar x $sub_deb && tar xf data.tar.xz
done
mv -f usr/include/nccl.h /usr/local/include/
M
minqiyang 已提交
24
mv -f usr/lib/x86_64-linux-gnu/libnccl* /usr/local/lib/
Y
Yancey1989 已提交
25
rm -rf $DIR