Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dgl
Commits
233e8198
Unverified
Commit
233e8198
authored
Sep 15, 2020
by
Tianjun Xiao
Committed by
GitHub
Sep 15, 2020
Browse files
[Doc]fix link in message passing doc (#2200)
* fix link in message passing doc * more specific link
parent
c53bf774
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
docs/source/guide/message.rst
docs/source/guide/message.rst
+2
-3
No files found.
docs/source/guide/message.rst
View file @
233e8198
...
@@ -53,9 +53,8 @@ for unary for now. For binary funcs, we now support ``add``, ``sub``,
...
@@ -53,9 +53,8 @@ for unary for now. For binary funcs, we now support ``add``, ``sub``,
built-in funcs is ``u`` represents ``src`` nodes, ``v`` represents
built-in funcs is ``u`` represents ``src`` nodes, ``v`` represents
``dst`` nodes, ``e`` represents ``edges``. The parameters for those
``dst`` nodes, ``e`` represents ``edges``. The parameters for those
functions are strings indicating the input and output field names for
functions are strings indicating the input and output field names for
the corresponding nodes and edges. Here is the
the corresponding nodes and edges. The list of supported built-in functions
:ref:`dgl.function` of supported
can be found in :ref:`api-built-in`. For example, to add the ``hu`` feature from src
built-in functions. For example, to add the ``hu`` feature from src
nodes and ``hv`` feature from dst nodes then save the result on the edge
nodes and ``hv`` feature from dst nodes then save the result on the edge
at ``he`` field, we can use built-in function
at ``he`` field, we can use built-in function
``dgl.function.u_add_v('hu', 'hv', 'he')`` this is equivalent to the
``dgl.function.u_add_v('hu', 'hv', 'he')`` this is equivalent to the
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment