Skip to content

Commit 51a737e

Browse files
committed
Downgrade to CuDNN 8.8.1
1 parent f0f1df3 commit 51a737e

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

.circleci/config.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ commands:
9494
- << parameters.install-dir >>
9595

9696
install-cudnn:
97-
description: "Install CUDNN 8.9.1"
97+
description: "Install CUDNN 8.8.1"
9898
parameters:
9999
os:
100100
type: string
@@ -104,7 +104,7 @@ commands:
104104
default: "x86_64"
105105
cudnn-version:
106106
type: string
107-
default: "8.9.1.23"
107+
default: "8.8.1.3"
108108
cuda-version:
109109
type: string
110110
default: "cuda12.1"
@@ -183,7 +183,7 @@ commands:
183183
default: "cuda12.0"
184184
cudnn-version:
185185
type: string
186-
default: "8.9.1.23"
186+
default: "8.8.1.3"
187187
trt-version-short:
188188
type: string
189189
default: "8.6.1"
@@ -235,7 +235,7 @@ commands:
235235
default: "8.6.1"
236236
cudnn-version-long:
237237
type: string
238-
default: "8.9.1.23"
238+
default: "8.8.1.3"
239239
steps:
240240
- run:
241241
name: Set up python environment
@@ -1356,7 +1356,7 @@ parameters:
13561356
default: true
13571357
cudnn-version:
13581358
type: string
1359-
default: "8.9.1.23"
1359+
default: "8.8.1.3"
13601360
trt-version-short:
13611361
type: string
13621362
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 5.2.0
119119
- Libtorch 2.1.0.dev20230613 (built with CUDA 12.1)
120120
- CUDA 12.1
121-
- cuDNN 8.9.1
121+
- cuDNN 8.8.1
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 = "35163c5c542be0c511738b27e25235193cbeedc5e0e006e44b1cdeaf1922e83e",
75-
strip_prefix = "cudnn-linux-x86_64-8.9.1.23_cuda12-archive",
74+
sha256 = "79d77a769c7e7175abc7b5c2ed5c494148c0618a864138722c887f95c623777c",
75+
strip_prefix = "cudnn-linux-x86_64-8.8.1.3_cuda12-archive",
7676
urls = [
77-
"https://developer.nvidia.com/downloads/compute/cudnn/secure/8.9.1/local_installers/12.x/cudnn-linux-x86_64-8.9.1.23_cuda12-archive.tar.xz",
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",
7878
],
7979
)
8080

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.9 and TensorRT 8.6
20+
- The example below uses CUDNN 8.8 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.9 -f docker/Dockerfile -t torch_tensorrt:latest .
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 .
2828
```
2929

3030
Run:

py/versions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
__version__ = "1.5.0.dev0"
22
__cuda_version__ = "12.1"
3-
__cudnn_version__ = "8.9"
3+
__cudnn_version__ = "8.8"
44
__tensorrt_version__ = "8.6"

0 commit comments

Comments
 (0)