-
Notifications
You must be signed in to change notification settings - Fork 61
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
Support CUDA 12.2 #672
Merged
Merged
Support CUDA 12.2 #672
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
d74e254
use CUDA 12.2 for building and testing wheels and conda packages
jameslamb 9ba0dea
update dependencies.yaml
jameslamb 44ea0f4
remove 1.20 env file
jameslamb b311a8b
Merge branch 'branch-24.04' into test-cuda-12.2
jameslamb b03f694
Merge branch 'branch-24.04' into test-cuda-12.2
jameslamb ffb0c47
Merge branch 'branch-24.04' into test-cuda-12.2
jameslamb a856724
Merge branch 'branch-24.04' into test-cuda-12.2
jameslamb 7176701
Merge branch 'test-cuda-12.2' of github.com:jameslamb/cucim into test…
jameslamb ccdcae9
Merge branch 'branch-24.04' into test-cuda-12.2
jakirkham d4cab19
try adding cuda_version to py_build
jameslamb 03e2253
Merge branch 'test-cuda-12.2' of github.com:jameslamb/cucim into test…
jameslamb 651adce
Pin `cuda-version` during `*cucim` install
jakirkham 38856c4
Merge rapidsai/branch-24.04 into jameslamb/test-cuda-12.2
jakirkham 2bed0b3
Drop `cuda-version` install workaround
jakirkham a378184
Remove leftover CUDA 11.8 workaround attempt
jakirkham e075700
Run ci/release/update-version.sh 24.04.00.
bdice 3081630
Merge rapidsai/branch-24.04 into jameslamb/test-cuda-12.2
jakirkham e703868
Merge branch 'branch-24.04' into test-cuda-12.2
jakirkham b318986
Ignore run-exports from CUDA 12 compiler.
bdice eca560e
Loosen run-exports from -dev libraries.
bdice 6e837c9
Merge branch 'branch-24.04' into test-cuda-12.2
bdice b56a9ac
Add cuda-cudart-dev with run-exports ignored.
bdice cd71cc9
Merge branch 'test-cuda-12.2' of github.com:jameslamb/cucim into test…
bdice 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 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
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.
After discussion offline, we determine the CUDA 11.8 build was failing as the packages were being upgraded in this step to CUDA 12.3, which was unexpected
To try and fix this, have pinned
cuda-version
while installinglibcucim
&cucim
. It appears that resolves the upgrade issue and allows the tests to passThat said, we didn't expect to need a
cuda-version
pinning here. That may deserve some additional investigation on its own (with possible follow up here and in other RAPIDS projects)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 the root cause of what we see here? conda-forge/cupy-feedstock#247 (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.
With
cuda-version
added tocupy
in PR ( conda-forge/cupy-feedstock#249 ), think we can now try droppingcuda-version
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 agree! Thanks @jakirkham
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 posterity, would note that when we saw the issue previously (before adding the
cuda-version
workaround above), we do seecuda-version=11.8
in the specs from the environment update on CIIOW the solver recognizes we've explicitly requested
cuda-version
with a specific version constraintDespite this the solver later ignores this constraint and updates
cuda-version
anyways later in the same CI log: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.
It looks like we still have this issue. However it is now with CUDA 12.0. Here is a relevant snippet below (also when
cupy
is installed with the PR build ofcucim
) taken from CI: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.
The CUDA 12 problems should be resolved by the fixes discussed here: rapidsai/build-planning#8 (comment)