Go to the documentation of this file.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_cspsvx( int matrix_order, char fact, char uplo, lapack_int n,
00038 lapack_int nrhs, const lapack_complex_float* ap,
00039 lapack_complex_float* afp, lapack_int* ipiv,
00040 const lapack_complex_float* b, lapack_int ldb,
00041 lapack_complex_float* x, lapack_int ldx,
00042 float* rcond, float* ferr, float* berr )
00043 {
00044 lapack_int info = 0;
00045 float* rwork = NULL;
00046 lapack_complex_float* work = NULL;
00047 if( matrix_order != LAPACK_COL_MAJOR && matrix_order != LAPACK_ROW_MAJOR ) {
00048 LAPACKE_xerbla( "LAPACKE_cspsvx", -1 );
00049 return -1;
00050 }
00051 #ifndef LAPACK_DISABLE_NAN_CHECK
00052
00053 if( LAPACKE_lsame( fact, 'f' ) ) {
00054 if( LAPACKE_csp_nancheck( n, afp ) ) {
00055 return -7;
00056 }
00057 }
00058 if( LAPACKE_csp_nancheck( n, ap ) ) {
00059 return -6;
00060 }
00061 if( LAPACKE_cge_nancheck( matrix_order, n, nrhs, b, ldb ) ) {
00062 return -9;
00063 }
00064 #endif
00065
00066 rwork = (float*)LAPACKE_malloc( sizeof(float) * MAX(1,n) );
00067 if( rwork == NULL ) {
00068 info = LAPACK_WORK_MEMORY_ERROR;
00069 goto exit_level_0;
00070 }
00071 work = (lapack_complex_float*)
00072 LAPACKE_malloc( sizeof(lapack_complex_float) * MAX(1,2*n) );
00073 if( work == NULL ) {
00074 info = LAPACK_WORK_MEMORY_ERROR;
00075 goto exit_level_1;
00076 }
00077
00078 info = LAPACKE_cspsvx_work( matrix_order, fact, uplo, n, nrhs, ap, afp,
00079 ipiv, b, ldb, x, ldx, rcond, ferr, berr, work,
00080 rwork );
00081
00082 LAPACKE_free( work );
00083 exit_level_1:
00084 LAPACKE_free( rwork );
00085 exit_level_0:
00086 if( info == LAPACK_WORK_MEMORY_ERROR ) {
00087 LAPACKE_xerbla( "LAPACKE_cspsvx", info );
00088 }
00089 return info;
00090 }