From 8c6544c8e5741afceadbd899f92ef5c55c831140 Mon Sep 17 00:00:00 2001 From: Matthieu Kuhn <matthieu.kuhn@atos.net> Date: Thu, 20 Apr 2023 18:06:04 +0200 Subject: [PATCH] testing/getrf: Change the default to non diagonal dominant matrices --- testing/testing_zgetrf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testing/testing_zgetrf.c b/testing/testing_zgetrf.c index 978017c41..7dd9b4d57 100644 --- a/testing/testing_zgetrf.c +++ b/testing/testing_zgetrf.c @@ -15,7 +15,7 @@ * @author Alycia Lisito * @author Matthieu Kuhn * @author Lionel Eyraud-Dubois - * @date 2023-07-05 + * @date 2023-08-22 * @precisions normal z -> c d s * */ @@ -39,7 +39,7 @@ testing_zgetrf_desc( run_arg_list_t *args, int check ) int M = run_arg_get_int( args, "M", N ); int LDA = run_arg_get_int( args, "LDA", M ); int seedA = run_arg_get_int( args, "seedA", testing_ialea() ); - cham_diag_t diag = run_arg_get_diag( args, "diag", ChamUnit ); + cham_diag_t diag = run_arg_get_diag( args, "diag", ChamNonUnit ); int minMN = chameleon_min( M, N ); /* Descriptors */ -- GitLab