Skip to content

Commit

Permalink
Updating driver and cuda toolkit versions for Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
m-strzelczyk committed Dec 17, 2024
1 parent fb6dc2a commit 69b30f8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
14 changes: 7 additions & 7 deletions linux/cuda_installer/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@
"7d74caac140a0432d79ebe8e4330dc796f39ba7dd40b3fcd61df760181bf9ccc"
)

LATEST_DRIVER_VERSION = "550.90.07"
LATEST_DRIVER_URL = f"https://us.download.nvidia.com/tesla/{LATEST_DRIVER_VERSION}/NVIDIA-Linux-x86_64-{LATEST_DRIVER_VERSION}.run"
LATEST_DRIVER_VERSION = "565.77"
LATEST_DRIVER_URL = f"https://us.download.nvidia.com/XFree86/Linux-x86_64/{LATEST_DRIVER_VERSION}/NVIDIA-Linux-x86_64-{LATEST_DRIVER_VERSION}.run"
LATEST_DRIVER_SHA256_SUM = (
"51acf579d5a9884f573a1d3f522e7fafa5e7841e22a9cec0b4bbeae31b0b9733"
"0a7aa742c46bcf34d766982402d17b3db1fdb3bc1b89344d70cd123c1cb3147c"
)

CUDA_TOOLKIT_URL = "https://developer.download.nvidia.com/compute/cuda/12.5.0/local_installers/cuda_12.5.0_555.42.02_linux.run"
CUDA_TOOLKIT_URL = "https://developer.download.nvidia.com/compute/cuda/12.6.3/local_installers/cuda_12.6.3_560.35.05_linux.run"
CUDA_TOOLKIT_SHA256_SUM = (
"90fcc7df48226434065ff12a4372136b40b9a4cbf0c8602bb763b745f22b7a99"
"81d60e48044796d7883aa8a049afe6501b843f2c45639b3703b2378de30d55d3"
)

CUDA_SAMPLES_TARGZ = (
Expand All @@ -47,8 +47,8 @@
)

CUDA_PROFILE_FILENAME = pathlib.Path("/etc/profile.d/google_cuda_install.sh")
CUDA_BIN_FOLDER = "/usr/local/cuda-12.5/bin"
CUDA_LIB_FOLDER = "/usr/local/cuda-12.5/lib64"
CUDA_BIN_FOLDER = "/usr/local/cuda-12.6/bin"
CUDA_LIB_FOLDER = "/usr/local/cuda-12.6/lib64"

NVIDIA_PERSISTANCED_INSTALLER = (
"/usr/share/doc/NVIDIA_GLX-1.0/samples/nvidia-persistenced-init.tar.bz2"
Expand Down
1 change: 0 additions & 1 deletion linux/tests/test_installations.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@

# Cloud project and family
OPERATING_SYSTEMS = (
("debian-cloud", "debian-10"),
("debian-cloud", "debian-11"),
("debian-cloud", "debian-12"),
("rhel-cloud", "rhel-8"),
Expand Down

0 comments on commit 69b30f8

Please sign in to comment.