Skip to content

Commit 3892498

Browse files
committed
Merge branch 'readme' into 'release/1.0'
chore: Fix python jetson installation instruction See merge request adlsa/TRTorch!23
2 parents 38685a0 + 62bdc45 commit 3892498

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

py/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,14 @@ results = compiled_trt_model(data.half())
3333

3434
| ABI / Platform | Installation command |
3535
| --------------------------------------- | ------------------------------------------------------------ |
36-
| Pre CXX11 ABI (Linux x86_64) | python3 setup.py install --release |
37-
| CXX ABI (Linux x86_64) | python3 setup.py install --use-cxx11-abi --release |
38-
| Pre CXX11 ABI (Jetson platform aarch64) | python3 setup.py install --release --jetpack-version 4.6 |
39-
| CXX11 ABI (Jetson platform aarch64) | python3 setup.py install --release --jetpack-version 4.6 --use-cxx11-abi |
36+
| Pre CXX11 ABI (Linux x86_64) | python3 setup.py install |
37+
| CXX ABI (Linux x86_64) | python3 setup.py install --use-cxx11-abi |
38+
| Pre CXX11 ABI (Jetson platform aarch64) | python3 setup.py install --jetpack-version 4.6 |
39+
| CXX11 ABI (Jetson platform aarch64) | python3 setup.py install --jetpack-version 4.6 --use-cxx11-abi |
4040

41-
For Linux x86_64 platform, Pytorch libraries default to pre cxx11 abi. So, please use `python3 setup.py install --release`.
41+
For Linux x86_64 platform, Pytorch libraries default to pre cxx11 abi. So, please use `python3 setup.py install`.
4242

43-
On Jetson platforms, NVIDIA hosts <a href="https://forums.developer.nvidia.com/t/pytorch-for-jetson-version-1-10-now-available/72048">pre-built Pytorch wheel files</a>. These wheel files are built with CXX11 ABI. So on jetson platforms, please use `python3 setup.py install --release --jetpack-version 4.6`
43+
On Jetson platforms, NVIDIA hosts <a href="https://forums.developer.nvidia.com/t/pytorch-for-jetson-version-1-10-now-available/72048">pre-built Pytorch wheel files</a>. These wheel files are built with CXX11 ABI. So on jetson platforms, please use `python3 setup.py install --jetpack-version 4.6 --use-cxx11-abi`
4444

4545
## Under the Hood
4646

0 commit comments

Comments
 (0)