aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--chapters/introduction.adoc8
1 files changed, 8 insertions, 0 deletions
diff --git a/chapters/introduction.adoc b/chapters/introduction.adoc
index a580472..0a94ef3 100644
--- a/chapters/introduction.adoc
+++ b/chapters/introduction.adoc
@@ -321,6 +321,14 @@ Let `out_ref` be the result of the fp64_t reference implementation of `sin(x)`.
Let `err_bnd = abs(out_ref) * exp2(-normal_frac<in_out_t>/2)` +
Then `tosa_reference_check_fp_bnd<in_out_t>(out_imp, out_ref, err_bnd)` must be true
+| <<RESIZE>>
+| The result corresponds to a sequence of floating-point calculations. +
+The allowable error bound for the result of a resize is based on the maximum value of an element in the input tensor. +
+Let `out_imp` be the implementation output. +
+Let `out_ref` be the result of the fp64_t reference implementation. +
+Let `err_bnd = max(abs(input)) * 0.006`. +
+Then `tosa_reference_check_fp_bnd<out_t>(out_imp, out_ref, err_bnd)` must be true.
+
|===
===== Operator sequence precision requirement