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 10dc0b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sw/blas/gemm/src/gemm.h
Original file line number Diff line number Diff line change
Expand Up @@ -929,7 +929,7 @@ 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,
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;
Expand Down

0 comments on commit 10dc0b6

Please sign in to comment.