From 53d7d70884cd13624e821a0aed63a87adc652267 Mon Sep 17 00:00:00 2001 From: jatin Date: Thu, 18 Jan 2024 23:49:31 -0800 Subject: [PATCH] Tweaking error bounds --- test/src/sigmoid_approx_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/src/sigmoid_approx_test.cpp b/test/src/sigmoid_approx_test.cpp index 66a6192..2cddbdd 100644 --- a/test/src/sigmoid_approx_test.cpp +++ b/test/src/sigmoid_approx_test.cpp @@ -94,7 +94,7 @@ TEST_CASE ("Sigmoid (Exp) Approx Test") test_approx ([] (auto x) { return math_approx::sigmoid_exp<5> (x); }, 1.5e-7f, - 7.0e-7f, + 7.5e-7f, 12); }