-
Notifications
You must be signed in to change notification settings - Fork 309
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
Use MNMG version of ECG in python layer instead, and remove legacy ECG and Louvain #4514
Use MNMG version of ECG in python layer instead, and remove legacy ECG and Louvain #4514
Conversation
…to use_mnmg_ecg_and_remove_legacy_version
/okay to test |
/okay to test |
/okay to test |
This reverts commit 538a2ce.
/okay to test |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. Glad to be done with a legacy implementation.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM but we're deprecating support for NetworkX input types (we're going to start telling users to use nx-cugraph if they want to use NetworkX types) so I made some suggestions.
…to use_mnmg_ecg_and_remove_legacy_version
/okay to test |
…to use_mnmg_ecg_and_remove_legacy_version
/okay to test |
/okay to test |
…to use_mnmg_ecg_and_remove_legacy_version
/okay to test |
/okay to test |
/okay to test |
Labeling this a breaking change. This does delete the legacy implementation of Louvain... so it breaks our C++ API by deleting an obsolete feature. |
if isNx: | ||
warning_msg = ( | ||
" We are deprecating support for handling " | ||
"NetworkX types in the next release." | ||
) | ||
warnings.warn(warning_msg, UserWarning) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This message doesn't hurt but isn't needed since ensure_cugraph_obj_for_nx()
will handle the deprecation warning in this PR: https://github.com/rapidsai/cugraph/pull/4493/files#diff-62286c02304119d912dbd0491893a58c1dea11bd0addcc80fadb3d129d21029f
/merge |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Approved CMake and Python build changes
This PR
Closes #2494