libs/libm/libm: increase number of 'log' iterations before epsilon relaxation

Signed-off-by: Petro Karashchenko <petro.karashchenko@gmail.com>
This commit is contained in:
Petro Karashchenko 2024-09-06 08:16:03 +02:00 committed by Xiang Xiao
parent 02b1e895e2
commit c6a7816bed
2 changed files with 2 additions and 2 deletions

View File

@ -46,7 +46,7 @@
* todo: might need to adjust the double floating point version too. * todo: might need to adjust the double floating point version too.
*/ */
#define LOG_MAX_ITER 10 #define LOG_MAX_ITER 400
#define LOG_RELAX_MULTIPLIER 2.0 #define LOG_RELAX_MULTIPLIER 2.0
/**************************************************************************** /****************************************************************************

View File

@ -43,7 +43,7 @@
* todo: might need to adjust the double floating point version too. * todo: might need to adjust the double floating point version too.
*/ */
#define LOGF_MAX_ITER 10 #define LOGF_MAX_ITER 400
#define LOGF_RELAX_MULTIPLIER 2.0F #define LOGF_RELAX_MULTIPLIER 2.0F
/**************************************************************************** /****************************************************************************