-
Notifications
You must be signed in to change notification settings - Fork 302
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
[REVIEW] Unpin dask
and distributed
for development
#3036
Conversation
rerun tests |
Blocked by: rapidsai/raft#1068 |
Codecov ReportBase: 58.86% // Head: 58.95% // Increases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## branch-23.02 #3036 +/- ##
================================================
+ Coverage 58.86% 58.95% +0.08%
================================================
Files 131 131
Lines 7848 7857 +9
================================================
+ Hits 4620 4632 +12
+ Misses 3228 3225 -3
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
rerun tests |
@@ -1750,11 +1750,13 @@ def test_renumber_vertices_by_type(dataset1_PropertyGraph, prev_id_column): | |||
assert df_id_ranges.loc[key, "stop"] == stop | |||
df = pG.get_vertex_data(types=[key]) | |||
assert len(df) == stop - start + 1 | |||
assert (df["_VERTEX_"] == list(range(start, stop + 1))).all() | |||
assert ( |
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 pytest fixes were needed because cudf
removed the comparison of host & device objects in : rapidsai/cudf#12281, which will return False
if performed.
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.
LGTM assuming the issue @bdice brought up is addressed.
Co-authored-by: Bradley Dice <bdice@bradleydice.com>
@gpucibot merge |
Small PR to fix MGPG tests. Note that @galipremsagar fixed the equivalent tests for `test_property_graph.py` in #3036 by using `s._constructor`, which is pretty slick. Also, `start_dask_client` returns a tuple of client and cluster now, so I updated the `dask_client` fixture so the cluster can be closed properly. Authors: - Erik Welch (https://github.com/eriknw) - Alex Barghi (https://github.com/alexbarghi-nv) Approvers: - Alex Barghi (https://github.com/alexbarghi-nv) - Rick Ratzel (https://github.com/rlratzel) URL: #3090
This PR unpins
dask
anddistributed
to2022.12.0+
for23.02
development.xref: rapidsai/cudf#12302