Skip to content

Commit

Permalink
fix cbrt fast threshold
Browse files Browse the repository at this point in the history
  • Loading branch information
Geolm committed Jan 29, 2024
1 parent ab79491 commit f1d9f36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit f1d9f36

Please sign in to comment.