Trtexec not found on AGX Orin Dev Kit

Please provide complete information as applicable to your setup.

• Hardware Platform (Jetson / GPU): Jetson AGX Orin Dev Kit
• DeepStream Version: 6.3
• JetPack Version (valid for Jetson only): 5.1.2
• TensorRT Version: 8.5.2
• NVIDIA GPU Driver Version (valid for GPU only): R35.6.0
• Issue Type( questions, new requirements, bugs):
• How to reproduce the issue ? (This is for bugs. Including which sample app is using, the configuration files content, the command line used and other details for reproducing)
• Requirement details( This is for new requirement. Including the module name-for which plugin or for which sample application, the function description)

Problem: Trying to convert an ONNX file to TensorRT Engine using trtexec. There is no /usr/src/tensorrt directory and it is not found running sudo find / -name trtexec

on Jetpack 6.2 it is in libnvinfer-bin and I’d imagine it was back in 5.1.2 .

sudo apt install libnvinfer-bin

will install it here.
/usr/src/tensorrt/bin/trtexec

1 Like

Hi,

Please check if you have installed TensorRT on your device:

 $ sudo apt install nvidia-tensorrt-dev

Thanks.