Skip to content

Commit 135029e

Browse files
committed
fix: Revert to TRT 8.6.0
1 parent 5f86d5f commit 135029e

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

Diff for: .circleci/config.yml

+5-5
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:

Diff for: README.md

+1-1
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

Diff for: WORKSPACE

+3-3
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

Diff for: docker/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ ENV BASE_IMG=nvidia/cuda:11.8.0-devel-ubuntu22.04
55

66
ARG TENSORRT_VERSION
77
ENV TENSORRT_VERSION=${TENSORRT_VERSION}
8-
RUN test -n "$TENSORRT_VERSION" || (echo "No tensorrt version specified, please use --build-arg TENSORRT_VERSION=x.y.z to specify a version." && exit 1)
8+
RUN test -n "$TENSORRT_VERSION" || (echo "No tensorrt version specified, please use --build-arg TENSORRT_VERSION=x.y to specify a version." && exit 1)
99
ARG CUDNN_VERSION
1010
ENV CUDNN_VERSION=${CUDNN_VERSION}
11-
RUN test -n "$CUDNN_VERSION" || (echo "No cudnn version specified, please use --build-arg CUDNN_VERSION=x.y.z to specify a version." && exit 1)
11+
RUN test -n "$CUDNN_VERSION" || (echo "No cudnn version specified, please use --build-arg CUDNN_VERSION=x.y to specify a version." && exit 1)
1212

1313
ARG PYTHON_VERSION=3.10
1414
ENV PYTHON_VERSION=${PYTHON_VERSION}

Diff for: py/requirements.txt

+1-1
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

Diff for: py/torch_tensorrt/fx/README.md

+1-1
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)