TRTEXEC with Faster RCNN
The trtexec
tool is a command-line wrapper included as part of the TensorRT samples.
TAO 5.0.0 exposes the trtexec
tool in the TAO Deploy
container (or task group when run via launcher)
for deploying the model with an x86-based CPU and discrete GPUs. To run trtexec
on other platforms, such as
Jetson devices, or with versions of TensorRT that are not used by default in the TAO containers, you can follow the
official TensorRT documentation on how to get trtexec.
This section describes how to generate a TensorRT engine using trtexec
, which allows you to deploy TAO-trained
models on TensorRT, Triton, and Deepstream.
To generate an .onnx
file for Faster RCNN, refer to the Faster RCNN documentation.
You can also refer to Faster RCNN TAO-Deploy documentation
for instructions on generating an INT8 calibration file.
trtexec --onnx=/path/to/model.onnx \
--maxShapes=input_image:16x3x544x960 \
--minShapes=input_image:1x3x544x960 \
--optShapes=input_image:8x3x544x960 \
--calib=/path/to/int8/calib.txt \
--fp16 \
--int8 \
--saveEngine=/path/to/save/trt/model.engine