We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 722dba7 commit 509ed8fCopy full SHA for 509ed8f
.github/scripts/build-cuda.sh
@@ -8,8 +8,8 @@ set -xeuo pipefail
8
# By default, target Maxwell through Hopper.
9
build_capability="50;52;60;61;70;75;80;86;89;90"
10
11
-# CUDA 12.8: Add sm100 and sm120; remove sm50 through sm61
12
-[[ "${cuda_version}" == 12.8.* ]] && build_capability="70;75;80;86;89;90;100;120"
+# CUDA 12.8: Add sm100 and sm120; remove < sm75 to align with PyTorch 2.7+cu128 minimum
+[[ "${cuda_version}" == 12.8.* ]] && build_capability="75;80;86;89;90;100;120"
13
14
[[ "${build_os}" = windows-* ]] && python3 -m pip install ninja
15
0 commit comments