diff options
| author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2025-01-28 18:22:44 -0300 |
|---|---|---|
| committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2025-03-12 13:40:07 -0300 |
| commit | 3e8814903c584b582740b42fa5fb0ad4e0e480bf (patch) | |
| tree | 6b82c080657dd8d8433adfc68ded5ca79e3831b3 /math/libm-test-support.c | |
| parent | eea6f1e079a301dfd5c7b7f4faf38b4d6e7ea059 (diff) | |
math: Refactor how to use libm-test-ulps
The current approach tracks math maximum supported errors by explicitly
setting them per function and architecture. On newer implementations or
new compiler versions, the file is updated with newer values if it
shows higher results. The idea is to track the maximum known error, to
update the manual with the obtained values.
The constant libm-test-ulps shows little value, where it is usually a
mechanical change done by the maintainer, for past releases it is
usually ignored whether the ulp change resulted from a compiler
regression, and the math tests already have a maximum ulp error that
triggers a regression.
It was shown by a recent update after the new acosf [1] implementation
that is correctly rounded, where the libm-test-ulps was indeed from a
compiler issue.
This patch removes all arch-specific libm-test-ulps, adds system generic
libm-test-ulps where applicable, and changes its semantics. The generic
files now track specific implementation constraints, like if it is
expected to be correctly rounded, or if the system-specific has
different error expectations.
Now multiple libm-test-ulps can be defined, and system-specific
overrides generic implementation. This is for the case where
arch-specific implementation might show worse precision than generic
implementation, for instance, the cbrtf on i686.
Regressions are only reported if the implementation shows larger errors
than 9 ulps (13 for IBM long double) unless it is overridden by
libm-test-ulps and the maximum error is not printed at the end of tests.
The regen-ulps rule is also removed since it does not make sense to
update the libm-test-ulps automatically.
The manual error table is also removed, Paul Zimmermann and others have
been tracking libm precision with a more comprehensive analysis for some
releases; so link to his work instead.
[1] https://sourceware.org/git/?p=glibc.git;a=commit;h=9cc9f8e11e8fb8f54f1e84d9f024917634a78201
Diffstat (limited to 'math/libm-test-support.c')
| -rw-r--r-- | math/libm-test-support.c | 66 |
1 files changed, 49 insertions, 17 deletions
diff --git a/math/libm-test-support.c b/math/libm-test-support.c index 3a7b096f0d..31ae9902e6 100644 --- a/math/libm-test-support.c +++ b/math/libm-test-support.c @@ -109,10 +109,12 @@ #include "libm-test-support.h" +#include <array_length.h> #include <argp.h> #include <errno.h> #include <string.h> #include <assert.h> +#include <stdbool.h> /* This header defines func_ulps, func_real_ulps and func_imag_ulps arrays. */ @@ -146,6 +148,8 @@ static FLOAT prev_max_error, prev_real_max_error, prev_imag_max_error; static FLOAT max_valid_error; +static bool is_complex = false; + /* Sufficient numbers of digits to represent any floating-point value unambiguously (for any choice of the number of bits in the first hex digit, in the case of TYPE_HEX_DIG). When used with printf @@ -186,6 +190,20 @@ fmt_ftostr (char *dest, size_t size, int precision, const char *conversion, FTOSTR (dest, size, format, value); } + +static FLOAT +default_max_valid_error (int exact, int testing_ibm128) +{ + if (testing_ibm128) + /* The documented accuracy of IBM long double division is 3ulp + (see libgcc/config/rs6000/ibm-ldouble-format), so do not + require better accuracy for libm functions that are exactly + defined for other formats. */ + return max_valid_error = exact ? 3 : 16; + else + return max_valid_error = exact ? 0 : 9; +} + /* Compare KEY (a string, with the name of a function) with ULP (a pointer to a struct ulp_data structure), returning a value less than, equal to or greater than zero for use in bsearch. */ @@ -204,14 +222,17 @@ static const int ulp_idx = ULP_IDX; no ulps listed. */ static FLOAT -find_ulps (const char *name, const struct ulp_data *data, size_t nmemb) +find_ulps (const char *name, const struct ulp_data *data, size_t nmemb, + int exact, int testing_ibm128) { const struct ulp_data *entry = bsearch (name, data, nmemb, sizeof (*data), compare_ulp_data); if (entry == NULL) - return 0; + return default_max_valid_error (exact, testing_ibm128); else - return entry->max_ulp[ulp_idx]; + return entry->max_ulp[ulp_idx] == -1 + ? default_max_valid_error (exact, testing_ibm128) + : entry->max_ulp[ulp_idx]; } void @@ -221,22 +242,15 @@ init_max_error (const char *name, int exact, int testing_ibm128) real_max_error = 0; imag_max_error = 0; test_ibm128 = testing_ibm128; - prev_max_error = find_ulps (name, func_ulps, - sizeof (func_ulps) / sizeof (func_ulps[0])); + prev_max_error = find_ulps (name, func_ulps, array_length (func_ulps), + exact, testing_ibm128); prev_real_max_error = find_ulps (name, func_real_ulps, - (sizeof (func_real_ulps) - / sizeof (func_real_ulps[0]))); + array_length (func_real_ulps), exact, + testing_ibm128); prev_imag_max_error = find_ulps (name, func_imag_ulps, - (sizeof (func_imag_ulps) - / sizeof (func_imag_ulps[0]))); - if (testing_ibm128) - /* The documented accuracy of IBM long double division is 3ulp - (see libgcc/config/rs6000/ibm-ldouble-format), so do not - require better accuracy for libm functions that are exactly - defined for other formats. */ - max_valid_error = exact ? 3 : 16; - else - max_valid_error = exact ? 0 : 9; + array_length (func_imag_ulps), + exact, testing_ibm128); + max_valid_error = default_max_valid_error (exact, testing_ibm128); prev_max_error = (prev_max_error <= max_valid_error ? prev_max_error : max_valid_error); @@ -476,6 +490,8 @@ check_complex_max_error (const char *func_name) update_stats (ok, TEST_MAXERROR); print_test_end (thisTest, func_name, TEST_MAXERROR); + + is_complex = true; } @@ -1322,6 +1338,22 @@ libm_test_finish (void) fclose (ulps_file); printf ("\nTest suite completed:\n"); + printf (" Maximum error found of "); + if (is_complex) + { + char rmestr[FSTR_MAX]; + char imestr[FSTR_MAX]; + FTOSTR (rmestr, FSTR_MAX, "%.0f", FUNC (ceil) (real_max_error)); + FTOSTR (imestr, FSTR_MAX, "%.0f", FUNC (ceil) (imag_max_error)); + printf ("`%s' ulp for real part and `%s' ulp for imaginary part\n", + rmestr, imestr); + } + else + { + char mestr[FSTR_MAX]; + FTOSTR (mestr, FSTR_MAX, "%.0f", FUNC (ceil) (max_error)); + printf ("`%s' ulp\n", mestr); + } printf (" %d max error test cases,\n", noMaxErrorTests); printf (" %d input tests,\n", noTests); printf (" - with %d tests for exception flags,\n", noExcTests); |
