Skip to content

Commit

Permalink
Fix bug in GEMM
Browse files Browse the repository at this point in the history
  • Loading branch information
lucabertaccini committed Nov 24, 2023
1 parent 988d70b commit 489622a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sw/blas/gemm/src/gemm.h
Original file line number Diff line number Diff line change
Expand Up @@ -929,9 +929,9 @@ void gemm(precision_t prec, uint32_t expand, uint32_t setup_ssr,
}
break;
case FP8:
gemm_fp8_ex_opt(frac_m, n, k, (char*)a + offsetA, lda, (char*)b,
ldb, (char*)c + offsetC, ldc_strided, &beta,
setup_ssr);
gemm_fp8_ex_opt(frac_m, n, k, (char*)a + offsetA, lda_strided,
(char*)b, ldb, (char*)c + offsetC, ldc_strided,
&beta, setup_ssr);
break;
}
}

0 comments on commit 489622a

Please sign in to comment.