-
Notifications
You must be signed in to change notification settings - Fork 311
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] FEA generic from_edgelist() and from_adjlist() APIs #1274
[REVIEW] FEA generic from_edgelist() and from_adjlist() APIs #1274
Conversation
Please update the changelog in order to start CI tests. View the gpuCI docs here. |
rerun tests |
…branch-0.17-genericfromedgelist
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.
Thanks. Initial naming came from consistency with
https://networkx.org/documentation/stable/reference/generated/networkx.convert_matrix.from_pandas_edgelist.html
…genericfromedgelist, added code and tests for from_adjlist().
…genericfromedgelist
Codecov Report
@@ Coverage Diff @@
## branch-0.17 #1274 +/- ##
===============================================
+ Coverage 57.92% 58.05% +0.12%
===============================================
Files 65 65
Lines 2800 2837 +37
===============================================
+ Hits 1622 1647 +25
- Misses 1178 1190 +12
Continue to review full report at Codecov.
|
rerun tests |
Initial implementation and tests for generic
from_edgelist()
andfrom_adjlist()
APIs, which can be used in place offrom_cudf_edgelist()
andfrom_pandas_edgelist()
, etc. to make for more common code across different input data types.closes #1141