-
Notifications
You must be signed in to change notification settings - Fork 241
build and test against CUDA 13.1.0 #2912
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
Merged
+32
−32
Merged
Changes from 5 commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
583e7c3
build and test against CUDA 13.1.0
jameslamb f7ec901
test CUDA 13.1 devcontainers in CI
jameslamb 9e15fab
try system-installing NCCL
jameslamb fedf7b7
and devcontainers
jameslamb bf0ff5a
Merge branch 'main' into cuda13.1.0-workflows
jameslamb fabf7f9
try hacking around with onCreateCommand
jameslamb c52fe9f
Merge branch 'cuda13.1.0-workflows' of github.com:jameslamb/raft into…
jameslamb e0839dd
permissions
jameslamb 6fc306f
Merge branch 'main' of github.com:rapidsai/raft into cuda13.1.0-workf…
jameslamb 7a1aba9
use new CI containers, make devcontainers workaround stricter
jameslamb 36380aa
revert devcontainers to 13.0
jameslamb 7b5d9dc
actually restore CUDA 13.0 devcontainers
jameslamb a56e104
restore CUDA 13.1 devcontainers (just do not test them in CI)
jameslamb 946981f
switch back to CUDA 13.1 devcontainers
jameslamb File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| #!/bin/bash | ||
| # SPDX-FileCopyrightText: Copyright (c) 2026, NVIDIA CORPORATION. | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
|
|
||
| # TODO(jameslamb): revert this when it's pre-installed in CI images | ||
| rapids-logger "installing libnccl" | ||
| if type -f apt; then | ||
| apt-get update | ||
| apt-get install -y --no-install-recommends \ | ||
| libnccl-dev | ||
| else | ||
| yum update -y | ||
| yum install -y \ | ||
| libnccl-devel | ||
| fi |
Oops, something went wrong.
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.
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.
This is not working, and I see why.
The code processing this flag is explicitly looking for packages with
+cuda13.1in their versions.(rapidsai/devcontainers - features/src/cuda/install.sh)
And those don't exist today.
So options I see:
devcontainer.jsonhere and in other RAPIDS repos (like inpostCreateCommandor something)nvidia-nccl-cu{12,13}wheels (build and test against CUDA 13.1.0 #2912 (comment))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.
That code is 3 years old. Sounds worthwhile to revisit whether it can be changed
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.
For sure. I hacked around it here like this: fabf7f9
which seems to at least allow all RAFT components to compile: https://github.com/rapidsai/raft/actions/runs/20757771141/job/59604424645?pr=2912
But it definitely feels like a hack. Opened rapidsai/devcontainers#644 to discuss
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.
We decided offline to skip CUDA 13.1 pip devcontainers in CI for now to keep moving, and to restore them hopefully soon when there are CUDA 13.1
aptpackages for NCCL: rapidsai/devcontainers#644 (comment)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.
I just pushed a56e104
Thinking about this some more, we should at least still include the CUDA 13.1 devcontainers in the affected repos, even if we can't test them in CI, so they can be used for other testing. For example, the
cuda13.1-condadevcontainers are not affected by this issue and could be used to debug CUDA 13.1 builds.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.
There are now
aptpackages for NCCL + CUDA 13.1, so no need to skip anything any more 😁#2912 (comment)