Fix CBLAS interface filling in the wrong triangle for Row-Major

This commit is contained in:
Martin Kroeker 2024-10-09 18:06:39 +02:00 committed by GitHub
parent 7ac5b9011f
commit 9762464718
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -319,8 +319,8 @@ void CNAME(enum CBLAS_ORDER order, enum CBLAS_UPLO Uplo,
lda = LDB; lda = LDB;
ldb = LDA; ldb = LDA;
if (Uplo == CblasUpper) uplo = 0; if (Uplo == CblasUpper) uplo = 1;
if (Uplo == CblasLower) uplo = 1; if (Uplo == CblasLower) uplo = 0;
if (TransB == CblasNoTrans) if (TransB == CblasNoTrans)
transa = 0; transa = 0;