Skip to content

Commit

Permalink
[Dependency Update] Bump up cuDNN & NCCL version (apache#15142)
Browse files Browse the repository at this point in the history
* bump up cudnn version

* downgrade tensorRT to 7.5

* bump up NCCL 2.4.7
  • Loading branch information
stu1130 authored and haohuw committed Jun 23, 2019
1 parent 0971af1 commit 3ed6d74
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion ci/docker/Dockerfile.build.centos7_gpu
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ RUN /work/centos7_ccache.sh
COPY install/centos7_python.sh /work/
RUN /work/centos7_python.sh

ENV CUDNN_VERSION=7.5.1.10
ENV CUDNN_VERSION=7.6.0.64
COPY install/centos7_cudnn.sh /work/
RUN /work/centos7_cudnn.sh

Expand Down
2 changes: 1 addition & 1 deletion ci/docker/Dockerfile.build.ubuntu_base_gpu
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ WORKDIR /work/deps

RUN apt-get update && apt-get -y install sudo

ENV CUDNN_VERSION=7.5.1.10
ENV CUDNN_VERSION=7.6.0.64
COPY install/ubuntu_cudnn.sh /work/
RUN /work/ubuntu_cudnn.sh

Expand Down
2 changes: 1 addition & 1 deletion ci/docker/Dockerfile.build.ubuntu_build_cuda
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ RUN /work/ubuntu_clang.sh
COPY install/ubuntu_mklml.sh /work/
RUN /work/ubuntu_mklml.sh

ENV CUDNN_VERSION=7.5.1.10
ENV CUDNN_VERSION=7.6.0.64
COPY install/ubuntu_cudnn.sh /work/
RUN /work/ubuntu_cudnn.sh

Expand Down
2 changes: 1 addition & 1 deletion ci/docker/Dockerfile.build.ubuntu_gpu_cu100
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ RUN /work/ubuntu_docs.sh
COPY install/ubuntu_tutorials.sh /work/
RUN /work/ubuntu_tutorials.sh

ENV CUDNN_VERSION=7.5.1.10
ENV CUDNN_VERSION=7.6.0.64
COPY install/ubuntu_cudnn.sh /work/
RUN /work/ubuntu_cudnn.sh

Expand Down
2 changes: 1 addition & 1 deletion ci/docker/Dockerfile.build.ubuntu_gpu_cu90
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ RUN /work/ubuntu_docs.sh
COPY install/ubuntu_tutorials.sh /work/
RUN /work/ubuntu_tutorials.sh

ENV CUDNN_VERSION=7.5.1.10
ENV CUDNN_VERSION=7.6.0.64
COPY install/ubuntu_cudnn.sh /work/
RUN /work/ubuntu_cudnn.sh

Expand Down
2 changes: 1 addition & 1 deletion ci/docker/Dockerfile.build.ubuntu_gpu_cu92
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ RUN /work/ubuntu_docs.sh
COPY install/ubuntu_tutorials.sh /work/
RUN /work/ubuntu_tutorials.sh

ENV CUDNN_VERSION=7.5.1.10
ENV CUDNN_VERSION=7.6.0.64
COPY install/ubuntu_cudnn.sh /work/
RUN /work/ubuntu_cudnn.sh

Expand Down
2 changes: 1 addition & 1 deletion ci/docker/Dockerfile.build.ubuntu_nightly_gpu
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ RUN /work/ubuntu_tutorials.sh
COPY install/ubuntu_nightly_tests.sh /work/
RUN /work/ubuntu_nightly_tests.sh

ENV CUDNN_VERSION=7.5.1.10
ENV CUDNN_VERSION=7.6.0.64
COPY install/ubuntu_cudnn.sh /work/
RUN /work/ubuntu_cudnn.sh

Expand Down
16 changes: 8 additions & 8 deletions tools/setup_gpu_build_tools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,20 +31,20 @@ if [[ $VARIANT == cu101* ]]; then
CUDA_VERSION='10.1.105-1'
CUDA_PATCH_VERSION='10.1.105-1'
LIBCUDA_VERSION='418.39-0ubuntu1'
LIBCUDNN_VERSION='7.5.1.10-1+cuda10.1'
LIBNCCL_VERSION='2.4.2-1+cuda10.1'
LIBCUDNN_VERSION='7.6.0.64-1+cuda10.1'
LIBNCCL_VERSION='2.4.7-1+cuda10.1'
elif [[ $VARIANT == cu100* ]]; then
CUDA_VERSION='10.0.130-1'
CUDA_PATCH_VERSION='10.0.130-1'
LIBCUDA_VERSION='410.48-0ubuntu1'
LIBCUDNN_VERSION='7.5.1.10-1+cuda10.0'
LIBNCCL_VERSION='2.4.2-1+cuda10.0'
LIBCUDNN_VERSION='7.6.0.64-1+cuda10.0'
LIBNCCL_VERSION='2.4.7-1+cuda10.0'
elif [[ $VARIANT == cu92* ]]; then
CUDA_VERSION='9.2.148-1'
CUDA_PATCH_VERSION='9.2.148.1-1'
LIBCUDA_VERSION='396.44-0ubuntu1'
LIBCUDNN_VERSION='7.5.1.10-1+cuda9.2'
LIBNCCL_VERSION='2.4.2-1+cuda9.2'
LIBCUDNN_VERSION='7.6.0.64-1+cuda9.2'
LIBNCCL_VERSION='2.4.7-1+cuda9.2'
elif [[ $VARIANT == cu91* ]]; then
CUDA_VERSION='9.1.85-1'
CUDA_PATCH_VERSION='9.1.85.3-1'
Expand All @@ -55,8 +55,8 @@ elif [[ $VARIANT == cu90* ]]; then
CUDA_VERSION='9.0.176-1'
CUDA_PATCH_VERSION='9.0.176.3-1'
LIBCUDA_VERSION='384.145-0ubuntu1'
LIBCUDNN_VERSION='7.5.1.10-1+cuda9.0'
LIBNCCL_VERSION='2.4.2-1+cuda9.0'
LIBCUDNN_VERSION='7.6.0.64-1+cuda9.0'
LIBNCCL_VERSION='2.4.7-1+cuda9.0'
elif [[ $VARIANT == cu80* ]]; then
CUDA_VERSION='8.0.61-1'
CUDA_PATCH_VERSION='8.0.61.2-1'
Expand Down

0 comments on commit 3ed6d74

Please sign in to comment.