forward GEMM3M calls for GENERIC targets to the regular C/ZGEMM for now

This commit is contained in:
Martin Kroeker
2024-11-14 14:07:08 -08:00
committed by GitHub
parent 926e56e389
commit 2a290dfc2c

View File

@@ -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,