I tried the following code to test graph store function, after g.run() the console state stay in “running” and never finished. does anyone has the same problem? how to use graph store?
dgl version 0.4.3post2
python version 3.6.10
pytorch version 1.5.1
Hi,
It’s expected. This is a server-client architecture, and server is designed to run an event loop. However, in the latest dgl, we will deprecate this and use new DistGraph
. Please see the example at https://github.com/dmlc/dgl/tree/master/examples/pytorch/graphsage/experimental with the nightly build dgl (by pip install --pre dgl-cuXX
). The tutorial and api docs will be available soone