Once you have cloned the repository, you can build the parser libraries and executables by running:
cd onnx-tensorrt
mkdir build && cd build
cmake .. -DTENSORRT_ROOT=<path_to_trt> && make -j
// Ensure that you update your LD_LIBRARY_PATH to pick up the location of the newly built library:
export LD_LIBRARY_PATH=$PWD:$LD_LIBRARY_PATH
Executable Usage
ONNX models can be converted to serialized TensorRT engines using the onnx2trt executable:
onnx2trt my_model.onnx -o my_engine.trt
ONNX models can also be converted to human-readable text:
onnx2trt my_model.onnx -t my_model.onnx.txt
ONNX models can also be optimized by ONNX’s optimization libraries (added by dsandler).
To optimize an ONNX model and output a new one use -m to specify the output model name and -O to specify a semicolon-separated list of optimization passes to apply:
TensorRT Backend For ONNX
Parses ONNX models for execution with TensorRT.
See also the TensorRT documentation.
For the list of recent changes, see the changelog.
For a list of commonly seen issues and questions, see the FAQ.
Supported TensorRT Versions
Development on the Master branch is for the latest version of TensorRT 7.2.2 with full-dimensions and dynamic shape support.
For previous versions of TensorRT, refer to their respective branches.
Full Dimensions + Dynamic Shapes
Building INetwork objects in full dimensions mode with dynamic shape support requires calling the following API:
C++
Python
For examples of usage of these APIs see:
Supported Operators
Current supported ONNX operators are found in the operator support matrix.
Installation
Dependencies
Building
For building within docker, we recommend using and setting up the docker containers as instructed in the main (TensorRT repository)[https://github.com/NVIDIA/TensorRT#setting-up-the-build-environment] to build the onnx-tensorrt library.
Once you have cloned the repository, you can build the parser libraries and executables by running:
Executable Usage
ONNX models can be converted to serialized TensorRT engines using the
onnx2trtexecutable:ONNX models can also be converted to human-readable text:
ONNX models can also be optimized by ONNX’s optimization libraries (added by dsandler). To optimize an ONNX model and output a new one use
-mto specify the output model name and-Oto specify a semicolon-separated list of optimization passes to apply:See more all available optimization passes by running:
See more usage information by running:
Python Modules
Python bindings for the ONNX-TensorRT parser are packaged in the shipped
.whlfiles. Install them withTensorRT 7.2.2 supports ONNX release 1.6.0. Install it with:
The ONNX-TensorRT backend can be installed by running:
ONNX-TensorRT Python Backend Usage
The TensorRT backend for ONNX can be used in Python as follows:
C++ Library Usage
The model parser library, libnvonnxparser.so, has its C++ API declared in this header:
Tests
After installation (or inside the Docker container), ONNX backend tests can be run as follows:
Real model tests only:
All tests:
You can use
-vflag to make output more verbose.Pre-trained Models
Pre-trained models in ONNX format can be found at the ONNX Model Zoo