-
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
Address Leiden clustering generating too many clusters #4730
Merged
rapids-bot
merged 1 commit into
rapidsai:branch-24.12
from
ChuckHastings:fix_leiden_convergence
Oct 23, 2024
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -150,8 +150,7 @@ refine_clustering( | |
edge_src_property_t<GraphViewType, typename GraphViewType::vertex_type> const& | ||
src_louvain_assignment_cache, | ||
edge_dst_property_t<GraphViewType, typename GraphViewType::vertex_type> const& | ||
dst_louvain_assignment_cache, | ||
bool up_down) | ||
dst_louvain_assignment_cache) | ||
{ | ||
const weight_t POSITIVE_GAIN = 1e-6; | ||
using vertex_t = typename GraphViewType::vertex_type; | ||
|
@@ -230,6 +229,7 @@ refine_clustering( | |
cugraph::reduce_op::plus<weight_t>{}, | ||
weighted_cut_of_vertices_to_louvain.begin()); | ||
|
||
// FIXME: Consider using bit mask logic here. Would reduce memory by 8x | ||
rmm::device_uvector<uint8_t> singleton_and_connected_flags( | ||
graph_view.local_vertex_partition_range_size(), handle.get_stream()); | ||
|
||
|
@@ -297,6 +297,11 @@ refine_clustering( | |
edge_dst_property_t<GraphViewType, vertex_t> dst_leiden_assignment_cache(handle); | ||
edge_src_property_t<GraphViewType, uint8_t> src_singleton_and_connected_flag_cache(handle); | ||
|
||
// FIXME: Why is kvstore used here? Can't this be accomplished by | ||
// a direct lookup in louvain_assignment_of_vertices using | ||
// leiden - graph_view.local_vertex_partition_range_first() as the | ||
// index? | ||
// Changing this would save memory and time | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Any reason to defer the update? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Trying to get a fix out to a user question. General Leiden improvements isn't a priority right now. |
||
kv_store_t<vertex_t, vertex_t, false> leiden_to_louvain_map( | ||
leiden_assignment.begin(), | ||
leiden_assignment.end(), | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Yes, and also a higher chance to fit in L2 cache.
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.
We have multiple utility functions to support this.
https://github.com/rapidsai/cugraph/blob/branch-24.12/cpp/include/cugraph/utilities/packed_bool_utils.hpp