Merge pull request #4022 from martin-frbg/gemmtm

fix cblas_?gemmt
This commit is contained in:
Martin Kroeker 2023-05-03 11:24:54 +02:00 committed by GitHub
commit 29c717050f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -177,7 +177,7 @@ void NAME(char *UPLO, char *TRANSA, char *TRANSB,
#else #else
void CNAME(enum CBLAS_ORDER order, enum CBLAS_UPLO Uplo, void CNAME(enum CBLAS_ORDER order, enum CBLAS_UPLO Uplo,
enum CBLAS_TRANSPOSE TransA, enum CBLAS_TRANSPOSE TransB, blasint M, enum CBLAS_TRANSPOSE TransA, enum CBLAS_TRANSPOSE TransB, blasint m,
blasint k, blasint k,
#ifndef COMPLEX #ifndef COMPLEX
FLOAT alpha, FLOAT alpha,
@ -199,7 +199,7 @@ void CNAME(enum CBLAS_ORDER order, enum CBLAS_UPLO Uplo,
int transa, transb, uplo; int transa, transb, uplo;
blasint info; blasint info;
blasint m, lda, ldb; blasint lda, ldb;
FLOAT *a, *b; FLOAT *a, *b;
XFLOAT *buffer; XFLOAT *buffer;
@ -392,7 +392,7 @@ void CNAME(enum CBLAS_ORDER order, enum CBLAS_UPLO Uplo,
#endif #endif
if ((m == 0) ) if (m == 0)
return; return;
IDEBUG_START; IDEBUG_START;