Please provide complete information as applicable to your setup.
• Hardware Platform (Jetson / GPU) GPU
• DeepStream Version 6.2
• JetPack Version (valid for Jetson only)
• TensorRT Version 8.5.1.7
• NVIDIA GPU Driver Version (valid for GPU only) 525.60.13
• Issue Type( questions, new requirements, bugs)
Hello! I have the next problem. I am following this tutorial for installing Deepstream 6.2 - Quickstart Guide — DeepStream 6.2 Release documentation . I am following the exact instructions listed here, which means I have installed CUDA 11.8 and afterwards I have installed NVIDIA Driver 525.60.13.
Since I want to create a custom plugin for Deepstream which will use my neural network, I decided to convert it from onnx to TensorRT and I have this error
builder = trt.Builder(logger)
TypeError: pybind11::init(): factory function returned nullptr
A quick search has shown me that it is important to have versions consistency for TensorRT to run and that I need to look at CUDA versions. And that’s where I found inconsistency. Driver 525.60.13 that I was instructed to install outputs this when I run
nvidia-smi
NVIDIA-SMI 525.60.13 Driver Version: 525.60.13 CUDA Version: 12.0
Also this command
cat /usr/local/cuda/version.json
shows me this information:
"cuda" : {
"name" : "CUDA SDK",
"version" : "11.8.0"
}
.....
"nvidia_driver" : {
"name" : "NVIDIA Linux Driver",
"version" : "520.61.05"
}
So basically what I have - I have NVIDIA driver 525.60.13 that is incompatible with CUDA 11.8. Because CUDA expects an older driver and NVIDIA driver expects a younger CUDA. I also verified CUDA compatibility here - CUDA Compatibility :: NVIDIA Data Center GPU Driver Documentation. And it does seem that CUDA 11.8 can not work with 525.60.13.
I am a bit confused. Please help me with these questions:
1)nvidia-smi outputs installed CUDA or expected CUDA? If installed CUDA, does it mean I have two cudas installed on my system?
2) Is it possible to force 525.60.13 to cooperate with CUDA 11.8?
3) Is it possible that there is some inconsistency in DeepStream 6.2 installation guide? If so, how to solve it?
Thank you in advance!