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: docsrc/RELEASE_CHECKLIST.md
+1-2
Original file line number
Diff line number
Diff line change
@@ -63,9 +63,8 @@ will result in a minor version bump and significant bug fixes will result in a p
63
63
- Paste in Milestone information and Changelog information into release notes
64
64
- Generate libtorchtrt.tar.gz for the following platforms:
65
65
- x86_64 cxx11-abi
66
-
- x86_64 pre-cxx11-abi
67
66
- TODO: Add cxx11-abi build for aarch64 when a manylinux container for aarch64 exists
68
-
- Generate Python packages for Python 3.6/3.7/3.8/3.9 for x86_64
67
+
- Generate Python packages for supported Python versions for x86_64
69
68
- TODO: Build a manylinux container for aarch64
70
69
-`docker run -it -v$(pwd)/..:/workspace/Torch-TensorRT build_torch_tensorrt_wheel /bin/bash /workspace/Torch-TensorRT/py/build_whl.sh` generates all wheels
71
70
- To build container `docker build -t build_torch_tensorrt_wheel .`
Copy file name to clipboardExpand all lines: docsrc/user_guide/runtime.rst
-2
Original file line number
Diff line number
Diff line change
@@ -22,8 +22,6 @@ link ``libtorchtrt_runtime.so`` in your deployment programs or use ``DL_OPEN`` o
22
22
you can load the runtime with ``torch.ops.load_library("libtorchtrt_runtime.so")``. You can then continue to use
23
23
programs just as you would otherwise via PyTorch API.
24
24
25
-
.. note:: If you are using the standard distribution of PyTorch in Python on x86, likely you will need the pre-cxx11-abi variant of ``libtorchtrt_runtime.so``, check :ref:`Installation` documentation for more details.
26
-
27
25
.. note:: If you are linking ``libtorchtrt_runtime.so``, likely using the following flags will help ``-Wl,--no-as-needed -ltorchtrt -Wl,--as-needed`` as there's no direct symbol dependency to anything in the Torch-TensorRT runtime for most Torch-TensorRT runtime applications
28
26
29
27
An example of how to use ``libtorchtrt_runtime.so`` can be found here: https://github.com/pytorch/TensorRT/tree/master/examples/torchtrt_runtime_example
0 commit comments