Skip to content

Commit

Permalink
Re-add accidental removal
Browse files Browse the repository at this point in the history
  • Loading branch information
Mousius committed Jul 23, 2024
1 parent ae5b4d9 commit d49210c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions interface/gemm.c
Original file line number Diff line number Diff line change
Expand Up @@ -493,6 +493,11 @@ void CNAME(enum CBLAS_ORDER order, enum CBLAS_TRANSPOSE TransA, enum CBLAS_TRANS

if ((args.m == 0) || (args.n == 0)) return;

#if 0
fprintf(stderr, "m = %4d n = %d k = %d lda = %4d ldb = %4d ldc = %4d\n",
args.m, args.n, args.k, args.lda, args.ldb, args.ldc);
#endif

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

0 comments on commit d49210c

Please sign in to comment.