From 311fb266c130296ec6bedf9c09f32d7eb176dd01 Mon Sep 17 00:00:00 2001 From: Luca Colagrande Date: Fri, 23 Aug 2024 14:58:31 +0200 Subject: [PATCH] gemm: Lower error thresholds as cancellations can now take place --- sw/blas/gemm/scripts/verify.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sw/blas/gemm/scripts/verify.py b/sw/blas/gemm/scripts/verify.py index 40840b327b..353ea13284 100755 --- a/sw/blas/gemm/scripts/verify.py +++ b/sw/blas/gemm/scripts/verify.py @@ -18,9 +18,9 @@ class GemmVerifier(Verifier): OUTPUT_UIDS = ['c'] ERR_THRESHOLD = { 1: 1e-4, - 2: 1e-2, - 4: 1e-6, - 8: 1e-6 + 2: 8e-2, + 4: 1e-3, + 8: 1e-3 } def __init__(self):