[BUG] WCC has different results between num_workers=1 and num_workers>1 on ldbc with project (person->knows->person)) #2486
-
|
Describe the bug Environment (please complete the following information):
To Reproduce |
Beta Was this translation helpful? Give feedback.
Answered by
sighingnow
Mar 6, 2023
Replies: 2 comments 2 replies
-
|
WCC only works on undirected graphs. You need graph = load_ldbc(sess=sess, directed=False)to make it work as expected. |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
sighingnow
-
|
Closing as answered. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
WCC only works on undirected graphs. You need
to make it work as expected.