Skip to content

Commit

Permalink
Disable CUDA 12.5 in Docker Stable builds.
Browse files Browse the repository at this point in the history
  • Loading branch information
bdice committed Jul 23, 2024
1 parent 4f736ed commit 4f00791
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions _includes/selector.html
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 4f00791

Please sign in to comment.