SIGSEV/SIGABRT error with METIS partitioning #5297
-
Hi, I have problems with the METIS partitioning in the Cluster Loader.
When I start the training, the message "Computing METIS partitioning... " appears and then I get errors that are not deterministic and seem to depend on the sizes of the clusters. I received the following errors for example:
The errors seem only to occur together with ogbn-arxiv. I didn't experience them with ogbn-products. Also in the example code given for cluster_gcn on ogbn-products, these errors occur when the data set is replaced by arxiv. Does anyone know what causes this error and where it comes from? I would also like to apply ClusterLoader to ogbn-arxiv. Thanks for your help :-) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Can you try to convert the graph to an undirected graph first? I assume data = T.ToUndirected()(data) |
Beta Was this translation helpful? Give feedback.
Can you try to convert the graph to an undirected graph first? I assume
METIS
does only work properly on undirected graphs: