Please provide the following info (tick the boxes after creating this topic): Software Version
[-] DRIVE OS 6.0.8.1
DRIVE OS 6.0.6
DRIVE OS 6.0.5
DRIVE OS 6.0.4 (rev. 1)
DRIVE OS 6.0.4 SDK
other
Target Operating System
[-] Linux
QNX
other
Hardware Platform
DRIVE AGX Orin Developer Kit (940-63710-0010-300)
DRIVE AGX Orin Developer Kit (940-63710-0010-200)
DRIVE AGX Orin Developer Kit (940-63710-0010-100)
DRIVE AGX Orin Developer Kit (940-63710-0010-D00)
DRIVE AGX Orin Developer Kit (940-63710-0010-C00)
[-] DRIVE AGX Orin Developer Kit (not sure its number)
other
SDK Manager Version
1.9.3.10904
[-] other
Host Machine Version
native Ubuntu Linux 20.04 Host installed with SDK Manager
[-] native Ubuntu Linux 20.04 Host installed with DRIVE OS Docker Containers
native Ubuntu Linux 18.04 Host installed with DRIVE OS Docker Containers
other
Hi, I have some problems after installing 6.0.8 with docker. I only see the bin folder in usr/local/tensorrt, making tensorrt unavailable. The deb package I pulled from the image is the amd64 version which is also not installable and cudnn is not available, what should I do to fix it?
Dear @zhangpeixing,
If you are looking for TensorRT samples, you can copy them from docker and check compiling on target. The TRT/cudnn libraries should be part of target already.
I’m using tensorrt for inference and I can’t find the nvinfer.h file. And I found no include and lib files under usr/src/tensorrt file. I don’t know much about this, can you explain me in detail?
If you want to compile the samples on target, The TRT libs can be found at /usr/lib/aarch64-linux-gnu on target . TRT headers are not part of target. The headers can be found at /usr/include/aarch64-linux-gnu on docker . You need to copy the missing header files to /usr/include/aarch64-linux-gnu on target. Copy the TRT samples to /usr/src/tensorrt/ on target.
For sample compilation check running make from /usr/src/tensorrt/samples/ folder. Let us know if you notice any issues.
I used make TARGET=aarch64 on orin without success, prompting me that I was missing the file in the image. Compiling inside docker and cp to orin after successful compilation also doesn’t work. And there are only bin, data, samles in the tensorrt folder is that correct?