Skip to content

Commit 7e0efc0

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

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
@@ -1162,7 +1162,7 @@ function (l::GMMConv)(g::GNNGraph, x::AbstractMatrix, e::AbstractMatrix)
11621162

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

0 commit comments

Comments
 (0)