hello,when i run cuda inside docker on orin, ir ocurred error:
CUDA driver version is insufficient for CUDA runtime version inside docker,
but i can run cuda outside docker.And i check the cuda library linked to the exec is the same.
the docker’s base image is :
FROM nvidia/cuda:11.2.1-cudnn8-devel-ubuntu20.04
i have added option --gpus all when exec docker run cmd;
I solved problem by changing base image to nvcr.io/nvidia/l4t-base:r34.1.1 and checked Dockerfile from nvidia / container-images / l4t-base · GitLab
but i still have no idea about why the error ocurred, what is difference of l4t-base:r34.1.1 images from nvidia/cuda:11.2.1-cudnn8-devel-ubuntu20.04 images.
If you know,please tell me.
thanks a lot.