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