-
Notifications
You must be signed in to change notification settings - Fork 623
CI: Test CuPy nightlies #7695
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
CI: Test CuPy nightlies #7695
Changes from 5 commits
d7dab3e
5b1acf9
1fc2a4e
7b0f330
2d43594
9050842
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 | ||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -117,6 +117,7 @@ files: | |||||||||||||||||||||||||||||||||||||||||
| includes: | ||||||||||||||||||||||||||||||||||||||||||
| - cuda_version | ||||||||||||||||||||||||||||||||||||||||||
| - depends_on_cuml | ||||||||||||||||||||||||||||||||||||||||||
| - depends_on_cupy | ||||||||||||||||||||||||||||||||||||||||||
| - depends_on_libcuml | ||||||||||||||||||||||||||||||||||||||||||
| - py_version | ||||||||||||||||||||||||||||||||||||||||||
| - test_python | ||||||||||||||||||||||||||||||||||||||||||
|
|
@@ -126,6 +127,7 @@ files: | |||||||||||||||||||||||||||||||||||||||||
| includes: | ||||||||||||||||||||||||||||||||||||||||||
| - cuda_version | ||||||||||||||||||||||||||||||||||||||||||
| - depends_on_cuml | ||||||||||||||||||||||||||||||||||||||||||
| - depends_on_cupy | ||||||||||||||||||||||||||||||||||||||||||
| - depends_on_libcuml | ||||||||||||||||||||||||||||||||||||||||||
| - py_version | ||||||||||||||||||||||||||||||||||||||||||
| - test_python | ||||||||||||||||||||||||||||||||||||||||||
|
|
@@ -621,6 +623,22 @@ dependencies: | |||||||||||||||||||||||||||||||||||||||||
| specific: | ||||||||||||||||||||||||||||||||||||||||||
| - output_types: [requirements, pyproject] | ||||||||||||||||||||||||||||||||||||||||||
| matrices: | ||||||||||||||||||||||||||||||||||||||||||
| # Nightly dependencies with pre-release specifiers | ||||||||||||||||||||||||||||||||||||||||||
| - matrix: | ||||||||||||||||||||||||||||||||||||||||||
| cuda: "12.*" | ||||||||||||||||||||||||||||||||||||||||||
| dependencies: "nightly" | ||||||||||||||||||||||||||||||||||||||||||
| packages: | ||||||||||||||||||||||||||||||||||||||||||
| - cupy-cuda12x>=13.6.0a0 | ||||||||||||||||||||||||||||||||||||||||||
| - matrix: | ||||||||||||||||||||||||||||||||||||||||||
| cuda: "13.*" | ||||||||||||||||||||||||||||||||||||||||||
| dependencies: "nightly" | ||||||||||||||||||||||||||||||||||||||||||
| packages: | ||||||||||||||||||||||||||||||||||||||||||
| - cupy-cuda13x>=13.6.0a0 | ||||||||||||||||||||||||||||||||||||||||||
| - matrix: | ||||||||||||||||||||||||||||||||||||||||||
| dependencies: "nightly" | ||||||||||||||||||||||||||||||||||||||||||
| packages: | ||||||||||||||||||||||||||||||||||||||||||
| - cupy-cuda13x>=13.6.0a0 | ||||||||||||||||||||||||||||||||||||||||||
|
Comment on lines
+631
to
+640
Member
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.
Suggested change
If you want to be sure this is pulling at least 14.0 nightlies, I think this floor should be moved up. Encoding the fallback as "whatever we use for CUDA 13" with YAML anchors is also helpful to clarify the intent.
Contributor
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 believe this is working as expected, so I'm going to leave the configuration as-is to reduce churn. We can improve this if we need to make other changes to this job either in this PR or in a follow-up. |
||||||||||||||||||||||||||||||||||||||||||
| # Standard dependencies | ||||||||||||||||||||||||||||||||||||||||||
| - matrix: | ||||||||||||||||||||||||||||||||||||||||||
| cuda: "12.*" | ||||||||||||||||||||||||||||||||||||||||||
| packages: | ||||||||||||||||||||||||||||||||||||||||||
|
|
@@ -629,6 +647,14 @@ dependencies: | |||||||||||||||||||||||||||||||||||||||||
| - matrix: | ||||||||||||||||||||||||||||||||||||||||||
| packages: | ||||||||||||||||||||||||||||||||||||||||||
| - cupy-cuda13x>=13.6.0 | ||||||||||||||||||||||||||||||||||||||||||
| - output_types: requirements | ||||||||||||||||||||||||||||||||||||||||||
| matrices: | ||||||||||||||||||||||||||||||||||||||||||
| - matrix: | ||||||||||||||||||||||||||||||||||||||||||
| dependencies: "nightly" | ||||||||||||||||||||||||||||||||||||||||||
| packages: | ||||||||||||||||||||||||||||||||||||||||||
| - --find-links=https://pip.cupy.dev/pre | ||||||||||||||||||||||||||||||||||||||||||
| - matrix: | ||||||||||||||||||||||||||||||||||||||||||
| packages: | ||||||||||||||||||||||||||||||||||||||||||
| depends_on_rapids_dask_dependency: | ||||||||||||||||||||||||||||||||||||||||||
| common: | ||||||||||||||||||||||||||||||||||||||||||
| - output_types: [conda, pyproject, requirements] | ||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| # SPDX-FileCopyrightText: Copyright (c) 2020-2025, NVIDIA CORPORATION. | ||
| # SPDX-FileCopyrightText: Copyright (c) 2020-2026, NVIDIA CORPORATION. | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
| # | ||
|
|
||
|
|
@@ -95,7 +95,7 @@ def make_classification( | |
| [-0.88968956 -0.914443 0.1302423 0.02924336] | ||
| [-0.8817671 -0.84549576 0.1845096 0.02556021]] | ||
|
|
||
| >>> print(y) | ||
| >>> print(y) # doctest: +SKIP | ||
|
Member
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. curious, why do we need this skip now?
Contributor
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. The dataset generated by |
||
| [1 0 1 1 1 1 1 1 1 0] | ||
|
|
||
| Parameters | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.