Skip to content

Commit ee72466

Browse files
authored
update cuDNN to 8.9.2.26 for CUDA 12.1 (#1436)
1 parent b50bdf6 commit ee72466

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

CUDA_UPGRADE_GUIDE.MD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Here is the supported matrix for CUDA and CUDNN
1111
| --- | --- | --- |
1212
| 11.7 | 8.5.0.96 | Stable CUDA Release |
1313
| 11.8 | 8.7.0.84 | Latest CUDA Release |
14-
| 12.1 | 8.8.1.3 | Latest CUDA Nightly |
14+
| 12.1 | 8.9.2.26 | Latest CUDA Nightly |
1515

1616

1717
### B. Check the package availability

common/install_cuda.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ function install_118 {
3434
}
3535

3636
function install_121 {
37-
echo "Installing CUDA 12.1 and cuDNN 8.8 and NCCL 2.17.1"
37+
echo "Installing CUDA 12.1 and cuDNN 8.9 and NCCL 2.17.1"
3838
rm -rf /usr/local/cuda-12.1 /usr/local/cuda
3939
# install CUDA 12.1.0 in the same container
4040
wget -q https://developer.download.nvidia.com/compute/cuda/12.1.0/local_installers/cuda_12.1.0_530.30.02_linux.run
@@ -45,10 +45,10 @@ function install_121 {
4545

4646
# cuDNN license: https://developer.nvidia.com/cudnn/license_agreement
4747
mkdir tmp_cudnn && cd tmp_cudnn
48-
wget -q https://developer.download.nvidia.com/compute/cudnn/redist/cudnn/linux-x86_64/cudnn-linux-x86_64-8.8.1.3_cuda12-archive.tar.xz -O cudnn-linux-x86_64-8.8.1.3_cuda12-archive.tar.xz
49-
tar xf cudnn-linux-x86_64-8.8.1.3_cuda12-archive.tar.xz
50-
cp -a cudnn-linux-x86_64-8.8.1.3_cuda12-archive/include/* /usr/local/cuda/include/
51-
cp -a cudnn-linux-x86_64-8.8.1.3_cuda12-archive/lib/* /usr/local/cuda/lib64/
48+
wget -q https://developer.download.nvidia.com/compute/cudnn/redist/cudnn/linux-x86_64/cudnn-linux-x86_64-8.9.2.26_cuda12-archive.tar.xz -O cudnn-linux-x86_64-8.9.2.26_cuda12-archive.tar.xz
49+
tar xf cudnn-linux-x86_64-8.9.2.26_cuda12-archive.tar.xz
50+
cp -a cudnn-linux-x86_64-8.9.2.26_cuda12-archive/include/* /usr/local/cuda/include/
51+
cp -a cudnn-linux-x86_64-8.9.2.26_cuda12-archive/lib/* /usr/local/cuda/lib64/
5252
cd ..
5353
rm -rf tmp_cudnn
5454
ldconfig

windows/internal/cuda_install.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ if not exist "%SRC_DIR%\temp_build\%CUDA_INSTALL_EXE%" (
6262
set "ARGS=cuda_profiler_api_12.1 thrust_12.1 nvcc_12.1 cuobjdump_12.1 nvprune_12.1 nvprof_12.1 cupti_12.1 cublas_12.1 cublas_dev_12.1 cudart_12.1 cufft_12.1 cufft_dev_12.1 curand_12.1 curand_dev_12.1 cusolver_12.1 cusolver_dev_12.1 cusparse_12.1 cusparse_dev_12.1 npp_12.1 npp_dev_12.1 nvrtc_12.1 nvrtc_dev_12.1 nvml_dev_12.1 nvjitlink_12.1"
6363
)
6464

65-
set CUDNN_FOLDER=cudnn-windows-x86_64-8.8.1.3_cuda12-archive
65+
set CUDNN_FOLDER=cudnn-windows-x86_64-8.9.2.26_cuda12-archive
6666
set CUDNN_LIB_FOLDER="lib"
6767
set "CUDNN_INSTALL_ZIP=%CUDNN_FOLDER%.zip"
6868
if not exist "%SRC_DIR%\temp_build\%CUDNN_INSTALL_ZIP%" (

0 commit comments

Comments
 (0)