Return a new copy of this graph on CPU. Returns ------- DGLGraph Graph on CPU. See Also -------- to
(self)
| 5742 | return ret |
| 5743 | |
| 5744 | def cpu(self): |
| 5745 | """Return a new copy of this graph on CPU. |
| 5746 | |
| 5747 | Returns |
| 5748 | ------- |
| 5749 | DGLGraph |
| 5750 | Graph on CPU. |
| 5751 | |
| 5752 | See Also |
| 5753 | -------- |
| 5754 | to |
| 5755 | """ |
| 5756 | return self.to(F.cpu()) |
| 5757 | |
| 5758 | def materialize_data(self): |
| 5759 | """Materialize the graph data on the current device. |