Skip to content

Commit

Permalink
gemm: Lower error thresholds as cancellations can now take place
Browse files Browse the repository at this point in the history
  • Loading branch information
colluca committed Aug 28, 2024
1 parent 8ce7b91 commit ad76f78
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sw/blas/gemm/scripts/verify.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit ad76f78

Please sign in to comment.