Skip to content

Commit 405f619

Browse files
committed
fix: Revert to TRT 8.6.0
1 parent 5f86d5f commit 405f619

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

.circleci/config.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -203,10 +203,10 @@ commands:
203203
default: "8.8.0.121"
204204
trt-version-short:
205205
type: string
206-
default: "8.6.1"
206+
default: "8.6.0"
207207
trt-version-long:
208208
type: string
209-
default: "8.6.1.6-1"
209+
default: "8.6.0.12-1"
210210
bazel-version:
211211
type: string
212212
default: "5.2.0"
@@ -249,7 +249,7 @@ commands:
249249
parameters:
250250
trt-version-long:
251251
type: string
252-
default: "8.6.1"
252+
default: "8.6.0"
253253
cudnn-version-long:
254254
type: string
255255
default: "8.8.0.121"
@@ -1317,10 +1317,10 @@ parameters:
13171317
default: "8.8.0.121"
13181318
trt-version-short:
13191319
type: string
1320-
default: "8.6.1"
1320+
default: "8.6.0"
13211321
trt-version-long:
13221322
type: string
1323-
default: "8.6.1"
1323+
default: "8.6.0"
13241324

13251325
# Jetson platform config
13261326
torch-jetson-build:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ These are the following dependencies used to verify the testcases. Torch-TensorR
119119
- Libtorch 2.1.0.dev20230419 (built with CUDA 11.8)
120120
- CUDA 11.8
121121
- cuDNN 8.8.0
122-
- TensorRT 8.6.1
122+
- TensorRT 8.6.0
123123

124124
## Prebuilt Binaries and Wheel files
125125

WORKSPACE

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,10 +81,10 @@ http_archive(
8181
http_archive(
8282
name = "tensorrt",
8383
build_file = "@//third_party/tensorrt/archive:BUILD",
84-
sha256 = "15bfe6053d45feec45ecc7123a9106076b0b43fa0435f242d89dca0778337759",
85-
strip_prefix = "TensorRT-8.6.1.6",
84+
sha256 = "c1732a1093c57ab79fa0b687f061be369e449c9c17792b660f3663ecd8fa7b63",
85+
strip_prefix = "TensorRT-8.6.0.12",
8686
urls = [
87-
"https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/secure/8.6.1/tars/TensorRT-8.6.1.6.Linux.x86_64-gnu.cuda-11.8.tar.gz",
87+
"https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/secure/8.6.0/tars/TensorRT-8.6.0.12.Linux.x86_64-gnu.cuda-11.8.tar.gz",
8888
],
8989
)
9090

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.8 and TensorRT 8.6.0
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.0 --build-arg CUDNN_VERSION=8.8 -f docker/Dockerfile -t torch_tensorrt:latest .
2828
```
2929

3030
Run:

py/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ pybind11==2.6.2
55
torch==2.1.0.dev20230419+cu118
66
torchvision==0.16.0.dev20230419+cu118
77
--extra-index-url https://pypi.ngc.nvidia.com
8-
tensorrt==8.6.1
8+
tensorrt==8.6.0

py/torch_tensorrt/fx/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ FX2TRT is merged as FX module in Torch-TensorRT
1212
$ conda install pytorch torchvision torchtext cudatoolkit=11.8 -c pytorch-nightly
1313
# Install TensorRT python package
1414
$ pip3 install nvidia-pyindex
15-
$ pip3 install tensorrt==8.6.1
15+
$ pip3 install tensorrt==8.6.0
1616
$ git clone https://github.com/pytorch/TensorRT.git
1717
$ cd TensorRT/py && python setup.py install --fx-only && cd ..
1818
$ python -c "import torch_tensorrt.fx"

0 commit comments

Comments
 (0)