-
Hi, Matt. Here are my questions.
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
If
|
Beta Was this translation helpful? Give feedback.
-
Hi, Matt. Here are my questions.
|
Beta Was this translation helpful? Give feedback.
-
If
|
Beta Was this translation helpful? Give feedback.
aggregate()
andupdate()
have default implementations. For example, by default,aggregate
will aggregate incoming messages according to theaggr
attribute ("add"
,"mean"
or"max"
) of theMessagePassing
class.update()
just returns the input by default.message_and_aggregate()
fusesmessage
andaggregate
computation into a single step, which is useful in order to allow for more memory-efficient GNN operators. This post tries to explain it in more detail.message_and_aggregate
is not implemented, the order of operations is:If
message_and_aggregate
is implemented, the order of operations is: