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 c72aae7 commit 50be19cCopy full SHA for 50be19c
.github/scripts/build-cuda.sh
@@ -11,8 +11,11 @@ if [[ -v cuda_targets ]]; then
11
elif [ "${build_arch}" = "aarch64" ]; then
12
build_capability="75;80;90"
13
14
- # CUDA 12.8+: Add sm100/sm120
15
- [[ "${cuda_version}" == 12.8.* || "${cuda_version}" == 12.9.* || "${cuda_version}" == 13.*.* ]] && build_capability="75;80;90;100;120"
+ # CUDA 12.8-12.9: Add sm100/sm120
+ [[ "${cuda_version}" == 12.8.* || "${cuda_version}" == 12.9.* ]] && build_capability="75;80;90;100;120"
16
+
17
+ # CUDA 13.0+: Add sm100/sm110/sm120
18
+ [[ "${cuda_version}" == 13.*.* ]] && build_capability="75;80;90;100;110;120"
19
else
20
# By default, target Pascal through Hopper.
21
build_capability="60;70;75;80;86;89;90"
0 commit comments