From 0e121c064e051716bdfca892b210fa52c792ac29 Mon Sep 17 00:00:00 2001 From: Eric Kunze Date: Wed, 10 Apr 2024 15:26:55 -0700 Subject: Clarify error bound for non-normal values Signed-off-by: Eric Kunze Change-Id: I9678952cc78cdf90272ccd5179b6220c293d62f7 --- chapters/introduction.adoc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'chapters') diff --git a/chapters/introduction.adoc b/chapters/introduction.adoc index 0030757..5406129 100644 --- a/chapters/introduction.adoc +++ b/chapters/introduction.adoc @@ -280,7 +280,7 @@ Otherwise the result must be within 5 ulp of the mathematical result. | <> | Let `x` be an input element and `out_imp` the implementation output of `exp(x)`. + Let `out_ref` be the result of the fp64_t reference implementation of `exp(x)`. + -Let `err_bnd = abs(out_ref) * exp2(-normal_frac) * (1+abs(x))` + +Let `err_bnd = calcAbsErrorBound(out_ref, (1+abs(x)), 0, 1)` + Then `tosa_reference_check_fp_bnd(out_imp, out_ref, err_bnd)` must be true | <> @@ -288,19 +288,19 @@ Then `tosa_reference_check_fp_bnd(out_imp, out_ref, err_bnd)` must be Let `out_imp` be the implementation output of `pow(x,y)`. + If `x` is less than zero and `y` is non-integral then the result must be a NaN. + Let `out_ref` be the result of the fp64_t reference implementation of `pow(x,y)`. + -Let `err_bnd = abs(out_ref) * exp2(-normal_frac) * (2 * (1+abs(log(abs(x))*y)))` + +Let `err_bnd = calcAbsErrorBound(out_ref, 2 * (1+abs(log(abs(x))*y)), 0, 1)` + Then `tosa_reference_check_fp_bnd(out_imp, out_ref, err_bnd)` must be true | <> | Let `x` be an input element and `out_imp` the implementation output. + Let `out_ref` be the result of the fp64_t reference implementation. + -Let `err_bnd = abs(out_ref) * exp2(-normal_frac) * (2 * (1+abs(x)))` + +Let `err_bnd = calcAbsErrorBound(out_ref, 2 * (1+abs(x)), 0, 1)` + Then `tosa_reference_check_fp_bnd(out_imp, out_ref, err_bnd)` must be true | <> | Let `x` be an input element and `out_imp` the implementation output. + Let `out_ref` be the result of the fp64_t reference implementation. + -Let `err_bnd = exp2(-normal_frac) * max(0.5, abs(out_ref) * (4 * (1+abs(x))))` + +Let `err_bnd = calcAbsErrorBound(out_ref, 4 * (1+abs(x)), 0.5, 1)` + Then `tosa_reference_check_fp_bnd(out_imp, out_ref, err_bnd)` must be true | <> @@ -321,13 +321,13 @@ Then `tosa_reference_check_fp_bnd(out_imp, out_ref, err_bnd)` must be | <> | Let `x` be an input element and `out_imp` the implementation output of `cos(x)`. + Let `out_ref` be the result of the fp64_t reference implementation of `cos(x)`. + -Let `err_bnd = abs(x) * exp2(-normal_frac/2)` + +Let `err_bnd = calcAbsErrorBound(x, 1+abs(x), 0, 2)` + Then `tosa_reference_check_fp_bnd(out_imp, out_ref, err_bnd)` must be true | <> | Let `x` be an input element and `out_imp` the implementation output of `sin(x)`. + Let `out_ref` be the result of the fp64_t reference implementation of `sin(x)`. + -Let `err_bnd = abs(x) * exp2(-normal_frac/2)` + +Let `err_bnd = calcAbsErrorBound(x, abs(x), 0, 2)` + Then `tosa_reference_check_fp_bnd(out_imp, out_ref, err_bnd)` must be true | <> -- cgit v1.2.1