This repository was archived by the owner on Jun 18, 2026. It is now read-only.
perf: use incident-edge iteration in GraphSampler for faster subgraph induction - #140
Merged
sauravbhattacharya001 merged 1 commit intoMar 30, 2026
Merged
Conversation
…e scan When building induced subgraphs from sampled nodes, buildResult and buildResultFromEdges previously iterated over ALL edges in the original graph — O(|E_original|) — to find which ones connect sampled nodes. For small sample fractions on large graphs, this is wasteful. Now iterates over incident edges of sampled nodes only, reducing edge-induction cost to O(sum of degrees of sampled nodes). For a 10% sample of a 100K-edge graph, this can be 10x faster.
|
You have reached your Codex usage limits for code reviews. You can see your limits in the Codex usage dashboard. |
This file contains hidden or 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
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
Problem
\�uildResult\ and \�uildResultFromEdges\ in \GraphSampler\ iterate over all edges in the original graph to find which ones connect sampled nodes. For small sample fractions (e.g., 10% of a large graph), this scans 100% of edges to find the ~1% that matter.
Fix
Iterate over incident edges of sampled nodes instead. Uses a \HashSet\ to avoid duplicates (each undirected edge is incident to both endpoints).
Complexity change: O(|E_original|) → O(Σ degree(v) for v in sample)
For a 10% node sample on a 100K-edge sparse graph, this can be ~10x faster.
Changes