File tree 6 files changed +13
-13
lines changed
6 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -203,10 +203,10 @@ commands:
203
203
default : " 8.8.0.121"
204
204
trt-version-short :
205
205
type : string
206
- default : " 8.6.1 "
206
+ default : " 8.6.0 "
207
207
trt-version-long :
208
208
type : string
209
- default : " 8.6.1.6 -1"
209
+ default : " 8.6.0.12 -1"
210
210
bazel-version :
211
211
type : string
212
212
default : " 5.2.0"
@@ -249,7 +249,7 @@ commands:
249
249
parameters :
250
250
trt-version-long :
251
251
type : string
252
- default : " 8.6.1 "
252
+ default : " 8.6.0 "
253
253
cudnn-version-long :
254
254
type : string
255
255
default : " 8.8.0.121"
@@ -1317,10 +1317,10 @@ parameters:
1317
1317
default : " 8.8.0.121"
1318
1318
trt-version-short :
1319
1319
type : string
1320
- default : " 8.6.1 "
1320
+ default : " 8.6.0 "
1321
1321
trt-version-long :
1322
1322
type : string
1323
- default : " 8.6.1 "
1323
+ default : " 8.6.0 "
1324
1324
1325
1325
# Jetson platform config
1326
1326
torch-jetson-build :
Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ These are the following dependencies used to verify the testcases. Torch-TensorR
119
119
- Libtorch 2.1.0.dev20230419 (built with CUDA 11.8)
120
120
- CUDA 11.8
121
121
- cuDNN 8.8.0
122
- - TensorRT 8.6.1
122
+ - TensorRT 8.6.0
123
123
124
124
## Prebuilt Binaries and Wheel files
125
125
Original file line number Diff line number Diff line change @@ -81,10 +81,10 @@ http_archive(
81
81
http_archive (
82
82
name = "tensorrt" ,
83
83
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 " ,
86
86
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" ,
88
88
],
89
89
)
90
90
Original file line number Diff line number Diff line change @@ -5,10 +5,10 @@ ENV BASE_IMG=nvidia/cuda:11.8.0-devel-ubuntu22.04
5
5
6
6
ARG TENSORRT_VERSION
7
7
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)
9
9
ARG CUDNN_VERSION
10
10
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)
12
12
13
13
ARG PYTHON_VERSION=3.10
14
14
ENV PYTHON_VERSION=${PYTHON_VERSION}
Original file line number Diff line number Diff line change @@ -5,4 +5,4 @@ pybind11==2.6.2
5
5
torch == 2.1.0.dev20230419+cu118
6
6
torchvision == 0.16.0.dev20230419+cu118
7
7
--extra-index-url https://pypi.ngc.nvidia.com
8
- tensorrt == 8.6.1
8
+ tensorrt == 8.6.0
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ FX2TRT is merged as FX module in Torch-TensorRT
12
12
$ conda install pytorch torchvision torchtext cudatoolkit=11.8 -c pytorch-nightly
13
13
# Install TensorRT python package
14
14
$ pip3 install nvidia-pyindex
15
- $ pip3 install tensorrt==8.6.1
15
+ $ pip3 install tensorrt==8.6.0
16
16
$ git clone https://github.com/pytorch/TensorRT.git
17
17
$ cd TensorRT/py && python setup.py install --fx-only && cd ..
18
18
$ python -c "import torch_tensorrt.fx"
You can’t perform that action at this time.
0 commit comments