Skip to content

Commit 6b9c3f5

Browse files
remove some parallel methods
1 parent 33201f9 commit 6b9c3f5

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/layers/basic.jl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,6 @@ applylayer(l::GNNLayer, g::GNNGraph, x) = l(g, x)
7171
# Handle Flux.Parallel
7272
applylayer(l::Parallel, g::GNNGraph) = GNNGraph(g, ndata=applylayer(l, g, node_features(g)))
7373
applylayer(l::Parallel, g::GNNGraph, x::AbstractArray) = mapreduce(f -> applylayer(f, g, x), l.connection, l.layers)
74-
applylayer(l::Parallel, g::GNNGraph, xs::Vararg{<:AbstractArray}) = mapreduce((f, x) -> applylayer(f, g, x), l.connection, l.layers, xs)
75-
applylayer(l::Parallel, g::GNNGraph, xs::Tuple) = applylayer(l, g, xs...)
7674

7775
# input from graph
7876
applychain(::Tuple{}, g::GNNGraph) = g

0 commit comments

Comments
 (0)