From f1d9f36669e0002c179ac841b88a7a9a5158a8a6 Mon Sep 17 00:00:00 2001 From: Geolm Date: Mon, 29 Jan 2024 13:38:29 -0500 Subject: [PATCH] fix cbrt fast threshold --- tests/test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test.c b/tests/test.c index 9280d13..fc45e5c 100644 --- a/tests/test.c +++ b/tests/test.c @@ -146,7 +146,7 @@ float32x4_t simd_atan2(float32x4_t angle) static const float trigo_threshold = 1.e-06f; static const float exp_threshold = 3.e-07f; static const float arc_theshold = 1.e-04f; -static const float cbrt_threshold = 1.e04f; +static const float cbrt_threshold = 2.e-04f; #else static const float trigo_threshold = FLT_EPSILON; static const float exp_threshold = 2.e-07f;