-
Notifications
You must be signed in to change notification settings - Fork 109
Use NCCL wheels from PyPI for CUDA 12 builds #827
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
Conversation
Before this PR:
|
After this PR:
|
Updated rpaths for
|
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.
Approving with a couple suggestions.
ci/build_wheel.sh
Outdated
@@ -35,6 +35,14 @@ if [[ "${package_dir}" != "python/libcuvs" ]]; then | |||
) | |||
fi | |||
|
|||
RAPIDS_CUDA_MAJOR="${RAPIDS_CUDA_VERSION%%.*}" | |||
if [[ ${RAPIDS_CUDA_MAJOR} == "12" ]]; then |
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.
Can this be written as “not 11” if we expect future major versions to behave like 12?
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.
Ah, the way I was thinking this would work with future versions is that we would just remove the if conditional but the logic inside the block would still remain at the top-level scope. I'll rewrite it to "not 11" because the answer to your question is yes.
/merge |
Reference PR in RAFT rapidsai/raft#2629.
The size of
libcuvs-cu12
wheel goes down from about 1.2G to 854M.