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
+44-10
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ You can skip the **Build** section to enjoy TensorRT with Python.
26
26
To build the TensorRT-OSS components, you will first need the following software packages.
27
27
28
28
**TensorRT GA build**
29
-
* TensorRT v10.0.0.6
29
+
* TensorRT v10.0.1.6
30
30
* Available from direct download links listed below
31
31
32
32
**System Packages**
@@ -73,16 +73,16 @@ To build the TensorRT-OSS components, you will first need the following software
73
73
If using the TensorRT OSS build container, TensorRT libraries are preinstalled under `/usr/lib/x86_64-linux-gnu` and you may skip this step.
74
74
75
75
Else download and extract the TensorRT GA build from [NVIDIA Developer Zone](https://developer.nvidia.com) with the direct links below:
76
-
-[TensorRT 10.0.0.6 for CUDA 11.8, Linux x86_64](https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.0.0/tars/TensorRT-10.0.0.6.Linux.x86_64-gnu.cuda-11.8.tar.gz)
77
-
-[TensorRT 10.0.0.6 for CUDA 12.4, Linux x86_64](https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.0.0/tars/TensorRT-10.0.0.6.Linux.x86_64-gnu.cuda-12.4.tar.gz)
76
+
-[TensorRT 10.0.1.6 for CUDA 11.8, Linux x86_64](https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.0.1/tars/TensorRT-10.0.1.6.Linux.x86_64-gnu.cuda-11.8.tar.gz)
77
+
-[TensorRT 10.0.1.6 for CUDA 12.4, Linux x86_64](https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.0.1/tars/TensorRT-10.0.1.6.Linux.x86_64-gnu.cuda-12.4.tar.gz)
78
78
79
79
80
80
**Example: Ubuntu 20.04 on x86-64 with cuda-12.4**
81
81
82
82
```bash
83
83
cd~/Downloads
84
-
tar -xvzf TensorRT-10.0.0.6.Linux.x86_64-gnu.cuda-12.4.tar.gz
85
-
export TRT_LIBPATH=`pwd`/TensorRT-10.0.0.6
84
+
tar -xvzf TensorRT-10.0.1.6.Linux.x86_64-gnu.cuda-12.4.tar.gz
85
+
export TRT_LIBPATH=`pwd`/TensorRT-10.0.1.6
86
86
```
87
87
88
88
## Setting Up The Build Environment
@@ -92,16 +92,27 @@ For Linux platforms, we recommend that you generate a docker container for build
92
92
1. #### Generate the TensorRT-OSS build container.
93
93
The TensorRT-OSS build container can be generated using the supplied Dockerfiles and build scripts. The build containers are configured for building TensorRT OSS out-of-the-box.
94
94
95
-
**Example: Ubuntu 20.04 on x86-64 with cuda-12.3.2 (default)**
95
+
**Example: Ubuntu 20.04 on x86-64 with cuda-12.4 (default)**
0 commit comments