Remove k2 loop from DGEMM TN and use a more conservative heuristic for SGEMM

This commit is contained in:
Chris Sidebottom
2024-07-18 17:37:18 +01:00
parent 8c472ef7e3
commit b1c9fafabb
2 changed files with 2 additions and 211 deletions
+1 -3
View File
@@ -35,11 +35,9 @@ int CNAME(int transa, int transb, BLASLONG M, BLASLONG N, BLASLONG K, FLOAT alph
if (MNK <= 64*64*64)
return 1;
#else // sgemm
if (MNK <= 256*256*256)
if (MNK <= 64*64*64)
return 1;
#endif
return 0;
}