LAPACK  3.10.0
LAPACK: Linear Algebra PACKage

◆ LAPACKE_ctprfs()

lapack_int LAPACKE_ctprfs ( int  matrix_layout,
char  uplo,
char  trans,
char  diag,
lapack_int  n,
lapack_int  nrhs,
const lapack_complex_float ap,
const lapack_complex_float b,
lapack_int  ldb,
const lapack_complex_float x,
lapack_int  ldx,
float *  ferr,
float *  berr 
)

Definition at line 35 of file lapacke_ctprfs.c.

41 {
42  lapack_int info = 0;
43  float* rwork = NULL;
44  lapack_complex_float* work = NULL;
45  if( matrix_layout != LAPACK_COL_MAJOR && matrix_layout != LAPACK_ROW_MAJOR ) {
46  LAPACKE_xerbla( "LAPACKE_ctprfs", -1 );
47  return -1;
48  }
49 #ifndef LAPACK_DISABLE_NAN_CHECK
50  if( LAPACKE_get_nancheck() ) {
51  /* Optionally check input matrices for NaNs */
52  if( LAPACKE_ctp_nancheck( matrix_layout, uplo, diag, n, ap ) ) {
53  return -7;
54  }
55  if( LAPACKE_cge_nancheck( matrix_layout, n, nrhs, b, ldb ) ) {
56  return -8;
57  }
58  if( LAPACKE_cge_nancheck( matrix_layout, n, nrhs, x, ldx ) ) {
59  return -10;
60  }
61  }
62 #endif
63  /* Allocate memory for working array(s) */
64  rwork = (float*)LAPACKE_malloc( sizeof(float) * MAX(1,n) );
65  if( rwork == NULL ) {
67  goto exit_level_0;
68  }
69  work = (lapack_complex_float*)
70  LAPACKE_malloc( sizeof(lapack_complex_float) * MAX(1,2*n) );
71  if( work == NULL ) {
73  goto exit_level_1;
74  }
75  /* Call middle-level interface */
76  info = LAPACKE_ctprfs_work( matrix_layout, uplo, trans, diag, n, nrhs, ap, b,
77  ldb, x, ldx, ferr, berr, work, rwork );
78  /* Release memory and exit */
79  LAPACKE_free( work );
80 exit_level_1:
81  LAPACKE_free( rwork );
82 exit_level_0:
83  if( info == LAPACK_WORK_MEMORY_ERROR ) {
84  LAPACKE_xerbla( "LAPACKE_ctprfs", info );
85  }
86  return info;
87 }
#define lapack_int
Definition: lapack.h:83
#define lapack_complex_float
Definition: lapack.h:45
lapack_int LAPACKE_ctprfs_work(int matrix_layout, char uplo, char trans, char diag, lapack_int n, lapack_int nrhs, const lapack_complex_float *ap, const lapack_complex_float *b, lapack_int ldb, const lapack_complex_float *x, lapack_int ldx, float *ferr, float *berr, lapack_complex_float *work, float *rwork)
#define LAPACK_WORK_MEMORY_ERROR
Definition: lapacke.h:55
#define LAPACK_COL_MAJOR
Definition: lapacke.h:53
#define LAPACKE_free(p)
Definition: lapacke.h:46
#define LAPACK_ROW_MAJOR
Definition: lapacke.h:52
int LAPACKE_get_nancheck(void)
#define LAPACKE_malloc(size)
Definition: lapacke.h:43
void LAPACKE_xerbla(const char *name, lapack_int info)
lapack_logical LAPACKE_ctp_nancheck(int matrix_layout, char uplo, char diag, lapack_int n, const lapack_complex_float *ap)
#define MAX(x, y)
Definition: lapacke_utils.h:46
lapack_logical LAPACKE_cge_nancheck(int matrix_layout, lapack_int m, lapack_int n, const lapack_complex_float *a, lapack_int lda)
Here is the call graph for this function: