-
Notifications
You must be signed in to change notification settings - Fork 86
build wheels with CUDA 13.0.x, test wheels against mix of CTK versions #942
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
Changes from 2 commits
7c0f8fb
f506113
cd4308a
b71d3be
3d53f6a
5c9e256
59fdfd5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -176,6 +176,8 @@ dependencies: | |
| - output_types: [conda, requirements] | ||
| packages: | ||
| - pre-commit | ||
| # 'cuda_version' intentionally does not contain fallback entries... we want | ||
| # a loud error if an unsupported 'cuda' value is passed | ||
| cuda_version: | ||
| specific: | ||
| - output_types: conda | ||
|
|
@@ -204,6 +206,51 @@ dependencies: | |
| cuda: "13.1" | ||
| packages: | ||
| - cuda-version=13.1 | ||
| - output_types: requirements | ||
| matrices: | ||
| # if use_cuda_wheels=false is provided, do not add dependencies on any CUDA wheels | ||
| # (e.g. for DLFW and pip devcontainers) | ||
| - matrix: | ||
| use_cuda_wheels: "false" | ||
| packages: | ||
| - matrix: | ||
| arch: aarch64 | ||
| cuda: "12.2" | ||
| use_cuda_wheels: "true" | ||
| packages: | ||
| # nvidia-cublas-cu12 didn't get aarch64 wheels until CTK 12.3, so allow a slightly | ||
| # looser bound here | ||
| - cuda-toolkit>=12.2,<=12.3 | ||
| - matrix: | ||
| cuda: "12.2" | ||
| use_cuda_wheels: "true" | ||
| packages: | ||
| - cuda-toolkit==12.2.* | ||
| - matrix: | ||
| cuda: "12.5" | ||
| use_cuda_wheels: "true" | ||
| packages: | ||
| - cuda-toolkit==12.5.* | ||
| - matrix: | ||
| cuda: "12.8" | ||
| use_cuda_wheels: "true" | ||
| packages: | ||
| - cuda-toolkit==12.8.* | ||
| - matrix: | ||
| cuda: "12.9" | ||
| use_cuda_wheels: "true" | ||
| packages: | ||
| - cuda-toolkit==12.9.* | ||
| - matrix: | ||
| cuda: "13.0" | ||
| use_cuda_wheels: "true" | ||
| packages: | ||
| - cuda-toolkit==13.0.* | ||
| - matrix: | ||
| cuda: "13.1" | ||
| use_cuda_wheels: "true" | ||
| packages: | ||
| - cuda-toolkit==13.1.* | ||
| cuda: | ||
| common: | ||
| - output_types: conda | ||
|
|
@@ -337,9 +384,9 @@ dependencies: | |
| - pytest-timeout | ||
| - rangehttpserver | ||
| - boto3>=1.21.21 | ||
| - output_types: [requirements, pyproject] | ||
| - output_types: pyproject | ||
| packages: | ||
| - moto[server]>=4.0.8 | ||
| - &moto_server moto[server]>=4.0.8 | ||
| - output_types: conda | ||
| packages: | ||
| - moto>=4.0.8 | ||
|
|
@@ -358,6 +405,17 @@ dependencies: | |
| - matrix: | ||
| packages: | ||
| - *cuda_python_cu13 | ||
| # 'pip' constraints files cannot include extras like 'moto[server]'. This group | ||
| # ensures that dependencies ends up in 'kvikio[test]' but not in the output of | ||
| # 'rapids-generate-pip-constraints' in CI scripts. | ||
| - output_types: requirements | ||
| matrices: | ||
| - matrix: | ||
| dependencies: "latest" | ||
| packages: | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Works around this:
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We probably want a better solution for this. Just listing the package name without the extra for
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think that might work for that case because the other things pulled in by the This is a little different... So we do need to ensure
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm treating this comment as non-blocking, because here I think we're only talking about spelling in I opened an issue to track it: #945 I'll merge this as-is. |
||
| - matrix: | ||
| packages: | ||
| - *moto_server | ||
| test_java: | ||
| common: | ||
| - output_types: conda | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.