-
Notifications
You must be signed in to change notification settings - Fork 933
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
fix libcudf pins cu11 #18161
base: branch-25.04
Are you sure you want to change the base?
fix libcudf pins cu11 #18161
Conversation
Co-authored-by: Bradley Dice <[email protected]>
d81f3b0
to
2771d4b
Compare
conda/recipes/libcudf/recipe.yaml
Outdated
@@ -138,6 +138,7 @@ outputs: | |||
- cuda-nvrtc | |||
- cuda-nvtx | |||
- cuda-version | |||
- cudatoolkit |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this be conditional?
- cudatoolkit | |
- if: cuda_major == "11" | |
then: | |
- cudatoolkit |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Similarly, perhaps we should ignore exports from cuda-cudart
, cuda-nvrtc
, cuda-nvtx
, libcurand
for cuda_major != "11"
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Probably, I'm going to check the logs of a previous run and check on which overpinned dependencies might cause trouble
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ignoring things that aren't in scope doesn't cause problems, so I can circle back to cuda-nvrtc
and friends when I have some followup fixes, but this should get things working
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
but the cudatoolkit
ignore is now conditional
Fix overconstrained libcudf conda package for cuda 11
Description
cudatoolkit
inherited from thecompilers('cuda')
metapackage is imposing anWe ignore that run export and rely on the the pin compatible
cuda-version
Checklist