This guide shows how to cross compile TensorRT samples for AArch64 QNX and Linux platform under x86_64 Linux.
Install the CUDA cross-platform toolkit for the the corresponding target, and set the environment variable CUDA_INSTALL_DIR
export CUDA_INSTALL_DIR="your cuda install dir"
CUDA_INSTALL_DIR
is set to /usr/local/cuda
by default.
Install the cuDNN cross-platform libraries for the corresponding target, and set the environment variable CUDNN_INSTALL_DIR
export CUDNN_INSTALL_DIR="your cudnn install dir"
CUDNN_INSTALL_DIR
is set to CUDA_INSTALL_DIR
by default.
Install the TensorRT cross compilation debian packages for the corresponding target.
If you are using the tar file released by the TensorRT team, you can safely skip this step. The tar file release already includes the cross compile libraries so no additional packages are required.
Download the QNX toolchain and export the following environment variables.
export QNX_HOST=/path/to/your/qnx/toolchains/host/linux/x86_64
export QNX_TARGET=/path/to/your/qnx/toolchain/target/qnx7
Build samples via
cd /path/to/TensorRT/samples
make TARGET=qnx
Sample compilation for Linux aarch64 needs the corresponding g++ compiler, aarch64-linux-gnu-g++
. In Ubuntu, this can be installed via
sudo apt-get install g++-aarch64-linux-gnu
Build samples via
cd /path/to/TensorRT/samples
make TARGET=aarch64