Skip to content

Commit 53b90f2

Browse files
committed
fix: Upgrade CudNN to 8.9
1 parent 2549edb commit 53b90f2

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

.circleci/config.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ commands:
109109
sudo docker run --rm --runtime=nvidia --gpus all nvidia/cuda:11.6.2-base-ubuntu20.04 nvidia-smi
110110
111111
install-cudnn:
112-
description: "Install CUDNN 8.8.1"
112+
description: "Install CUDNN 8.9.5"
113113
parameters:
114114
os:
115115
type: string
@@ -119,7 +119,7 @@ commands:
119119
default: "x86_64"
120120
cudnn-version:
121121
type: string
122-
default: "8.8.1.3"
122+
default: "8.9.5.30"
123123
cuda-version:
124124
type: string
125125
default: "cuda12.0"
@@ -198,7 +198,7 @@ commands:
198198
default: "cuda12.0"
199199
cudnn-version:
200200
type: string
201-
default: "8.8.1.3"
201+
default: "8.9.5.30"
202202
trt-version-short:
203203
type: string
204204
default: "8.6.1"
@@ -246,7 +246,7 @@ commands:
246246
default: "8.6.1"
247247
cudnn-version-long:
248248
type: string
249-
default: "8.8.1.3"
249+
default: "8.9.5.30"
250250
steps:
251251
- run:
252252
name: Set up python environment
@@ -1460,7 +1460,7 @@ parameters:
14601460
default: "https://download.pytorch.org/whl/nightly/cu121"
14611461
cudnn-version:
14621462
type: string
1463-
default: "8.8.1.3"
1463+
default: "8.9.5.30"
14641464
trt-version-short:
14651465
type: string
14661466
default: "8.6.1"
@@ -1483,7 +1483,7 @@ parameters:
14831483
default: "https://download.pytorch.org/whl/cu117"
14841484
cudnn-version-legacy:
14851485
type: string
1486-
default: "8.8.1.3"
1486+
default: "8.9.5.30"
14871487
trt-version-short-legacy:
14881488
type: string
14891489
default: "8.6.1"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ These are the following dependencies used to verify the testcases. Torch-TensorR
118118
- Bazel 6.2.1
119119
- Libtorch 2.1.0
120120
- CUDA 12.1
121-
- cuDNN 8.8.1
121+
- cuDNN 8.9.5
122122
- TensorRT 8.6.1
123123

124124
## Prebuilt Binaries and Wheel files

WORKSPACE

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,10 @@ http_archive(
7171
http_archive(
7272
name = "cudnn",
7373
build_file = "@//third_party/cudnn/archive:BUILD",
74-
sha256 = "79d77a769c7e7175abc7b5c2ed5c494148c0618a864138722c887f95c623777c",
75-
strip_prefix = "cudnn-linux-x86_64-8.8.1.3_cuda12-archive",
74+
sha256 = "2a2eb89a2ab51071151c6082f1e816c702167a711a9372f9f73a7b5c4b06e01a",
75+
strip_prefix = "cudnn-linux-x86_64-8.9.5.30_cuda12-archive",
7676
urls = [
77-
"https://developer.nvidia.com/downloads/compute/cudnn/secure/8.8.1/local_installers/12.0/cudnn-linux-x86_64-8.8.1.3_cuda12-archive.tar.xz",
77+
"https://developer.nvidia.com/downloads/compute/cudnn/secure/8.9.5/local_installers/12.x/cudnn-linux-x86_64-8.9.5.30_cuda12-archive.tar.xz",
7878
],
7979
)
8080

dev_dep_versions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
__cuda_version__: "12.1"
2-
__cudnn_version__: "8.8"
2+
__cudnn_version__: "8.9"
33
__tensorrt_version__: "8.6"

docker/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ Note: By default the container uses the `pre-cxx11-abi` version of Torch + Torch
1717

1818
### Instructions
1919

20-
- The example below uses CUDNN 8.8 and TensorRT 8.6
20+
- The example below uses CUDNN 8.9 and TensorRT 8.6
2121
- See <a href="https://github.com/pytorch/TensorRT#dependencies">dependencies</a> for a list of current default dependencies.
2222

2323
> From root of Torch-TensorRT repo
2424
2525
Build:
2626
```
27-
DOCKER_BUILDKIT=1 docker build --build-arg TENSORRT_VERSION=8.6 --build-arg CUDNN_VERSION=8.8 -f docker/Dockerfile -t torch_tensorrt:latest .
27+
DOCKER_BUILDKIT=1 docker build --build-arg TENSORRT_VERSION=8.6 --build-arg CUDNN_VERSION=8.9 -f docker/Dockerfile -t torch_tensorrt:latest .
2828
```
2929

3030
Run:

0 commit comments

Comments
 (0)