-
Notifications
You must be signed in to change notification settings - Fork 56
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Slow setup times on windows #253
Comments
28s
17m 36s |
I tried messing around with the script: https://github.com/bullno1/cuda-toolkit/commits/master/. The actual silent installation in my machine is very fast. My guess is that it tries to extract the archive and the CI machine hardware is bad for that. The installer is also just an archive appended to an executable as most of them are. Maybe I'll attempt to do just that:
|
It's only 6 minutes today: https://github.com/bullno1/hey/actions/runs/7282548943/job/19845086235#step:4:1 I have a feeling the issue is entirely with Github |
Was this ever looked into? |
It is v0.2.14 |
This is also what we found. Removing it speeds things up significantly but breaks some tooling. Is the same thing experienced on a Windows desktop? (Don't have one so cannot try) Maybe it's possible to just unzip the installer files instead if the bug is in the installer itself? |
Bummer, I think I need that or msbuild won't find the toolchain.
The installer can be extracted, the problem is the transitive dependencies that you need to also install. |
That's so slow! it takes me ~25 minutes only for setup nvidia step in my builds. Looks like the installer itself is very heavy, I think that it tried to install the driver although I don't need it to compile with cuda, and also it does many checks before install it. |
I had this problem with cuda setup taking forever, like 30 minutes. So I made a simple script setup_cuda.ps1, |
Do you mind if we copy your script to our project? |
You can. Consider it as MIT license |
Setting up cuda-toolkit on a normal windows github actions runner can take >>15 min. I tried to speed this up by using the network installer and specify only the sub-packages i actually need but that also doesn't make any difference. The same setup on linux takes ~2:30 min also via the network method. Am i doing something wrong? What is the recommended way to install only specific packages on windows?
The text was updated successfully, but these errors were encountered: