Aidge Export: TensorRT
The aim of this module is to provide an export to TensorRT SDK via the Aidge framework.
Known issue
Generation side
Issue related to the generation of the TensorRT export.
Export side
Issue related to the usage of the TensorRT export.
No CMAKE_CUDA_COMPILER could be found
CMake Error at CMakeLists.txt:21 (enable_language):
No CMAKE_CUDA_COMPILER could be found.
Tell CMake where to find the compiler by setting either the environment
variable "CUDACXX" or the CMake cache entry CMAKE_CUDA_COMPILER to the full
path to the compiler, or to the compiler name if it is in the PATH.
This error occur when you try to compile your project without having NVCC to your PATH.
To fix this, add nvcc to the path:
export PATH=<NVCC_PATH>:$PATH;
Where <NVCC_PATH> is the path to the nvcc compiler.
For recent ORIN nvcc is installed at: /usr/local/cuda/bin.