Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rbSparky committed Aug 1, 2024
1 parent 54957da commit a2ec7a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GNNLux/src/layers/conv.jl
Original file line number Diff line number Diff line change
Expand Up @@ -569,6 +569,6 @@ function (l::SGConv)(g, x, edge_weight, ps, st;

m = (; ps.weight, bias = _getbias(ps),
l.add_self_loops, l.use_edge_weight, l.k)
y = GNNlib.sg_conv(m, g, x, edge_weight, conv_weight)
y = GNNlib.sg_conv(m, g, x, edge_weight)
return y, st
end

0 comments on commit a2ec7a3

Please sign in to comment.