This repository was archived by the owner on Aug 28, 2025. It is now read-only.
Closed
Conversation
Contributor
|
I've done a little experimentation with this locally. I've tried installing the whole Conda CUDA toolkit for 12.4 ( Maybe I need to use a system-installed toolkit? (Not necessarily asking for help here, I can continue investigating, but just adding a note of what I've encountered so far) |
Member
Author
|
Make sure you install everything from conda-forge. I think the nvidia channel is not aligned until CUDA 12.5. I developed all Windows stuff using CUDA from conda-forge and it's super handy. Let me know if this helps. |
Contributor
|
I did get everything from conda-forge. I'll carry on looking into this when I get a moment. |
Member
Author
|
Superseded by #111. |
10 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
To be discussed internally...
There seems to be a complex interplay between CMake generators and CMake’s
CUDAlang support…CUDAlang enabled:%CONDA_PREFIX%\Library\extras\visual_studio_integration\MSBuildExtensions(luckily CMake explicitly suggested this path so there’s no guess work)cudart.lib,cudart_static.lib, andcudadevrt.libfrom%CONDA_PREFIX%\Library\libto%CONDA_PREFIX%\Library\lib\x64. It seems this is what CMake-VS assumes (at nvcc detect stage)?!--config-settings=cmake.args=-Tcuda=%CONDA_PREFIX%\Library -v .topip.CUDAlang disabled (so onlyCXXbeing listed):CUDAlang anyway, it was an overkill.)CUDAlang enabled/disabled: error (either header not found or unresolved symbols; it seems Ninja on Windows does not generate right compiler/linker flags…