From 4f007912ef9b656f6d6db2f8094da080ed0cd041 Mon Sep 17 00:00:00 2001 From: Bradley Dice Date: Mon, 22 Jul 2024 22:36:59 -0500 Subject: [PATCH] Disable CUDA 12.5 in Docker Stable builds. --- _includes/selector.html | 1 + 1 file changed, 1 insertion(+) diff --git a/_includes/selector.html b/_includes/selector.html index 1fa03eba2cc..f513f13d205 100644 --- a/_includes/selector.html +++ b/_includes/selector.html @@ -703,6 +703,7 @@ disableUnsupportedCuda(cuda_version) { var isDisabled = false; if (this.active_additional_packages.includes("TensorFlow") && (!cuda_version.startsWith("12"))) isDisabled = true; + if (this.active_release === "Stable" && cuda_version === "12.5") isDisabled = true; return isDisabled; }, disableUnsupportedPython(python_version) {