Hi, I noticed there are two ways of creating a graph:
dgl.DGLGraph((u, v))
- create a graph by progressively adding more nodes and edges. (call
add_nodes
andadd_edge
)
If I have 2 same graphs, one is created by method 1 and the other is created by method 2. And I perform same message passing and reducing function on them, will the speed be different?