Skip to content

Commit e2334d0

Browse files
author
Chip Kerchner
committed
Remove GEMV hack.
1 parent 66622de commit e2334d0

File tree

1 file changed

+0
-17
lines changed

1 file changed

+0
-17
lines changed

interface/gemm.c

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -47,29 +47,22 @@
4747
#define SMP_THRESHOLD_MIN 65536.0
4848
#ifdef XDOUBLE
4949
#define ERROR_NAME "QGEMM "
50-
#define GEMV BLASFUNC(qgemv)
5150
#elif defined(DOUBLE)
5251
#define ERROR_NAME "DGEMM "
53-
#define GEMV BLASFUNC(dgemv)
5452
#elif defined(BFLOAT16)
5553
#define ERROR_NAME "SBGEMM "
56-
#define GEMV BLASFUNC(sbgemv)
5754
#else
5855
#define ERROR_NAME "SGEMM "
59-
#define GEMV BLASFUNC(sgemv)
6056
#endif
6157
#else
6258
#define SMP_THRESHOLD_MIN 8192.0
6359
#ifndef GEMM3M
6460
#ifdef XDOUBLE
6561
#define ERROR_NAME "XGEMM "
66-
#define GEMV BLASFUNC(xgemv)
6762
#elif defined(DOUBLE)
6863
#define ERROR_NAME "ZGEMM "
69-
#define GEMV BLASFUNC(zgemv)
7064
#else
7165
#define ERROR_NAME "CGEMM "
72-
#define GEMV BLASFUNC(cgemv)
7366
#endif
7467
#else
7568
#ifdef XDOUBLE
@@ -197,16 +190,6 @@ void NAME(char *TRANSA, char *TRANSB,
197190
IFLOAT *buffer;
198191
IFLOAT *sa, *sb;
199192

200-
#if !defined(COMPLEX) && !defined(DOUBLE) && !defined(BFLOAT16)
201-
#if 1
202-
if (*N == 1) {
203-
GEMV(TRANSA, K, M, alpha, a, ldA, b, N, beta, c, N);
204-
//SUBROUTINE SGEMV(TRANS,M,N,ALPHA,A,LDA,X,INCX,BETA,Y,INCY)
205-
return;
206-
}
207-
#endif
208-
#endif
209-
210193
#ifdef SMP
211194
double MNK;
212195
#if defined(USE_SIMPLE_THREADED_LEVEL3) || !defined(NO_AFFINITY)

0 commit comments

Comments
 (0)