From 8e63dcdb1592518b0145ae495b05be52e1dafa26 Mon Sep 17 00:00:00 2001 From: Koushik Dutta Date: Fri, 3 May 2024 21:49:41 -0700 Subject: [PATCH] docker: downgrade to allow cuda 11 --- install/docker/install-nvidia-graphics.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/install/docker/install-nvidia-graphics.sh b/install/docker/install-nvidia-graphics.sh index f35eef2c05..aa39f827e3 100644 --- a/install/docker/install-nvidia-graphics.sh +++ b/install/docker/install-nvidia-graphics.sh @@ -1,6 +1,9 @@ if [ "$(uname -m)" = "x86_64" ] then - export CUDA_VERSION=12-4 + # uncomment to require cuda 12, but everything currently targets 11. + # stuff that targets 11 will work with 12 though. + # export CUDA_VERSION=12-4 + export CUDA_VERSION=11-8 echo "Installing NVIDIA graphics packages." apt update -q \ && apt install wget \