Unverified Commit 5cdf7cfa authored by Rhett Ying's avatar Rhett Ying Committed by GitHub
Browse files

[Doc] refine metis part of dgl.reorder_graph() (#3136)


Co-authored-by: default avatarMufei Li <mufeili1996@gmail.com>
parent 3f6f6941
......@@ -2945,7 +2945,8 @@ def reorder_graph(g, node_permute_algo='rcmk', edge_permute_algo='src',
* ``metis``: Use the :func:`~dgl.metis_partition_assignment` function
to partition the input graph, which gives a cluster assignment of each node.
DGL then sorts the assignment array so the new node order will put nodes of
the same cluster together.
the same cluster together. Please note that the generated nodes permutation
of ``metis`` is non-deterministic due to algorithm's nature.
* ``custom``: Reorder the graph according to the user-provided node permutation
array (provided in :attr:`permute_config`).
edge_permute_algo: str, optional
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment