Skip to content

Commit 054659b

Browse files
committed
WIP: Don't merge, testing what works in CI / tidying thigns up.
1 parent 32dd663 commit 054659b

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

.github/scripts/install_cuda_windows.ps1

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,10 +83,10 @@ $CUDA_PACKAGES_IN = @(
8383
"thrust";
8484
"thrust";
8585
"nvjitlink";
86+
# cuda 13+ packages
8687
"crt";
8788
"nvptxcompiler";
8889
"nvvm";
89-
"nsight_vse";
9090
)
9191

9292
## -------------------
@@ -145,7 +145,12 @@ Foreach ($package in $CUDA_PACKAGES_IN) {
145145
} elseif($package -eq "crt" -and [version]$CUDA_VERSION_FULL -lt [version]"13.0") {
146146
# crt is a from CUDA 13.0, otherwise it should be skipped.
147147
continue
148-
}
148+
} elseif($package -eq "nvptxcompiler" -and [version]$CUDA_VERSION_FULL -lt [version]"13.0") {
149+
# nvptxcompiler is a from CUDA 13.0, otherwise it should be skipped.
150+
continue
151+
} elseif($package -eq "nvvm" -and [version]$CUDA_VERSION_FULL -lt [version]"13.0") {
152+
# nvvm is a from CUDA 13.0, otherwise it should be skipped.
153+
continue
149154
$CUDA_PACKAGES += " $($package)_$($CUDA_MAJOR).$($CUDA_MINOR)"
150155
}
151156
echo "$($CUDA_PACKAGES)"

0 commit comments

Comments
 (0)