-
Notifications
You must be signed in to change notification settings - Fork 311
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
[BUG] Extract subgraph on pg creates an undirected graph #2457
Comments
Try Do you think the default should be |
Try using the optional graph = pg.extract_subgraph(create_using=cugraph.Graph(directed=True))
I have a test of You can access the docstring of >>> help(pg.extract_subgraph) |
(oops, Erik beat me to it) |
FYI,
This is a good question, IOW, should we default to returning directed graphs if |
Closing in favor of #2459 . Thanks guys . |
Describe the bug
Extract subgraph on a PG creates an undirected graph instead of directed one
Steps/Code to reproduce bug
Expected behavior
I would expect a directed graph.
Additional context
This means that i cant use this extracted subgraph for sampling in GNN pipe-lines.
CC: @rlratzel , @alexbarghi-nv
The text was updated successfully, but these errors were encountered: