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
Describe the bug
A recent change to the python cugraph-API was introduced when integrating the PLC Graph. The legacy(cython.cu)Renumbering (which sets the parameter store_transposed) now occurs at the lazy graph creation and this parameter can no longer be set at the algo's call. PageRank is currently the only algo affected by the change. A solution would be to leverage pylibcugraphPageRank which is already implemented or raise an exception if the user doesn't set the parameter at the lazy graph creation.
Steps/Code to reproduce bug
Run the MG PageRank tests
The text was updated successfully, but these errors were encountered:
Describe the bug
A recent change to the python
cugraph-API
was introduced when integrating thePLC Graph
. The legacy(cython.cu
)Renumbering
(which sets the parameterstore_transposed
) now occurs at the lazy graph creation and this parameter can no longer be set at the algo's call. PageRank is currently the only algo affected by the change. A solution would be to leveragepylibcugraph
PageRank
which is already implemented or raise an exception if the user doesn't set the parameter at the lazy graph creation.Steps/Code to reproduce bug
Run the MG PageRank tests
The text was updated successfully, but these errors were encountered: