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