Skip to content

Commit 86d1d08

Browse files
Update src/layers/conv.jl
Co-authored-by: Carlo Lucibello <[email protected]>
1 parent efcf608 commit 86d1d08

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
@@ -1142,7 +1142,7 @@ end
11421142
function (l::GMMConv)(g::GNNGraph, x::AbstractMatrix, e::AbstractMatrix)
11431143
(nin, ein), out = l.ch #Notational Simplicity
11441144

1145-
@assert (ein == size(e)[1] && g.num_edges == size(e)[2]) "Pseudo-cordinate dim $(size(u)) does not match (ein=$(ein),num_edge=$(g.num_edges))"
1145+
@assert (ein == size(e)[1] && g.num_edges == size(e)[2]) "Pseudo-cordinate dim $(size(e)) does not match (ein=$(ein),num_edge=$(g.num_edges))"
11461146

11471147
num_edges = g.num_edges
11481148
d = degree(g, dir=:in)

0 commit comments

Comments
 (0)