You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -116,10 +116,10 @@ torch.jit.save(trt_ts_module, "trt_torchscript_module.ts") # save the TRT embedd
116
116
These are the following dependencies used to verify the testcases. Torch-TensorRT can work with other versions, but the tests are not guaranteed to pass.
117
117
118
118
- Bazel 5.2.0
119
-
- Libtorch 2.1.0.dev20230314 (built with CUDA 11.7)
120
-
- CUDA 11.7
121
-
- cuDNN 8.5.0
122
-
- TensorRT 8.5.1.7
119
+
- Libtorch 2.1.0.dev20230419 (built with CUDA 11.8)
120
+
- CUDA 11.8
121
+
- cuDNN 8.8.0
122
+
- TensorRT 8.6.0
123
123
124
124
## Prebuilt Binaries and Wheel files
125
125
@@ -247,7 +247,7 @@ A tarball with the include files and library can then be found in bazel-bin
247
247
### Running Torch-TensorRT on a JIT Graph
248
248
249
249
> Make sure to add LibTorch to your LD_LIBRARY_PATH <br>
Copy file name to clipboardExpand all lines: docker/Dockerfile
+4-4
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,14 @@
1
1
# Base image starts with CUDA
2
-
ARG BASE_IMG=nvidia/cuda:11.7.1-devel-ubuntu22.04
2
+
ARG BASE_IMG=nvidia/cuda:11.8.0-devel-ubuntu22.04
3
3
FROM ${BASE_IMG} as base
4
-
ENV BASE_IMG=nvidia/cuda:11.7.1-devel-ubuntu22.04
4
+
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)
Copy file name to clipboardExpand all lines: docker/README.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@
4
4
5
5
* The `Dockerfile` currently uses <ahref="https://github.com/bazelbuild/bazelisk">Bazelisk</a> to select the Bazel version, and uses the exact library versions of Torch and CUDA listed in <ahref="https://github.com/pytorch/TensorRT#dependencies">dependencies</a>.
6
6
* The desired versions of CUDNN and TensorRT must be specified as build-args, with major and minor versions as in: `--build-arg TENSORRT_VERSION=a.b --build-arg CUDNN_VERSION=x.y`
7
-
*[**Optional**] The desired base image be changed by explicitly setting a base image, as in `--build-arg BASE_IMG=nvidia/cuda:11.7.1-devel-ubuntu22.04`, though this is optional
7
+
*[**Optional**] The desired base image be changed by explicitly setting a base image, as in `--build-arg BASE_IMG=nvidia/cuda:11.8.0-devel-ubuntu22.04`, though this is optional
8
8
*[**Optional**] Additionally, the desired Python version can be changed by explicitly setting a version, as in `--build-arg PYTHON_VERSION=3.10`, though this is optional as well.
9
9
10
10
* This `Dockerfile` installs `pre-cxx11-abi` versions of Pytorch and builds Torch-TRT using `pre-cxx11-abi` libtorch as well.
@@ -17,14 +17,14 @@ Note: By default the container uses the `pre-cxx11-abi` version of Torch + Torch
17
17
18
18
### Instructions
19
19
20
-
- The example below uses CUDNN 8.5 and TensorRT 8.5
20
+
- The example below uses CUDNN 8.8 and TensorRT 8.6
21
21
- See <ahref="https://github.com/pytorch/TensorRT#dependencies">dependencies</a> for a list of current default dependencies.
0 commit comments