You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
From cuda compatibility doc, newer cuda runtime could run on older cuda driver.
But that doesn't hold with cuda container. I tried
docker run -it --rm --gpus all nvidia/cuda:12.8.0-cudnn-devel-ubuntu24.04
with host cuda driver 565.77 ( cuda 12.7 ) and got an error.
nvidia-container-cli: requirement error: unsatisfied condition: cuda>=12.8, please update your driver to a newer version, or use an earlier cuda container: unknown.
After some investigation I found NVIDIA_REQUIRE_CUDA=cuda>=12.8 is set in the image. So does that mean cuda container doesn't support backwards compatibility?