00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034 #include "lapacke.h"
00035 #include "lapacke_utils.h"
00036
00037 lapack_int LAPACKE_sgerfsx( int matrix_order, char trans, char equed,
00038 lapack_int n, lapack_int nrhs, const float* a,
00039 lapack_int lda, const float* af, lapack_int ldaf,
00040 const lapack_int* ipiv, const float* r,
00041 const float* c, const float* b, lapack_int ldb,
00042 float* x, lapack_int ldx, float* rcond, float* berr,
00043 lapack_int n_err_bnds, float* err_bnds_norm,
00044 float* err_bnds_comp, lapack_int nparams,
00045 float* params )
00046 {
00047 lapack_int info = 0;
00048 lapack_int* iwork = NULL;
00049 float* work = NULL;
00050 if( matrix_order != LAPACK_COL_MAJOR && matrix_order != LAPACK_ROW_MAJOR ) {
00051 LAPACKE_xerbla( "LAPACKE_sgerfsx", -1 );
00052 return -1;
00053 }
00054 #ifndef LAPACK_DISABLE_NAN_CHECK
00055
00056 if( LAPACKE_sge_nancheck( matrix_order, n, n, a, lda ) ) {
00057 return -6;
00058 }
00059 if( LAPACKE_sge_nancheck( matrix_order, n, n, af, ldaf ) ) {
00060 return -8;
00061 }
00062 if( LAPACKE_sge_nancheck( matrix_order, n, nrhs, b, ldb ) ) {
00063 return -13;
00064 }
00065 if( LAPACKE_lsame( equed, 'b' ) || LAPACKE_lsame( equed, 'c' ) ) {
00066 if( LAPACKE_s_nancheck( n, c, 1 ) ) {
00067 return -12;
00068 }
00069 }
00070 if( nparams>0 ) {
00071 if( LAPACKE_s_nancheck( nparams, params, 1 ) ) {
00072 return -23;
00073 }
00074 }
00075 if( LAPACKE_lsame( equed, 'b' ) || LAPACKE_lsame( equed, 'r' ) ) {
00076 if( LAPACKE_s_nancheck( n, r, 1 ) ) {
00077 return -11;
00078 }
00079 }
00080 if( LAPACKE_sge_nancheck( matrix_order, n, nrhs, x, ldx ) ) {
00081 return -15;
00082 }
00083 #endif
00084
00085 iwork = (lapack_int*)LAPACKE_malloc( sizeof(lapack_int) * MAX(1,n) );
00086 if( iwork == NULL ) {
00087 info = LAPACK_WORK_MEMORY_ERROR;
00088 goto exit_level_0;
00089 }
00090 work = (float*)LAPACKE_malloc( sizeof(float) * MAX(1,4*n) );
00091 if( work == NULL ) {
00092 info = LAPACK_WORK_MEMORY_ERROR;
00093 goto exit_level_1;
00094 }
00095
00096 info = LAPACKE_sgerfsx_work( matrix_order, trans, equed, n, nrhs, a, lda,
00097 af, ldaf, ipiv, r, c, b, ldb, x, ldx, rcond,
00098 berr, n_err_bnds, err_bnds_norm, err_bnds_comp,
00099 nparams, params, work, iwork );
00100
00101 LAPACKE_free( work );
00102 exit_level_1:
00103 LAPACKE_free( iwork );
00104 exit_level_0:
00105 if( info == LAPACK_WORK_MEMORY_ERROR ) {
00106 LAPACKE_xerbla( "LAPACKE_sgerfsx", info );
00107 }
00108 return info;
00109 }