Skip to content

Commit 4058f32

Browse files
authored
Fix xGEMMT argument lists
1 parent 35d5105 commit 4058f32

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

relapack/src/lapack_wrappers.c

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -566,7 +566,8 @@ void LAPACK(sgemmt)(
566566
const float *B, const blasint *ldB,
567567
const float *beta, float *C, const blasint *ldC
568568
) {
569-
RELAPACK_sgemmt(uplo, n, A, ldA, info);
569+
blasint info;
570+
RELAPACK_sgemmt(uplo, transA, transB, n, k, alpha, A, ldA, B, ldB, beta, C, info);
570571
}
571572
#endif
572573

@@ -578,7 +579,8 @@ void LAPACK(dgemmt)(
578579
const double *B, const blasint *ldB,
579580
const double *beta, double *C, const blasint *ldC
580581
) {
581-
RELAPACK_dgemmt(uplo, n, A, ldA, info);
582+
blasint info;
583+
RELAPACK_dgemmt(uplo, transA, transB, n, k, alpha, A, ldA, B, ldB, beta, C, info);
582584
}
583585
#endif
584586

@@ -590,7 +592,8 @@ void LAPACK(cgemmt)(
590592
const float *B, const blasint *ldB,
591593
const float *beta, float *C, const blasint *ldC
592594
) {
593-
RELAPACK_cgemmt(uplo, n, A, ldA, info);
595+
blasint info;
596+
RELAPACK_cgemmt(uplo, transA, transB, n, k, alpha, A, ldA, B, ldB, beta, C, info);
594597
}
595598
#endif
596599

@@ -602,6 +605,7 @@ void LAPACK(zgemmt)(
602605
const double *B, const blasint *ldB,
603606
const double *beta, double *C, const blasint *ldC
604607
) {
605-
RELAPACK_zgemmt(uplo, n, A, ldA, info);
608+
blasint info;
609+
RELAPACK_zgemmt(uplo, transA, transB, n, k, alpha, A, ldA, B, ldB, beta, C, info);
606610
}
607611
#endif

0 commit comments

Comments
 (0)