Open tamakoyuki opened 6 months ago
@tamakoyuki thanks for entering this issue.
This warning occurs in the conversion from a networkx graph to the cugraph structure for representing the graph.
This is a code path that we are phasing out. @rlratzel - does nx-cugraph support minimum spanning tree? If not, any idea when it will?
@tamakoyuki - it should be safe to ignore this warning. The symmetrization function should be working correctly, the warning is indicating that we plan on dropping support for that feature. In reality (new since that warning was put in place), we plan on dropping support for calling cugraph algorithms in this manner in favor of using nx-cugraph. I don't believe we will change anything in the existing code path at this point, we're going to continue to migrate users to the nx-cugraph path.
Note that the warning isn't actually identifying that you are sending in multi edges... rather it is indicating that the code is passing a parameter that you might be sending in multi edges. This is hardcoded into the current code path as a precaution.
Version
cugraph-cu11 24.4.0
Which installation method(s) does this occur on?
Pip
Describe the bug.
I did not create multiple edges in my code, but the minimum spanning tree algorithm issued an exception warning. That's why I hope to eliminate this warning and speed up tree generation.
Minimum reproducible example
Relevant log output
Environment details
No response
Other/Misc.
No response
Code of Conduct