We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31e9b52 commit 497e4a0Copy full SHA for 497e4a0
1 file changed
.github/workflows/build-wheels-cuda.yaml
@@ -151,9 +151,9 @@ jobs:
151
if ($cudaVersion -like '12.5.*') {
152
# The Windows 12.5 toolkit meta-package pulls conda compiler
153
# activation scripts that can overflow cmd.exe's line limit after
154
- # MSVC is already initialized. The build only needs nvcc, cudart,
155
- # and headers from the NVIDIA label.
156
- $cudaPackages = @($nvccPackage)
+ # MSVC is already initialized. Install the smaller pieces the
+ # CUDA backend actually needs without pulling the compiler meta.
+ $cudaPackages = @($nvccPackage, "${cudaChannel}::cuda-libraries-dev=$cudaVersion")
157
} else {
158
$cudaPackages = @("${cudaChannel}::cuda-toolkit=$cudaVersion", $nvccPackage)
159
}
0 commit comments