pub trait MessageFunction<H: TensorBase>: Send + Sync {
// Required method
fn message(
&self,
src_features: &H,
edge_features: Option<&H>,
dst_features: &H,
) -> H;
}Expand description
消息函数 trait:定义边上的消息计算
Required Methods§
Implementors§
impl MessageFunction<DenseTensor> for IdentityMessage
Available on crate feature
tensor-gnn only.impl MessageFunction<DenseTensor> for LinearMessage
Available on crate feature
tensor-gnn only.