-
Notifications
You must be signed in to change notification settings - Fork 310
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
Graph prmitives API update #2100
Graph prmitives API update #2100
Conversation
…ate_edge_partition_src_dst_property)
…cue_by_src|dst_key_e
@kaatish @aschaffer FYI: this may possibly break graph-ops if they are directly using graph primitives. |
Codecov Report
@@ Coverage Diff @@
## branch-22.04 #2100 +/- ##
===============================================
Coverage ? 73.99%
===============================================
Files ? 157
Lines ? 10496
Branches ? 0
===============================================
Hits ? 7767
Misses ? 2729
Partials ? 0 Continue to review full report at Codecov.
|
@gpucibot merge |
This is one of the series of planned PRs to address #2003
We want to consistently use source & destination (or src & dst as abbreviation) instead of mixing source/destination and row/column and better group function/class/parameter names based on the concept of vertex partition and edge partition.
This PR renames
row/col_properties_t
toedge_partition_src/dst_property_t
and
copy_to_adj_matrix_partition_row/col
toupdate_edge_partition_src/dst_property
and
transform_reduce_by_adj_matrix_row|col_key_e
totransform_reduce_by_src|dst_key_e
and fix resulting compile errors.
Possibly a breaking change (even though I am not aware of any external projects to be affected).