You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Certain algorithms (Katz, HITS, PageRank, Eigenvector centrality) require the flag `store_transposed` to be set to `True` for optimal performance. Although the CAPI internally `transposed` the graph at the algo's call if it wasn't at the graph creation, this adds extra overheads. This PR raises an exception if the user doesn't set the flag to `True` at the graph creation
closes#2742
Authors:
- Joseph Nke (https://github.com/jnke2016)
Approvers:
- Alex Barghi (https://github.com/alexbarghi-nv)
- Rick Ratzel (https://github.com/rlratzel)
URL: #2756
Add warning in python cugraph when auto-transpose will happen
Algos that require transposed, and will auto-transpose:
What about the other algos that require non-transposed? Will they handle and auto-un-transpose a transposed graph?
The text was updated successfully, but these errors were encountered: