From b83a91e8e1cedb9d8f3ffb6ebc4df00a594a4842 Mon Sep 17 00:00:00 2001 From: Matthew Douglas <38992547+matthewdouglas@users.noreply.github.com> Date: Thu, 23 Jan 2025 09:19:18 -0500 Subject: [PATCH] (build) include Ada/Hopper targets in cu118 build --- .github/scripts/build-cuda.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/build-cuda.sh b/.github/scripts/build-cuda.sh index 723ca5923..9c95c7fba 100644 --- a/.github/scripts/build-cuda.sh +++ b/.github/scripts/build-cuda.sh @@ -6,7 +6,7 @@ declare cuda_version set -xeuo pipefail build_capability="50;52;60;61;70;75;80;86;89;90;100;120" remove_for_11_7=";89;90;100;120" -remove_for_11_8=";89;90;100;120" +remove_for_11_8=";100;120" remove_for_lt_12_7=";100;120" [[ "${cuda_version}" == 11.7.* ]] && build_capability=$(sed 's|'"$remove_for_11_7"'||g' <<< "$build_capability") [[ "${cuda_version}" == 11.8.* ]] && build_capability=$(sed 's|'"$remove_for_11_8"'||g' <<< "$build_capability")