Richard Henderson <richard.hender...@linaro.org> writes:

> Rename to parts$N_log2.  Though this is partly a ruse, since I do not
> believe the code will succeed for float128 without work.  Which is ok
> for now, because we do not need this for more than float32 and float64.
>
> Since berkeley-testfloat-3 doesn't support log2, compare float64_log2
> vs the system log2.  Fix the errors for inputs near 1.0:
>
> test: 3ff00000000000b0  +0x1.00000000000b0p+0
>   sf: 3d2fa00000000000  +0x1.fa00000000000p-45
> libm: 3d2fbd422b1bd36f  +0x1.fbd422b1bd36fp-45
> Error in fraction: 32170028290927 ulp
>
> test: 3feec24f6770b100  +0x1.ec24f6770b100p-1
>   sf: bfad3740d13c9ec0  -0x1.d3740d13c9ec0p-5
> libm: bfad3740d13c9e98  -0x1.d3740d13c9e98p-5
> Error in fraction: 40 ulp
>
> Signed-off-by: Richard Henderson <richard.hender...@linaro.org>
> ---
<snip>
> +
> +    /* glibc allows 3 ulp error in its libm-test-ulps; allow 4 here */
> +    if (!exact && ulp <= 4) {
> +        return;
> +    }
> +

nit: some whitespace there you won't see unless your editor highlights
it and you've been tweaking the checkpatch invocation :-/

Otherwise:

Reviewed-by: Alex Bennée <alex.ben...@linaro.org>

-- 
Alex Bennée

Reply via email to