Skip to content

Commit

Permalink
Merge pull request #4852 from martin-frbg/fix4814
Browse files Browse the repository at this point in the history
Disable forwarding from SBGEMM to SBGEMV for now
  • Loading branch information
martin-frbg authored Aug 8, 2024
2 parents d92cc96 + 7878976 commit 1c2bfea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion interface/gemm.c
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ void CNAME(enum CBLAS_ORDER order, enum CBLAS_TRANSPOSE TransA, enum CBLAS_TRANS
args.m, args.n, args.k, args.lda, args.ldb, args.ldc);
#endif

#if defined(GEMM_GEMV_FORWARD) && !defined(GEMM3M) && !defined(COMPLEX)
#if defined(GEMM_GEMV_FORWARD) && !defined(GEMM3M) && !defined(COMPLEX) && !defined(BFLOAT16)
// Check if we can convert GEMM -> GEMV
if (args.k != 0) {
if (args.n == 1) {
Expand Down

0 comments on commit 1c2bfea

Please sign in to comment.