diff --git a/spm.c b/spm.c index ba93f523bd16890a1fb19197f5f95b900d1935c1..571b37801dd7f2027d6bbc0c1c1c8860aa063807 100644 --- a/spm.c +++ b/spm.c @@ -1205,6 +1205,10 @@ spmGenRHS( pastix_rhstype_t type, pastix_int_t nrhs, * ******************************************************************************* * + * @param[in] eps + * The epsilon threshold used for the refinement step. -1. to use the + * machine precision. + * * @param[in] nrhs * Defines the number of right hand side that must be generated. * @@ -1243,14 +1247,14 @@ spmGenRHS( pastix_rhstype_t type, pastix_int_t nrhs, * *******************************************************************************/ int -spmCheckAxb( pastix_int_t nrhs, +spmCheckAxb( double eps, pastix_int_t nrhs, const pastix_spm_t *spm, void *x0, pastix_int_t ldx0, void *b, pastix_int_t ldb, const void *x, pastix_int_t ldx ) { - static int (*ptrfunc[4])(int, const pastix_spm_t *, - void *, int, void *, int, const void *, int) = + static int (*ptrfunc[4])( double, int, const pastix_spm_t *, + void *, int, void *, int, const void *, int ) = { s_spmCheckAxb, d_spmCheckAxb, c_spmCheckAxb, z_spmCheckAxb }; @@ -1260,7 +1264,7 @@ spmCheckAxb( pastix_int_t nrhs, return PASTIX_ERR_BADPARAMETER; } else { - return ptrfunc[id](nrhs, spm, x0, ldx0, b, ldb, x, ldx ); + return ptrfunc[id]( eps, nrhs, spm, x0, ldx0, b, ldb, x, ldx ); } } diff --git a/spm.h b/spm.h index a677e6b8322bf683369f08e972b2abb224da5ecf..9ec6ccf14943b8647242b5de1de847226f66df23 100644 --- a/spm.h +++ b/spm.h @@ -115,7 +115,7 @@ pastix_spm_t *spmCheckAndCorrect( pastix_spm_t *spm ); * @{ */ int spmGenRHS( pastix_rhstype_t type, pastix_int_t nrhs, const pastix_spm_t *spm, void *x, pastix_int_t ldx, void *b, pastix_int_t ldb ); -int spmCheckAxb( pastix_int_t nrhs, const pastix_spm_t *spm, void *x0, pastix_int_t ldx0, void *b, pastix_int_t ldb, const void *x, pastix_int_t ldx ); +int spmCheckAxb( double eps, pastix_int_t nrhs, const pastix_spm_t *spm, void *x0, pastix_int_t ldx0, void *b, pastix_int_t ldb, const void *x, pastix_int_t ldx ); /** * @} diff --git a/z_spm.h b/z_spm.h index 3a2e4e667e00481ebe380032b4e9060ee7b8ca6a..7143bddea24c2c0b370cd8205f8391070021431f 100644 --- a/z_spm.h +++ b/z_spm.h @@ -56,7 +56,7 @@ pastix_int_t z_spmMergeDuplicate( pastix_spm_t *spm ); pastix_int_t z_spmSymmetrize( pastix_spm_t *spm ); int z_spmGenRHS(pastix_rhstype_t type, int nrhs, const pastix_spm_t *spm, void *x, int ldx, void *b, int ldb ); -int z_spmCheckAxb( int nrhs, const pastix_spm_t *spm, void *x0, int ldx0, void *b, int ldb, const void *x, int ldx ); +int z_spmCheckAxb( pastix_fixdbl_t eps, int nrhs, const pastix_spm_t *spm, void *x0, int ldx0, void *b, int ldb, const void *x, int ldx ); /** * Output routines diff --git a/z_spm_genrhs.c b/z_spm_genrhs.c index 1438924bd4ccd0b3eff9e891585a8a09bce2e5a7..02a082cca375a0ec095e36bd6011fe478d6571c1 100644 --- a/z_spm_genrhs.c +++ b/z_spm_genrhs.c @@ -321,6 +321,10 @@ z_spmGenRHS( pastix_rhstype_t type, int nrhs, * ******************************************************************************* * + * @param[in] eps + * The epsilon threshold used for the refinement step. -1. to use the + * machine precision. + * * @param[in] nrhs * Defines the number of right hand side that must be generated. * @@ -358,7 +362,7 @@ z_spmGenRHS( pastix_rhstype_t type, int nrhs, * *******************************************************************************/ int -z_spmCheckAxb( int nrhs, +z_spmCheckAxb( pastix_fixdbl_t eps, int nrhs, const pastix_spm_t *spm, void *x0, int ldx0, void *b, int ldb, @@ -368,14 +372,16 @@ z_spmCheckAxb( int nrhs, pastix_complex64_t *zx0 = (pastix_complex64_t *)x0; pastix_complex64_t *zb = (pastix_complex64_t *)b; double normA, normB, normX, normX0, normR; - double backward, forward, eps; + double backward, forward; int failure = 0; int i; assert( spm->nexp == spm->n ); assert( spm->dof == 1 ); - eps = LAPACKE_dlamch('e'); + if ( eps == -1. ) { + eps = LAPACKE_dlamch('e'); + } /** * Compute the starting norms @@ -415,7 +421,7 @@ z_spmCheckAxb( int nrhs, normR = (nr > normR ) ? nr : normR; backward = (back > backward) ? back : backward; - fail = isnan(nr) || isinf(nr) || isnan(back) || isinf(back) || (back > 1.e3); + fail = isnan(nr) || isinf(nr) || isnan(back) || isinf(back) || (back > 1.e2); if ( fail ) { printf( " || b_%d - A x_%d ||_1 %e\n" " || b_%d - A x_%d ||_1 / (||A||_1 * ||x_%d||_oo * eps) %e (%s)\n", @@ -459,7 +465,7 @@ z_spmCheckAxb( int nrhs, normR = ( nr > normR ) ? nr : normR; forward = ( forw > forward ) ? forw : forward; - fail = isnan(nx) || isinf(nx) || isnan(forw) || isinf(forw) || (forw > 1.e3); + fail = isnan(nx) || isinf(nx) || isnan(forw) || isinf(forw) || (forw > 1.e2); if ( fail ) { printf( " || x0_%d ||_oo %e\n" " || x0_%d - x_%d ||_oo / (||x0_%d||_oo * eps) %e (%s)\n",