diff --git a/.github/workflows/DynamicHMC.yml b/.github/workflows/DynamicHMC.yml index b5d7f3a386..e477bf7736 100644 --- a/.github/workflows/DynamicHMC.yml +++ b/.github/workflows/DynamicHMC.yml @@ -13,7 +13,7 @@ jobs: matrix: version: - '1.3' - - '1' + - '1.5' os: - ubuntu-latest arch: diff --git a/.github/workflows/Numerical.yml b/.github/workflows/Numerical.yml index 275ac49e62..b1e45ee0a5 100644 --- a/.github/workflows/Numerical.yml +++ b/.github/workflows/Numerical.yml @@ -13,7 +13,7 @@ jobs: matrix: version: - '1.3' - - '1' + - '1.5' os: - ubuntu-latest arch: diff --git a/.github/workflows/StanCI.yml b/.github/workflows/StanCI.yml index 55d62dc6aa..49e73f1dc4 100644 --- a/.github/workflows/StanCI.yml +++ b/.github/workflows/StanCI.yml @@ -13,7 +13,7 @@ jobs: matrix: version: - '1.3' - - '1' + - '1.5' os: - ubuntu-latest arch: diff --git a/.github/workflows/TuringCI.yml b/.github/workflows/TuringCI.yml index b554c12ece..48408e7caf 100644 --- a/.github/workflows/TuringCI.yml +++ b/.github/workflows/TuringCI.yml @@ -14,7 +14,7 @@ jobs: matrix: version: - '1.3' - - '1' + - '1.5' os: - ubuntu-latest - macOS-latest diff --git a/test/inference/Inference.jl b/test/inference/Inference.jl index 509cbb0d26..4723a204ac 100644 --- a/test/inference/Inference.jl +++ b/test/inference/Inference.jl @@ -6,11 +6,13 @@ @testset "rng" begin model = gdemo_default + # multithreaded sampling with PG causes segfaults on Julia 1.5.4 + # https://github.com/TuringLang/Turing.jl/issues/1571 samplers = (HMC(0.1, 7), - PG(10), + #PG(10), IS(), MH(), - Gibbs(PG(3, :s), HMC(0.4, 8, :m)), + #Gibbs(PG(3, :s), HMC(0.4, 8, :m)), Gibbs(HMC(0.1, 5, :s), ESS(:m))) for sampler in samplers Random.seed!(5)