mirror of
https://github.com/dmlc/dgl.git
synced 2026-06-07 20:41:20 +08:00
* Fix ref to message-passing guide * Fix pygments and spacing * Update build documentation steps in README.md * Use links * Adjust parameters in SAGEConv docstring in same order as init * Fix spelling error * Change doc link
64 lines
2.9 KiB
ReStructuredText
64 lines
2.9 KiB
ReStructuredText
.. _guide-message-passing-efficient:
|
||
|
||
2.2 Writing Efficient Message Passing Code
|
||
------------------------------------------
|
||
|
||
:ref:`(中文版) <guide_cn-message-passing-efficient>`
|
||
|
||
DGL optimizes memory consumption and computing speed for message
|
||
passing. A common practise to leverage those
|
||
optimizations is to construct one's own message passing functionality as
|
||
a combination of :meth:`~dgl.DGLGraph.update_all` calls with built-in
|
||
functions as parameters.
|
||
|
||
Besides that, considering that the number of edges is much larger than the number of nodes for some graphs, avoiding unnecessary memory copy from nodes to edges is beneficial. For some cases like
|
||
:class:`~dgl.nn.pytorch.conv.GATConv`,
|
||
where it is necessary to save message on the edges, one needs to call
|
||
:meth:`~dgl.DGLGraph.apply_edges` with built-in functions. Sometimes the
|
||
messages on the edges can be high dimensional, which is memory consuming.
|
||
DGL recommends keeping the dimension of edge features as low as possible.
|
||
|
||
Here’s an example on how to achieve this by splitting operations on the
|
||
edges to nodes. The approach does the following: concatenate the ``src``
|
||
feature and ``dst`` feature, then apply a linear layer, i.e.
|
||
:math:`W\times (u || v)`. The ``src`` and ``dst`` feature dimension is
|
||
high, while the linear layer output dimension is low. A straight forward
|
||
implementation would be like:
|
||
|
||
.. code::
|
||
|
||
import torch
|
||
import torch.nn as nn
|
||
|
||
linear = nn.Parameter(torch.FloatTensor(size=(node_feat_dim * 2, out_dim)))
|
||
def concat_message_function(edges):
|
||
return {'cat_feat': torch.cat([edges.src['feat'], edges.dst['feat']], dim=1)}
|
||
g.apply_edges(concat_message_function)
|
||
g.edata['out'] = g.edata['cat_feat'] @ linear
|
||
|
||
The suggested implementation splits the linear operation into two,
|
||
one applies on ``src`` feature, the other applies on ``dst`` feature.
|
||
It then adds the output of the linear operations on the edges at the final stage,
|
||
i.e. performing :math:`W_l\times u + W_r \times v`. This is because
|
||
:math:`W \times (u||v) = W_l \times u + W_r \times v`, where :math:`W_l`
|
||
and :math:`W_r` are the left and the right half of the matrix :math:`W`,
|
||
respectively:
|
||
|
||
.. code::
|
||
|
||
import dgl.function as fn
|
||
|
||
linear_src = nn.Parameter(torch.FloatTensor(size=(node_feat_dim, out_dim)))
|
||
linear_dst = nn.Parameter(torch.FloatTensor(size=(node_feat_dim, out_dim)))
|
||
out_src = g.ndata['feat'] @ linear_src
|
||
out_dst = g.ndata['feat'] @ linear_dst
|
||
g.srcdata.update({'out_src': out_src})
|
||
g.dstdata.update({'out_dst': out_dst})
|
||
g.apply_edges(fn.u_add_v('out_src', 'out_dst', 'out'))
|
||
|
||
The above two implementations are mathematically equivalent. The latter
|
||
one is more efficient because it does not need to save feat_src and
|
||
feat_dst on edges, which is not memory-efficient. Plus, addition could
|
||
be optimized with DGL’s built-in function :func:`~dgl.function.u_add_v`, which further
|
||
speeds up computation and saves memory footprint.
|