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_ssyrfsx( int matrix_order, char uplo, 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* s,
00041 const float* b, lapack_int ldb, float* x,
00042 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_ssyrfsx", -1 );
00052 return -1;
00053 }
00054 #ifndef LAPACK_DISABLE_NAN_CHECK
00055
00056 if( LAPACKE_ssy_nancheck( matrix_order, uplo, n, a, lda ) ) {
00057 return -6;
00058 }
00059 if( LAPACKE_ssy_nancheck( matrix_order, uplo, n, af, ldaf ) ) {
00060 return -8;
00061 }
00062 if( LAPACKE_sge_nancheck( matrix_order, n, nrhs, b, ldb ) ) {
00063 return -12;
00064 }
00065 if( nparams>0 ) {
00066 if( LAPACKE_s_nancheck( nparams, params, 1 ) ) {
00067 return -22;
00068 }
00069 }
00070 if( LAPACKE_lsame( equed, 'y' ) ) {
00071 if( LAPACKE_s_nancheck( n, s, 1 ) ) {
00072 return -11;
00073 }
00074 }
00075 if( LAPACKE_sge_nancheck( matrix_order, n, nrhs, x, ldx ) ) {
00076 return -14;
00077 }
00078 #endif
00079
00080 iwork = (lapack_int*)LAPACKE_malloc( sizeof(lapack_int) * MAX(1,n) );
00081 if( iwork == NULL ) {
00082 info = LAPACK_WORK_MEMORY_ERROR;
00083 goto exit_level_0;
00084 }
00085 work = (float*)LAPACKE_malloc( sizeof(float) * MAX(1,4*n) );
00086 if( work == NULL ) {
00087 info = LAPACK_WORK_MEMORY_ERROR;
00088 goto exit_level_1;
00089 }
00090
00091 info = LAPACKE_ssyrfsx_work( matrix_order, uplo, equed, n, nrhs, a, lda, af,
00092 ldaf, ipiv, s, b, ldb, x, ldx, rcond, berr,
00093 n_err_bnds, err_bnds_norm, err_bnds_comp,
00094 nparams, params, work, iwork );
00095
00096 LAPACKE_free( work );
00097 exit_level_1:
00098 LAPACKE_free( iwork );
00099 exit_level_0:
00100 if( info == LAPACK_WORK_MEMORY_ERROR ) {
00101 LAPACKE_xerbla( "LAPACKE_ssyrfsx", info );
00102 }
00103 return info;
00104 }