-
-
Notifications
You must be signed in to change notification settings - Fork 24
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
Make libcudart
an optional dependency
#173
Make libcudart
an optional dependency
#173
Conversation
Hi! This is the friendly automated conda-forge-linting service. I just wanted to let you know that I linted all conda-recipes in your PR ( |
…nda-forge-pinning 2024.04.24.14.42.55
@conda-forge-admin, please rerender |
Hi! This is the friendly automated conda-forge-webservice. I tried to rerender for you, but it looks like there was nothing to do. This message was generated by GitHub actions workflow run https://github.com/conda-forge/ucx-split-feedstock/actions/runs/8826674418. |
Hi! This is the friendly automated conda-forge-linting service. I wanted to let you know that I linted all conda-recipes in your PR ( Here's what I've got... For recipe:
|
It seems using |
Hi! This is the friendly automated conda-forge-linting service. I just wanted to let you know that I linted all conda-recipes in your PR ( |
cuda-cudart
as a dependency
@conda-forge-admin, please rerender |
Hi! This is the friendly automated conda-forge-webservice. I tried to rerender for you, but it looks like there was nothing to do. This message was generated by GitHub actions workflow run https://github.com/conda-forge/ucx-split-feedstock/actions/runs/8841330903. |
Makes it easier to copy-paste and then add `.X` if needed.
This is only used by tests and benchmarks. Disable it so that it doesn't get linked in leading to missing DSO warnings.
Make sure there are no missing library dependencies.
@conda-forge-admin , please re-render |
Hi! This is the friendly automated conda-forge-webservice. I tried to rerender for you, but it looks like there was nothing to do. This message was generated by GitHub actions workflow run https://github.com/conda-forge/ucx-split-feedstock/actions/runs/8856288202. |
Unfortunately it appears disabling OpenMP in builds no longer works correctly. So go ahead and enable it. At least this way the dependency is known, tracked, and used.
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.
Thanks Leo! 🙏
Made a few tweaks and noted them below. Hope that is ok. Happy to discuss as needed
@conda-forge-admin , please re-render |
Hi! This is the friendly automated conda-forge-webservice. I tried to rerender for you, but it looks like there was nothing to do. This message was generated by GitHub actions workflow run https://github.com/conda-forge/ucx-split-feedstock/actions/runs/8856699986. |
@leofang @pentschev could you please take a look when you have a chance? |
libcudart
an optional dependency
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.
Admittedly, I'm not of much help regarding all the conda options, and others will provide better feedback here. Overall this looks good to me.
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.
@jakirkham ppc64le fails for some reason, would you mind taking a look? It seems to be failing when running the ucx_info
test, but I am not 100% sure given the CI logs were interrupted around that point.
Co-authored-by: jakirkham <jakirkham@gmail.com>
Sounds like we are onboard with the changes. Adding automerge. Thanks all! 🙏 |
Hi! This is the friendly conda-forge automerge bot! I considered the following status checks when analyzing this PR:
Thus the PR was passing and merged! Have a great day! |
Based on user feedback, this softens the
cuda-cudart
dependency on CUDA 12. This matches the behavior on CUDA 11 where thecudatoolkit
dependency is already softenedIncludes a post-link script to explain to users how the enable CUDA support in UCX with specific install commands they can copy-paste
Also adds the error overlink check to test for missing dependencies. As GNU OpenMP is getting picked up and there is not a clear way to disable it without issues ( openucx/ucx#9848 ) (despite OpenMP only being used in benchmarks and tests), this goes ahead and adds GNU OpenMP as a dependency. Hopefully we can revisit in the future
Fix #172