From d80ea5e11e5f92e0f7c08afeba74cb7d1719987b Mon Sep 17 00:00:00 2001 From: Jeremy Johnson Date: Wed, 3 Jan 2024 10:54:12 +0000 Subject: Main Conformance: Re-adjust TANH compliance check Add lower bound to ABS ERROR checks to allow for cancellation of small values in error bounds checking. Re-adjust the error bounds multiplier to match the specification. Fix up naming of verify library info structs. Signed-off-by: Jeremy Johnson Change-Id: I3e178c3d7d59fef9c3696178646b23ed2a3ffc61 --- scripts/schemavalidation/compliance-config.schema.json | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'scripts') diff --git a/scripts/schemavalidation/compliance-config.schema.json b/scripts/schemavalidation/compliance-config.schema.json index e78d385..dd62404 100644 --- a/scripts/schemavalidation/compliance-config.schema.json +++ b/scripts/schemavalidation/compliance-config.schema.json @@ -1,5 +1,5 @@ { - "$comment": "Copyright (c) 2023, ARM Limited.", + "$comment": "Copyright (c) 2023-2024, ARM Limited.", "$comment": "SPDX-License-Identifier: Apache-2.0", "$id": "compliance-config.schema.json", "$schema": "https://json-schema.org/draft/2020-12/schema", @@ -61,6 +61,18 @@ "s", "ks" ] + }, + "abs_error_info": { + "description": "info required for the ABS_ERROR mode", + "type": "object", + "properties": + { + "lower_bound": { + "description": "lower bound multiplier for error bounds", + "type": "number" + } + }, + "additionalProperties": false } }, "additionalProperties": false, -- cgit v1.2.1