-
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
PropertyGraph updates: added features for DGL, improved extract_subgraph()
and num_vertices
performance
#2056
PropertyGraph updates: added features for DGL, improved extract_subgraph()
and num_vertices
performance
#2056
Conversation
… wrapping in a class wrapper instead of a function (where the return type is no longer a class type, and isinstance() unexpectedly fails). Added tests.
…4-propgraph_updates
…hanged num_vertices property impl for better performance, added get_vertices(), allow a None type_name for add_*_data(), updated docstrings, changed the edge_data added to Graphs to be a DataFrame for efficiency, added tests and benchmarks, refactored and added test fixtures, updated pytest.ini for new benchmarks.
…4-propgraph_updates
Could potentially be a cudf issue with rerun tests |
Codecov Report
@@ Coverage Diff @@
## branch-22.04 #2056 +/- ##
===============================================
Coverage ? 73.62%
===============================================
Files ? 155
Lines ? 10172
Branches ? 0
===============================================
Hits ? 7489
Misses ? 2683
Partials ? 0 Continue to review full report at Codecov.
|
@gpucibot merge |
Various updates needed for adding new features for DGL, improving
extract_subgraph()
andnum_vertices
performance:PropertyGraph
column name constants public for use by clientsnum_vertices
property impl for better performanceget_vertices()
None
type_name foradd_*_data()
edge_data
added to Graphs to be a DataFrame for efficiencypytest.ini
for new benchmarksTested by ensuring all new tests added passed, benchmarks ran, and existing
test_graph_store.py
tests still passed.