@@ -244,7 +244,7 @@ function (cell::GConvGRUCell)(g::GNNGraph, x::AbstractMatrix, h::AbstractVector)
244
244
end
245
245
246
246
function (cell:: GConvGRUCell )(g:: GNNGraph , x:: AbstractMatrix , h:: AbstractMatrix )
247
- return gconvgrucell_frwd (cell, g, x, h)
247
+ return GNNlib . gconvgrucell_frwd (cell, g, x, h)
248
248
end
249
249
250
250
function Base. show (io:: IO , cell:: GConvGRUCell )
@@ -415,7 +415,7 @@ function (cell::GConvLSTMCell)(g::GNNGraph, x::AbstractMatrix, (h, c))
415
415
c = repeat (c, 1 , g. num_nodes)
416
416
end
417
417
@assert ndims (h) == 2 && ndims (c) == 2
418
- gconvlstmcell_frwd (cell, g, x, (h, c))
418
+ return GNNlib . gconvlstmcell_frwd (cell, g, x, (h, c))
419
419
end
420
420
421
421
function Base. show (io:: IO , cell:: GConvLSTMCell )
@@ -544,7 +544,7 @@ function (cell::DCGRUCell)(g::GNNGraph, x::AbstractMatrix, h::AbstractVector)
544
544
end
545
545
546
546
function (cell:: DCGRUCell )(g:: GNNGraph , x:: AbstractMatrix , h:: AbstractMatrix )
547
- return dcgrucell_frwd (cell, g, x, h)
547
+ return GNNlib . dcgrucell_frwd (cell, g, x, h)
548
548
end
549
549
550
550
function Base. show (io:: IO , cell:: DCGRUCell )
672
672
(cell:: EvolveGCNOCell )(g:: GNNGraph , x:: AbstractMatrix ) = cell (g, x, initialstates (cell))
673
673
674
674
function (cell:: EvolveGCNOCell )(g:: GNNGraph , x:: AbstractMatrix , state)
675
- return evolvegcno_frwd (cell, g, x, state. weight, state . lstm )
675
+ return GNNlib . evolvegcnocell_frwd (cell, g, x, state)
676
676
end
677
677
678
678
function Base. show (io:: IO , egcno:: EvolveGCNOCell )
@@ -815,7 +815,7 @@ function (cell::TGCNCell)(g::GNNGraph, x::AbstractMatrix, h::AbstractVector)
815
815
end
816
816
817
817
function (cell:: TGCNCell )(g:: GNNGraph , x:: AbstractMatrix , h:: AbstractMatrix )
818
- return tgcncell_frwd (cell, g, x, h)
818
+ return GNNlib . tgcncell_frwd (cell, g, x, h)
819
819
end
820
820
821
821
function Base. show (io:: IO , cell:: TGCNCell )
0 commit comments