This repository contains Python code (trex
package) to explore various aspects of a TensorRT engine plan and its associated inference profiling data.
An engine plan file is a serialized TensorRT engine format. It contains information about the final inference graph and can be deserialized for inference runtime execution. An engine plan is specific to the hardware and software versions of the system used to build the engine.
trex
is useful for initial model performance debugging, visualization of plan graphs, and for understanding the characteristics of an engine plan. For in-depth performance analysis, Nvidia ® Nsight Systems ™ is the recommended performance analysis tool.
The trex
package contains an API and Jupyter notebooks for viewing and inspecting TensorRT engine-plan files and profiling data.
- An engine plan graph (JSON) is loaded to a Pandas dataframe which allows slicing, querying, filtering, viewing and diagraming.
- An engine plan graph can be visualized as SVG/PNG files.
- Layer linters are an API for flagging potential performance hazards (preview feature).
- Four Jupyter notebooks provide:
- An introduction to
trex
tutorial. trex
API examples.- Detailed engine plan performance, characteristics and structure analysis.
- Comparison of two or more engine plans.
- An introduction to
- Because
trex
operates on JSON input files, it does not require a GPU.
When trtexec
times individual layers, the total engine latency (computed by summing the average latency of each layer) is higher than the latency reported for the entire engine. This is due to per-layer measurement overheads.
To measure per-layer execution times, when trtexec
enqueues kernel layers for execution in a stream, it places CUDA event objects between the layers to monitor the start and completion of each layer. These CUDA events add a small overhead which is more noticeable with smaller networks (shallow and narrow networks or networks with small activation data).
Starting with TensorRT 8.2, engine-plan graph and profiling data can be exported to JSON files. trex
supports TensortRT 8.2 and 8.4.
trex
has only been tested on Ubuntu 18.04 LTS, with Python 3.6.
trex
does not require a GPU, but generating the input JSON file(s) does require a GPU.
The instructions below detail how to use a Python3 virtualenv for installing and using trex (Python 3.6+ is required).
$ git clone https://github.com/NVIDIA/TensorRT.git
The commands listed below create and activate a Python virtual enviornment named env_trex
which is stored in a directory by the same name, and configures the current shell to use it as the default python environment.
$ cd TensorRT/tools/experimental/trt-engine-explorer
$ python3 -m virtualenv env_trex
$ source env_trex/bin/activate
$ python3 -m pip install -e .
$ jupyter nbextension enable widgetsnbextension --user --py
The typical trex
workflow is depicted below:
- Convert an external model to a TensorRT
INetworkDefinition
. - Build a TensorRT engine.
- Profile the engine while creating the necessary JSON files.
- Explore the engine by loading the JSON files in a
trex
notebook.
The Python script utils/process_engine.py
implements this workflow for ONNX models:
- Use
trtexec
to import an ONNX model and create an engine. - Load the engine and create an engine-graph JSON file.
- Use
trtexec
to profile the engine's inference execution and store the results in an engine profiling JSON file. - Create an engine graph diagram in SVG format.
For more information see TensorRT Engine Inspector and the Tutorial notebook.
Launch the Jupyter notebook server as detailed below and open your browser at http://localhost:8888
or http://<your-ip-address>:8888
$ jupyter-notebook --ip=0.0.0.0 --no-browser
The TensorRT Engine Explorer license can be found in the LICENSE file.