Skip to content

Commit 48c5f7a

Browse files
Add rng to randn
Co-authored-by: Carlo Lucibello <[email protected]>
1 parent fee17fd commit 48c5f7a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

GNNLux/src/layers/basic.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ julia> m = GNNChain(GCNConv(2=>5),
3535
x -> relu.(x),
3636
Dense(5=>4))
3737
38-
julia> x = randn(Float32, 2, 3);
38+
julia> x = randn(rng, Float32, 2, 3);
3939
4040
julia> g = rand_graph(3, 6)
4141
GNNGraph:

0 commit comments

Comments
 (0)