Hello
We are using AGX Orin develement kit with Jetpack 5.0.2 to develop CUDA code.
But after execution, the error occurs as title.
CUDA Code:
// Test.cu
#include <stdio.h>
#include <cuda_runtime.h>
int main()
{
int count;
cudaGetDeviceCount(&count);
printf("count = %d\n",count);
return 0;
}
Compile and execute the code…
$ nvcc test.cu
$ ./a.out
Then Error occurs.
I installed DeepStream SDK 6.1.1 with deb file, not helping.Ref Here
I also tried to install CUDA Toolkit 11.8, not helping. Ref Here
Please help. Many thanks.