File tree 2 files changed +2
-12
lines changed
2 files changed +2
-12
lines changed Original file line number Diff line number Diff line change @@ -71,11 +71,7 @@ using Turing
71
71
@varname (mu2) => ESS (),
72
72
)
73
73
chain = sample (StableRNG (seed), MoGtest_default, alg, 2000 )
74
- # (penelopeysm) Note that the tolerance for x86 needs to be larger
75
- # because CSMC (i.e. PG) is not reproducible across architectures.
76
- # See https://github.com/TuringLang/Turing.jl/issues/2446.
77
- atol = Sys. ARCH == :i686 ? 0.12 : 0.1
78
- check_MoGtest_default (chain; atol= atol)
74
+ check_MoGtest_default (chain; atol= 0.1 )
79
75
end
80
76
81
77
@testset " TestModels" begin
Original file line number Diff line number Diff line change 476
476
# the posterior is analytically known? Doing 10_000 samples to run the test suite
477
477
# is not ideal
478
478
# Issue ref: https://github.com/TuringLang/Turing.jl/issues/2402
479
-
480
- # (penelopeysm) Note also the larger atol on x86 runners. This is
481
- # needed because PG is not fully reproducible across architectures,
482
- # even when seeded as above. See
483
- # https://github.com/TuringLang/Turing.jl/issues/2446
484
- mean_atol = Sys. ARCH == :i686 ? 1.3 : 0.8
485
- @test isapprox (mean (num_ms), 8.6087 ; atol= mean_atol)
479
+ @test isapprox (mean (num_ms), 8.6087 ; atol= 0.8 )
486
480
@test isapprox (std (num_ms), 1.8865 ; atol= 0.02 )
487
481
end
488
482
You can’t perform that action at this time.
0 commit comments