Skip to content

Commit 2b3962a

Browse files
fix
1 parent a6994a9 commit 2b3962a

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
@@ -1577,7 +1577,7 @@ function DConv(ch::Pair{Int, Int}, K::Int; init = glorot_uniform, bias = true)
15771577
DConv(in, out, weights, b, K)
15781578
end
15791579

1580-
(l::DConv)(g, x) = GNNlib.dconv(l, g, x)
1580+
(l::DConv)(g, x) = GNNlib.d_conv(l, g, x)
15811581

15821582
function Base.show(io::IO, l::DConv)
15831583
print(io, "DConv($(l.in) => $(l.out), K=$(l.K))")

0 commit comments

Comments
 (0)