dmlc / dgl

Python package built to ease deep learning on graph, on top of existing DL frameworks.
http://dgl.ai
Apache License 2.0
13.48k stars 3.01k forks source link

Allow Disabling Node Renumbering in Converting a DGLGraph to a CuGraph #4283

Open mufeili opened 2 years ago

mufeili commented 2 years ago

🚀 Feature

Currently to_cugraph invokes from_cudf_edgelist, which renumbers nodes by default as documented here. This can be error prone. We should expose an argument reorder and set it to False by default.

TristonC commented 2 years ago

@VibhuJawa