Skip to content

Commit f693a6d

Browse files
committed
README fixes
Signed-off-by: Rajeev Rao <[email protected]>
1 parent 275eefc commit f693a6d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ NOTE: Along with the TensorRT OSS components, the following source packages will
8787
git clone -b master https://github.com/nvidia/TensorRT TensorRT
8888
cd TensorRT
8989
git submodule update --init --recursive
90-
$Env:TRT_RELEASE_PATH = $(Get-Location)
90+
$Env:TRT_SOURCE = $(Get-Location)
9191
```
9292

9393
2. #### Download the TensorRT binary release.
@@ -147,15 +147,15 @@ NOTE: Along with the TensorRT OSS components, the following source packages will
147147
```powershell
148148
cd ~\Downloads
149149
Expand-Archive .\TensorRT-7.1.3.4.Windows10.x86_64.cuda-11.0.cudnn8.0.zip
150-
$Env:TRT_RELEASE_PATH = '$(Get-Location)\TensorRT-7.1.3.4'
150+
$Env:TRT_RELEASE = '$(Get-Location)\TensorRT-7.1.3.4'
151151
$Env:PATH += 'C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\MSBuild\15.0\Bin\'
152152
```
153153

154154
3. #### Download JetPack toolchain for cross-compilation.[OPTIONAL]
155155

156156
**JetPack example**
157157

158-
Using the SDK manager, download the host componets of the PDK version or Jetpack specified in the name of the Dockerfile. To do this:
158+
Using the SDK manager, download the host components of the PDK version or Jetpack specified in the name of the Dockerfile. To do this:
159159
1. [**SDK Manager Step 01**] Log into the SDK manager
160160
2. [**SDK Manager Step 02**] Select the correct platform and Target OS System (should be corresponding to the name of the Dockerfile you are building (e.g. Jetson AGX Xavier, `Linux Jetpack 4.4`), then click `Continue`
161161
3. [**SDK Manager Step 03**] Under `Download & Install Options` make note of or change the download folder **and Select Download now. Install later.** then agree to the license terms and click `Continue`
@@ -207,6 +207,7 @@ NOTE: Along with the TensorRT OSS components, the following source packages will
207207

208208
> NOTE: To run TensorRT/CUDA programs in the build container, install [NVIDIA Docker support](#prerequisites). Docker versions < 19.03 require `nvidia-docker2` and `--runtime=nvidia` flag for docker run commands. On versions >= 19.03, you need the `nvidia-container-toolkit` package and `--gpus all` flag.
209209

210+
210211
## Building The TensorRT OSS Components
211212

212213
* Generate Makefiles and build.
@@ -294,10 +295,10 @@ NOTE: Along with the TensorRT OSS components, the following source packages will
294295

295296
whl files for the TensorRT python API are in the `python` directory of the TensorRT release
296297

297-
*Example* install for python 3.6:
298+
*Example* install for python3:
298299

299300
```
300-
pip install $TRT_RELEASE/python/tensorrt-7.1.3.4-cp36-none-linux_x86_64.whl
301+
pip3 install $TRT_RELEASE/python/tensorrt-7.1.3.4-cp36-none-linux_x86_64.whl
301302
```
302303

303304
## Useful Resources
@@ -313,5 +314,4 @@ pip install $TRT_RELEASE/python/tensorrt-7.1.3.4-cp36-none-linux_x86_64.whl
313314
## Known Issues
314315

315316
#### TensorRT 7.1
316-
* [demo/BERT](demo/BERT) has a known accuracy regression for Volta GPUs; F1 score dropped (from 90 in TensorRT 7.0) to 85. A fix is underway.
317317
* See [Release Notes](https://docs.nvidia.com/deeplearning/tensorrt/release-notes/tensorrt-7.html#rel_7-1-3).

0 commit comments

Comments
 (0)