Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 8c6544c8 authored by Matthieu Kuhn's avatar Matthieu Kuhn Committed by Mathieu Faverge
Browse files

testing/getrf: Change the default to non diagonal dominant matrices

parent 71e8fb2c
No related branches found
No related tags found
1 merge request!378LU factorization with partial pivoting per column (warning: panel only)
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
* @author Alycia Lisito * @author Alycia Lisito
* @author Matthieu Kuhn * @author Matthieu Kuhn
* @author Lionel Eyraud-Dubois * @author Lionel Eyraud-Dubois
* @date 2023-07-05 * @date 2023-08-22
* @precisions normal z -> c d s * @precisions normal z -> c d s
* *
*/ */
...@@ -39,7 +39,7 @@ testing_zgetrf_desc( run_arg_list_t *args, int check ) ...@@ -39,7 +39,7 @@ testing_zgetrf_desc( run_arg_list_t *args, int check )
int M = run_arg_get_int( args, "M", N ); int M = run_arg_get_int( args, "M", N );
int LDA = run_arg_get_int( args, "LDA", M ); int LDA = run_arg_get_int( args, "LDA", M );
int seedA = run_arg_get_int( args, "seedA", testing_ialea() ); 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 ); int minMN = chameleon_min( M, N );
/* Descriptors */ /* Descriptors */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment