Skip to content

Commit

Permalink
Change threshold to tolerate precision losses in large low-precision …
Browse files Browse the repository at this point in the history
…GEMMs
  • Loading branch information
lucabertaccini committed Nov 22, 2023
1 parent d6dd754 commit 5a4584a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sw/blas/gemm/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ int main() {
break;
case FP16:
if (fabs(result[idx] - ((__fp16 *)local_c)[idx]) <
0.001)
0.065)
errors--;
break;
case FP8:
Expand Down

0 comments on commit 5a4584a

Please sign in to comment.