From 27a4084a1c145aa1cc2e9498021a1b3974d94a67 Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Thu, 8 May 2025 16:30:37 +0200 Subject: [PATCH] make sgemm_direct unconditionally available on all arm64 --- common_param.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/common_param.h b/common_param.h index d4d5a8eb2..2d771a27d 100644 --- a/common_param.h +++ b/common_param.h @@ -224,10 +224,8 @@ BLASLONG (*ismin_k) (BLASLONG, float *, BLASLONG); int (*sgemm_direct_performant) (BLASLONG M, BLASLONG N, BLASLONG K); #endif #ifdef ARCH_ARM64 -#ifdef HAVE_SME void (*sgemm_direct) (BLASLONG, BLASLONG, BLASLONG, float *, BLASLONG , float *, BLASLONG , float * , BLASLONG); #endif -#endif int (*sgemm_kernel )(BLASLONG, BLASLONG, BLASLONG, float, float *, float *, float *, BLASLONG);