Skip to content

Commit

Permalink
forward GEMM3M calls for GENERIC targets to the regular C/ZGEMM for now
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-frbg authored Nov 14, 2024
1 parent 926e56e commit 2a290df
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 @@ -86,7 +86,7 @@
#endif

static int (*gemm[])(blas_arg_t *, BLASLONG *, BLASLONG *, IFLOAT *, IFLOAT *, BLASLONG) = {
#ifndef GEMM3M
#if !defined(GEMM3M) || defined(GENERIC)
GEMM_NN, GEMM_TN, GEMM_RN, GEMM_CN,
GEMM_NT, GEMM_TT, GEMM_RT, GEMM_CT,
GEMM_NR, GEMM_TR, GEMM_RR, GEMM_CR,
Expand Down

0 comments on commit 2a290df

Please sign in to comment.