Browse Source

Merge pull request #4022 from martin-frbg/gemmtm

fix cblas_?gemmt
tags/v0.3.24
Martin Kroeker GitHub 3 years ago
parent
commit
29c717050f
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      interface/gemmt.c

+ 3
- 3
interface/gemmt.c View File

@@ -177,7 +177,7 @@ void NAME(char *UPLO, char *TRANSA, char *TRANSB,
#else

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,
#ifndef COMPLEX
FLOAT alpha,
@@ -199,7 +199,7 @@ void CNAME(enum CBLAS_ORDER order, enum CBLAS_UPLO Uplo,

int transa, transb, uplo;
blasint info;
blasint m, lda, ldb;
blasint lda, ldb;
FLOAT *a, *b;
XFLOAT *buffer;

@@ -392,7 +392,7 @@ void CNAME(enum CBLAS_ORDER order, enum CBLAS_UPLO Uplo,

#endif

if ((m == 0) )
if (m == 0)
return;

IDEBUG_START;


Loading…
Cancel
Save