Skip to content

Commit 25ecd4d

Browse files
Update src/layers/conv.jl
Co-authored-by: Carlo Lucibello <[email protected]>
1 parent 7e0efc0 commit 25ecd4d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/layers/conv.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1161,7 +1161,7 @@ function (l::GMMConv)(g::GNNGraph, x::AbstractMatrix, e::AbstractMatrix)
11611161
m = l.σ(m .+ l.bias)
11621162

11631163
if l.residual
1164-
if size(x,1)==size(m,1)
1164+
if size(x, 1) == size(m, 1)
11651165
m += x
11661166
else
11671167
@warn "Residual not applied : output feature $(size(m,1)) !== input_feature $(size(x,1))"

0 commit comments

Comments
 (0)