-
Notifications
You must be signed in to change notification settings - Fork 310
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
Branch 22.06 MNMG bug work and support for Undirected Graphs #2215
Branch 22.06 MNMG bug work and support for Undirected Graphs #2215
Conversation
python/cugraph/cugraph/structure/graph_implementation/simpleDistributedGraph.py
Show resolved
Hide resolved
Codecov Report
@@ Coverage Diff @@
## branch-22.06 #2215 +/- ##
================================================
+ Coverage 70.82% 70.93% +0.11%
================================================
Files 170 172 +2
Lines 11036 11341 +305
================================================
+ Hits 7816 8045 +229
- Misses 3220 3296 +76
Continue to review full report at Codecov.
|
rerun tests |
1 similar comment
rerun tests |
@@ -56,7 +68,7 @@ def test_dask_katz_centrality(dask_client): | |||
from cugraph.tests import utils | |||
NM = utils.read_csv_for_nx(input_data_path) | |||
Gnx = nx.from_pandas_edgelist( | |||
NM, create_using=nx.DiGraph(), source="0", target="1" | |||
NM, create_using=nx.Graph(directed=directed), source="0", target="1" |
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.
Since this is NetworkX, it needs to stay nx.DiGraph()
# FIXME: uddaskGraphFromDataset returns an undirected Graph, which Louvain | ||
# is currently accepting. In the future, an MNMG symmeterize will | ||
# need to be called to create a Graph for Louvain. |
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.
Is this FIXME needed? It's saying an undirected graph needs to be symmetrized, which it already is.
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.
removed
…ith renumber False
@gpucibot merge |
This will resolve #2191 and contains code to allow passing undirected graphs to algorithms. It includes tests and comments for this changes. Once reviewed,
This will be applied to the other algorithms that allow undirected graphs. That is issue #2015