From 36a8b29c5635db851136e8c4501befd7c75334bf Mon Sep 17 00:00:00 2001 From: jessegrabowski Date: Wed, 14 Feb 2024 12:04:49 +0800 Subject: [PATCH] Relax tolerance in loglikelihood tests --- pymc_experimental/tests/statespace/test_distributions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pymc_experimental/tests/statespace/test_distributions.py b/pymc_experimental/tests/statespace/test_distributions.py index 910a89290..1da4be60c 100644 --- a/pymc_experimental/tests/statespace/test_distributions.py +++ b/pymc_experimental/tests/statespace/test_distributions.py @@ -26,8 +26,8 @@ # TODO: These are pretty loose because of all the stabilizing of covariance matrices that is done inside the kalman # filters. When that is improved, this should be tightened. -ATOL = 1e-6 if floatX.endswith("64") else 1e-4 -RTOL = 1e-6 if floatX.endswith("64") else 1e-4 +ATOL = 1e-5 if floatX.endswith("64") else 1e-4 +RTOL = 1e-5 if floatX.endswith("64") else 1e-4 filter_names = [ "standard",