Skip to content

Commit

Permalink
zpotrf would use double alpha in zgemm (requires double_complex alpha)
Browse files Browse the repository at this point in the history
  • Loading branch information
abouteiller committed Dec 6, 2023
1 parent 8f7ea87 commit 2bd1667
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions tests/testing_zpotrf_dtd.c
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ int main(int argc, char **argv)
int m, n, k, total; /* loop counter */
/* Parameters passed on to Insert_task() */
int tempkm, tempmm, ldak, ldam, side, transA_p, transA_g, diag, trans, transB, ldan;
dplasma_complex64_t alpha_trsm, beta;
dplasma_complex64_t alpha_trsm, alpha_gemm, beta_gemm;
double alpha_herk, beta_herk;

/* Set defaults for non argv iparams */
Expand Down Expand Up @@ -111,7 +111,8 @@ int main(int argc, char **argv)
trans = dplasmaNoTrans;
alpha_herk = -1.0;
beta_herk = 1.0;
beta = 1.0;
alpha_gemm = -1.0;
beta_gemm = 1.0;
transB = dplasmaConjTrans;
transA_g = dplasmaNoTrans;

Expand Down Expand Up @@ -190,12 +191,12 @@ int main(int argc, char **argv)
PARSEC_DTD_EMPTY_FLAG, &tempmm,
PARSEC_DTD_EMPTY_FLAG, &dcA.super.mb,
PARSEC_DTD_EMPTY_FLAG, &dcA.super.mb,
PARSEC_DTD_EMPTY_FLAG, &alpha_herk,
PARSEC_DTD_EMPTY_FLAG, &alpha_gemm,
PARSEC_DTD_EMPTY_FLAG, PARSEC_DTD_TILE_OF(A, n, k),
PARSEC_DTD_EMPTY_FLAG, &ldan,
PARSEC_DTD_EMPTY_FLAG, PARSEC_DTD_TILE_OF(A, m, k),
PARSEC_DTD_EMPTY_FLAG, &ldam,
PARSEC_DTD_EMPTY_FLAG, &beta,
PARSEC_DTD_EMPTY_FLAG, &beta_gemm,
PARSEC_DTD_EMPTY_FLAG, PARSEC_DTD_TILE_OF(A, n, m),
PARSEC_DTD_EMPTY_FLAG, &ldan,
PARSEC_DTD_ARG_END );
Expand All @@ -211,7 +212,8 @@ int main(int argc, char **argv)
trans = dplasmaConjTrans;
alpha_herk = -1.0;
beta_herk = 1.0;
beta = 1.0;
alpha_gemm = -1.0;
beta_gemm = 1.0;
transB = dplasmaNoTrans;
transA_g = dplasmaConjTrans;

Expand Down Expand Up @@ -287,12 +289,12 @@ int main(int argc, char **argv)
PARSEC_DTD_EMPTY_FLAG, &dcA.super.mb,
PARSEC_DTD_EMPTY_FLAG, &tempmm,
PARSEC_DTD_EMPTY_FLAG, &dcA.super.mb,
PARSEC_DTD_EMPTY_FLAG, &alpha_herk,
PARSEC_DTD_EMPTY_FLAG, &alpha_gemm,
PARSEC_DTD_EMPTY_FLAG, PARSEC_DTD_TILE_OF(A, k, m),
PARSEC_DTD_EMPTY_FLAG, &ldak,
PARSEC_DTD_EMPTY_FLAG, PARSEC_DTD_TILE_OF(A, k, n),
PARSEC_DTD_EMPTY_FLAG, &ldak,
PARSEC_DTD_EMPTY_FLAG, &beta,
PARSEC_DTD_EMPTY_FLAG, &beta_gemm,
PARSEC_DTD_EMPTY_FLAG, PARSEC_DTD_TILE_OF(A, m, n),
PARSEC_DTD_EMPTY_FLAG, &ldan,
PARSEC_DTD_ARG_END );
Expand Down

0 comments on commit 2bd1667

Please sign in to comment.