@@ -244,7 +244,7 @@ function (cell::GConvGRUCell)(g::GNNGraph, x::AbstractMatrix, h::AbstractVector)
244244end
245245
246246function (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)
248248end
249249
250250function Base. show (io:: IO , cell:: GConvGRUCell )
@@ -415,7 +415,7 @@ function (cell::GConvLSTMCell)(g::GNNGraph, x::AbstractMatrix, (h, c))
415415 c = repeat (c, 1 , g. num_nodes)
416416 end
417417 @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))
419419end
420420
421421function Base. show (io:: IO , cell:: GConvLSTMCell )
@@ -544,7 +544,7 @@ function (cell::DCGRUCell)(g::GNNGraph, x::AbstractMatrix, h::AbstractVector)
544544end
545545
546546function (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)
548548end
549549
550550function Base. show (io:: IO , cell:: DCGRUCell )
672672(cell:: EvolveGCNOCell )(g:: GNNGraph , x:: AbstractMatrix ) = cell (g, x, initialstates (cell))
673673
674674function (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)
676676end
677677
678678function Base. show (io:: IO , egcno:: EvolveGCNOCell )
@@ -815,7 +815,7 @@ function (cell::TGCNCell)(g::GNNGraph, x::AbstractMatrix, h::AbstractVector)
815815end
816816
817817function (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)
819819end
820820
821821function Base. show (io:: IO , cell:: TGCNCell )
0 commit comments