We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
using DynamicPPL function make_selectors() s1 = DynamicPPL.Selector() s2 = DynamicPPL.Selector() return s1, s2 end for i in 1:10 s1, s2 = make_selectors() println("$(s1.gid == s2.gid)") end
Indeterministic example output:
true true true false false true true false true true
This is causing indeterministic test failures over at TuringLang/Turing.jl#2328
The cause is this:
function Selector(tag::Symbol=:default, rerun=tag != :default) return Selector(time_ns(), tag, rerun) end
Sometimes to calls execute within a nanosecond, sometimes they don't.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Indeterministic example output:
This is causing indeterministic test failures over at TuringLang/Turing.jl#2328
The cause is this:
Sometimes to calls execute within a nanosecond, sometimes they don't.
The text was updated successfully, but these errors were encountered: