Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 527c3d42 authored by Mathieu Faverge's avatar Mathieu Faverge
Browse files

testing/sytrf: Check needs a fully initialized matrix and not only the triangle

parent a938be56
No related branches found
No related tags found
1 merge request!507ci: add test_starpu_cuda
...@@ -80,7 +80,7 @@ testing_zsysv_desc( run_arg_list_t *args, int check ) ...@@ -80,7 +80,7 @@ testing_zsysv_desc( run_arg_list_t *args, int check )
/* Check the factorization */ /* Check the factorization */
descA0 = CHAMELEON_Desc_Copy( descA, CHAMELEON_MAT_ALLOC_TILE ); descA0 = CHAMELEON_Desc_Copy( descA, CHAMELEON_MAT_ALLOC_TILE );
CHAMELEON_zplgsy_Tile( (double)N, uplo, descA0, seedA ); CHAMELEON_zplgsy_Tile( (double)N, ChamUpperLower, descA0, seedA );
hres += check_zxxtrf( args, ChamSymmetric, uplo, descA0, descA ); hres += check_zxxtrf( args, ChamSymmetric, uplo, descA0, descA );
......
...@@ -63,7 +63,7 @@ testing_zsytrf_desc( run_arg_list_t *args, int check ) ...@@ -63,7 +63,7 @@ testing_zsytrf_desc( run_arg_list_t *args, int check )
/* Checks the factorisation and residue */ /* Checks the factorisation and residue */
if ( check ) { if ( check ) {
CHAM_desc_t *descA0 = CHAMELEON_Desc_Copy( descA, CHAMELEON_MAT_ALLOC_TILE ); CHAM_desc_t *descA0 = CHAMELEON_Desc_Copy( descA, CHAMELEON_MAT_ALLOC_TILE );
CHAMELEON_zplgsy_Tile( (double)N, uplo, descA0, seedA ); CHAMELEON_zplgsy_Tile( (double)N, ChamUpperLower, descA0, seedA );
hres += check_zxxtrf( args, ChamSymmetric, uplo, descA0, descA ); hres += check_zxxtrf( args, ChamSymmetric, uplo, descA0, descA );
......
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