Skip to content

Commit e21d6da

Browse files
committed
Fix error report about illegal argument
1 parent 3b4e807 commit e21d6da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CBLAS/src/cblas_sgemm.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ void cblas_sgemm(const CBLAS_LAYOUT layout, const CBLAS_TRANSPOSE TransA,
9191
else
9292
{
9393
cblas_xerbla(2, "cblas_sgemm",
94-
"Illegal TransA setting, %d\n", TransA);
94+
"Illegal TransB setting, %d\n", TransB);
9595
CBLAS_CallFromC = 0;
9696
RowMajorStrg = 0;
9797
return;

0 commit comments

Comments
 (0)