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_spbsvx( int matrix_order, char fact, char uplo, lapack_int n,
00038 lapack_int kd, lapack_int nrhs, float* ab,
00039 lapack_int ldab, float* afb, lapack_int ldafb,
00040 char* equed, float* s, float* b, lapack_int ldb,
00041 float* x, lapack_int ldx, float* rcond, float* ferr,
00042 float* berr )
00043 {
00044 lapack_int info = 0;
00045 lapack_int* iwork = NULL;
00046 float* work = NULL;
00047 if( matrix_order != LAPACK_COL_MAJOR && matrix_order != LAPACK_ROW_MAJOR ) {
00048 LAPACKE_xerbla( "LAPACKE_spbsvx", -1 );
00049 return -1;
00050 }
00051 #ifndef LAPACK_DISABLE_NAN_CHECK
00052
00053 if( LAPACKE_spb_nancheck( matrix_order, uplo, n, kd, ab, ldab ) ) {
00054 return -7;
00055 }
00056 if( LAPACKE_lsame( fact, 'f' ) ) {
00057 if( LAPACKE_spb_nancheck( matrix_order, uplo, n, kd, afb, ldafb ) ) {
00058 return -9;
00059 }
00060 }
00061 if( LAPACKE_sge_nancheck( matrix_order, n, nrhs, b, ldb ) ) {
00062 return -13;
00063 }
00064 if( LAPACKE_lsame( fact, 'f' ) && LAPACKE_lsame( *equed, 'y' ) ) {
00065 if( LAPACKE_s_nancheck( n, s, 1 ) ) {
00066 return -12;
00067 }
00068 }
00069 #endif
00070
00071 iwork = (lapack_int*)LAPACKE_malloc( sizeof(lapack_int) * MAX(1,n) );
00072 if( iwork == NULL ) {
00073 info = LAPACK_WORK_MEMORY_ERROR;
00074 goto exit_level_0;
00075 }
00076 work = (float*)LAPACKE_malloc( sizeof(float) * MAX(1,3*n) );
00077 if( work == NULL ) {
00078 info = LAPACK_WORK_MEMORY_ERROR;
00079 goto exit_level_1;
00080 }
00081
00082 info = LAPACKE_spbsvx_work( matrix_order, fact, uplo, n, kd, nrhs, ab, ldab,
00083 afb, ldafb, equed, s, b, ldb, x, ldx, rcond,
00084 ferr, berr, work, iwork );
00085
00086 LAPACKE_free( work );
00087 exit_level_1:
00088 LAPACKE_free( iwork );
00089 exit_level_0:
00090 if( info == LAPACK_WORK_MEMORY_ERROR ) {
00091 LAPACKE_xerbla( "LAPACKE_spbsvx", info );
00092 }
00093 return info;
00094 }