Skip to content

Commit

Permalink
Fix argument list of RELAPACK_?gemmt for good
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-frbg authored Mar 17, 2024
1 parent 79cb121 commit f95c2f6
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions relapack/src/lapack_wrappers.c
Original file line number Diff line number Diff line change
Expand Up @@ -566,8 +566,7 @@ void LAPACK(sgemmt)(
const float *B, const blasint *ldB,
const float *beta, float *C, const blasint *ldC
) {
blasint info;
RELAPACK_sgemmt(uplo, transA, transB, n, k, alpha, A, ldA, B, ldB, beta, C, info);
RELAPACK_sgemmt(uplo, transA, transB, n, k, alpha, A, ldA, B, ldB, beta, C, ldC);
}
#endif

Expand All @@ -579,8 +578,7 @@ void LAPACK(dgemmt)(
const double *B, const blasint *ldB,
const double *beta, double *C, const blasint *ldC
) {
blasint info;
RELAPACK_dgemmt(uplo, transA, transB, n, k, alpha, A, ldA, B, ldB, beta, C, info);
RELAPACK_dgemmt(uplo, transA, transB, n, k, alpha, A, ldA, B, ldB, beta, C, ldC);
}
#endif

Expand All @@ -592,8 +590,7 @@ void LAPACK(cgemmt)(
const float *B, const blasint *ldB,
const float *beta, float *C, const blasint *ldC
) {
blasint info;
RELAPACK_cgemmt(uplo, transA, transB, n, k, alpha, A, ldA, B, ldB, beta, C, info);
RELAPACK_cgemmt(uplo, transA, transB, n, k, alpha, A, ldA, B, ldB, beta, C, ldC);
}
#endif

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

0 comments on commit f95c2f6

Please sign in to comment.