-
Notifications
You must be signed in to change notification settings - Fork 532
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
Enable Dask tests with UCX-Py/UCXX in CI #5697
Conversation
As figured out in rapidsai/cuml#5697, `libucx` should not be just a testing dependency of `raft-dask`, it should be a run dependency. cc @vyasr Authors: - Divye Gala (https://github.com/divyegala) - Vyas Ramasubramani (https://github.com/vyasr) Approvers: - Vyas Ramasubramani (https://github.com/vyasr) - Dante Gama Dessavre (https://github.com/dantegd) - Ray Douglass (https://github.com/raydouglass) URL: #2296
As figured out in rapidsai/cuml#5697, `libucx` should not be just a testing dependency of `raft-dask`, it should be a run dependency. cc @vyasr Authors: - Divye Gala (https://github.com/divyegala) - Vyas Ramasubramani (https://github.com/vyasr) Approvers: - Vyas Ramasubramani (https://github.com/vyasr) - Dante Gama Dessavre (https://github.com/dantegd) - Ray Douglass (https://github.com/raydouglass) URL: rapidsai#2296
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.
Just one comment about print statements
|
||
n_neighbors = 10 | ||
n_clusters = 5 | ||
from cuml.dask.neighbors import NearestNeighbors as daskNN | ||
|
||
from sklearn.datasets import make_blobs | ||
|
||
print("_scale_rows", flush=True) |
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.
These should be removed, right?
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.
Great catch, not sure how I missed it. Done in ce9590a .
/merge |
Enable Dask tests in CI with TCP/UCX-Py/UCXX comms. The heavy-lifting is entirely done in
raft-dask
, so no functional changes are required incuml