File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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}
151156echo " $ ( $CUDA_PACKAGES ) "
You can’t perform that action at this time.
0 commit comments