Skip to content

Commit

Permalink
Add spaces
Browse files Browse the repository at this point in the history
Co-authored-by: Carlo Lucibello <[email protected]>
  • Loading branch information
aurorarossi and CarloLucibello authored Jul 16, 2024
1 parent 26a6503 commit d40625a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/layers/conv.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2010,8 +2010,8 @@ function (l::DConv)(g::GNNGraph, x::AbstractMatrix)
if l.K > 1
# T1_in = T0 * deg_in * A'
#T1_out = T0 * deg_out' * A
T1_out = propagate(w_mul_xj,g,+; xj= T0*deg_out')
T1_in = propagate(w_mul_xj,gt,+; xj= T0*deg_in)
T1_out = propagate(w_mul_xj, g, +; xj = T0*deg_out')
T1_in = propagate(w_mul_xj, gt, +; xj = T0*deg_in)
h = h .+ l.weights[1,2,:,:] * T1_in .+ l.weights[2,2,:,:] * T1_out
end
for i in 2:l.K
Expand Down

0 comments on commit d40625a

Please sign in to comment.