Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 6462bc8f authored by LISITO Alycia's avatar LISITO Alycia Committed by Mathieu Faverge
Browse files

testing: add check api std for cholesky

parent 62f1c4a0
No related branches found
No related tags found
1 merge request!286Add checks for the starndard API of the Cholesky functions
......@@ -122,7 +122,7 @@ testing_zpoinv_std( run_arg_list_t *args, int check )
CHAMELEON_Complex64_t *A0 = malloc( LDA * N * sizeof(CHAMELEON_Complex64_t) );
CHAMELEON_zplghe( (double)N, uplo, N, A0, LDA, seedA );
// hres += check_ztrtri( args, ChamHermitian, uplo, ChamNonUnit, descA0, descA );
hres += check_ztrtri_std( args, ChamHermitian, uplo, ChamNonUnit, N, A0, A, LDA );
free( A0 );
}
......
......@@ -142,22 +142,22 @@ testing_zposv_std( run_arg_list_t *args, int check )
/* Checks the factorisation and residue */
if ( check ) {
CHAMELEON_Complex64_t *A0 = malloc( LDA*N*sizeof(CHAMELEON_Complex64_t) );
CHAMELEON_Complex64_t *X0 = malloc( LDB*NRHS*sizeof(CHAMELEON_Complex64_t) );
CHAMELEON_Complex64_t *A0 = malloc( LDA*N* sizeof(CHAMELEON_Complex64_t) );
CHAMELEON_Complex64_t *B = malloc( LDB*NRHS*sizeof(CHAMELEON_Complex64_t) );
/* Check the factorization */
CHAMELEON_zplghe( (double)N, uplo, N, A0, LDA, seedA );
// hres += check_zxxtrf( args, ChamHermitian, uplo, descA0, descA );
hres += check_zxxtrf_std( args, ChamHermitian, uplo, N, NRHS, A0, A, LDA );
/* Check the solve */
CHAMELEON_zplrnt( N, NRHS, X0, LDB, seedB );
CHAMELEON_zplrnt( N, NRHS, B, LDB, seedB );
CHAMELEON_zplghe( (double)N, uplo, N, A0, LDA, seedA );
// hres += check_zsolve( args, ChamHermitian, ChamNoTrans, uplo, descA0, descX, descB );
hres += check_zsolve_std( args, ChamHermitian, ChamNoTrans, uplo, N, NRHS, A0, LDA, X, B, LDB );
free( A0 );
free( X0 );
free( B );
}
free( A );
......@@ -170,7 +170,7 @@ testing_t test_zposv;
const char *zposv_params[] = { "mtxfmt", "nb", "uplo", "n", "nrhs",
"lda", "ldb", "seedA", "seedB", NULL };
const char *zposv_output[] = { NULL };
const char *zposv_outchk[] = { "RETURN", NULL };
const char *zposv_outchk[] = { "||A||", "||A-fact(A)||", "||X||", "||B||", "||Ax-b||", "||Ax-b||/N/eps/(||A||||x||+||b||", "RETURN", NULL };
/**
* @brief Testing registration function
......
......@@ -113,7 +113,7 @@ testing_zpotrf_std( run_arg_list_t *args, int check )
CHAMELEON_Complex64_t *A0 = malloc( LDA * N * sizeof(CHAMELEON_Complex64_t) );
CHAMELEON_zplghe( (double)N, uplo, N, A0, LDA, seedA );
// hres += check_zxxtrf( args, ChamHermitian, uplo, A0, A );
hres += check_zxxtrf_std( args, ChamHermitian, uplo, N, N, A0, A, LDA );
free( A0 );
}
......
......@@ -121,7 +121,7 @@ testing_zpotri_std( run_arg_list_t *args, int check )
CHAMELEON_Complex64_t *A0 = malloc( LDA*N*sizeof(CHAMELEON_Complex64_t) );
CHAMELEON_zplghe( (double)N, uplo, N, A0, LDA, seedA );
// hres += check_ztrtri( args, ChamHermitian, uplo, ChamNonUnit, descA0, descA );
hres += check_ztrtri_std( args, ChamHermitian, uplo, ChamNonUnit, N, A0, A, LDA );
free( A0 );
}
......
......@@ -117,7 +117,7 @@ testing_zpotrs_std( run_arg_list_t *args, int check )
CHAMELEON_Set( CHAMELEON_TILE_SIZE, nb );
/* Creates the matrices */
A = malloc( LDA*N*sizeof(CHAMELEON_Complex64_t) );
A = malloc( LDA*N* sizeof(CHAMELEON_Complex64_t) );
X = malloc( LDB*NRHS*sizeof(CHAMELEON_Complex64_t) );
/* Fills the matrix with random values */
......@@ -135,16 +135,16 @@ testing_zpotrs_std( run_arg_list_t *args, int check )
/* Checks the factorisation and residue */
if ( check ) {
CHAMELEON_Complex64_t *A0 = malloc( LDA*N*sizeof(CHAMELEON_Complex64_t) );
CHAMELEON_Complex64_t *X0 = malloc( LDB*NRHS*sizeof(CHAMELEON_Complex64_t) );
CHAMELEON_Complex64_t *A0 = malloc( LDA*N* sizeof(CHAMELEON_Complex64_t) );
CHAMELEON_Complex64_t *B = malloc( LDB*NRHS*sizeof(CHAMELEON_Complex64_t) );
CHAMELEON_zplghe( (double)N, uplo, N, A0, LDA, seedA );
CHAMELEON_zplrnt( N, NRHS, X0, LDB, seedB );
CHAMELEON_zplrnt( N, NRHS, B, LDB, seedB );
// hres += check_zsolve( args, ChamHermitian, ChamNoTrans, uplo, descA0, descX, descB );
hres += check_zsolve_std( args, ChamHermitian, ChamNoTrans, uplo, N, NRHS, A0, LDA, X, B, LDB );
free( A0 );
free( X0 );
free( B );
}
free( A );
......
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