You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Julia crush tests (smallcrushJulia and bigcrushJulia) internally use pmap.
When distributed workers are available, these tests work as expected.
However, when additional workers are available, the tests for WrappedRNG{<:Integer} return zeros.
using Distributed
addprocs(4);
using Random
using RNGTest
RNGTest.smallcrushJulia(rand) # works as expected
RNGTest.smallcrushJulia(RNGTest.wrap(Xoshiro(), Float64)) # works as expected
RNGTest.smallcrushJulia(RNGTest.wrap(Xoshiro(), UInt64)) # fails, returns zeros
The text was updated successfully, but these errors were encountered:
Julia crush tests (
smallcrushJulia
andbigcrushJulia
) internally usepmap
.When distributed workers are available, these tests work as expected.
However, when additional workers are available, the tests for
WrappedRNG{<:Integer}
return zeros.The text was updated successfully, but these errors were encountered: