Skip to content

Commit 823f61f

Browse files
committed
Revert to old rng in RQSCouplingBlock init
1 parent 813986a commit 823f61f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/rqspline_coupling.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,8 @@ Construct and instance of `RQSplineCouplingBlock`, while initializing the parame
112112
compute device specified in `compute_unit`. (Defaults to CPU)
113113
"""
114114
function RQSplineCouplingBlock(mask::Vector{Bool}, nn::Chain, compute_unit::AbstractComputeUnit=CPUnit())
115-
# Set fixed rng to be consistent across julia versions, alternative: rng = Random.default_rng(); Random.seed!(rng,0)
116-
rng = MersenneTwister(1234)
115+
rng = Random.default_rng()
116+
Random.seed!(rng, 0)
117117

118118
lux_compute_unit = compute_unit isa CPUnit ? cpu_device() : gpu_device()
119119

0 commit comments

Comments
 (0)