Skip to content

Commit a2ec7a3

Browse files
committed
fix
1 parent 54957da commit a2ec7a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

GNNLux/src/layers/conv.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -569,6 +569,6 @@ function (l::SGConv)(g, x, edge_weight, ps, st;
569569

570570
m = (; ps.weight, bias = _getbias(ps),
571571
l.add_self_loops, l.use_edge_weight, l.k)
572-
y = GNNlib.sg_conv(m, g, x, edge_weight, conv_weight)
572+
y = GNNlib.sg_conv(m, g, x, edge_weight)
573573
return y, st
574574
end

0 commit comments

Comments
 (0)