-
Notifications
You must be signed in to change notification settings - Fork 3
Cuda CI windows #12
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
base: master
Are you sure you want to change the base?
Cuda CI windows #12
Conversation
|
Hey @Jimver |
|
@Jimver It's quite strange, isn't it? I wonder if I made something weird in the CMakeLists or conda build that leads to this? |
|
Yeah I debugged it for a bit and managed to get the CMakeError.log as an artifact. See: https://github.com/TuragaLab/SplinePSF/suites/2359120187/artifacts/49944202 First part of the error log file: So it seems to fail when calling Afterwards I set |
|
Ok after a bit of digging I found to following at line 2386-2396 in So it seems to call So my suspicion is that it fails at the following line: As in the error log it says this: So maybe the PATH is becoming too large? Not sure if that is tunable. |
I looked at the CI and it seems you use a bit outdated version of getting cuda in your
cmakelists.txtI now use
find_package(CUDAToolkit)which was introduced in CMake 3.17, so I updated those to 3.17 as well, not sure if that impacts other stuff though. But the CI seems to run fine on my fork.I also changed floor to floorf and ceil to ceilf, see: https://devtalk.blender.org/t/cuda-compile-error-windows-10/17886/2