LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
lapack_int LAPACKE_chpgvx ( int  matrix_layout,
lapack_int  itype,
char  jobz,
char  range,
char  uplo,
lapack_int  n,
lapack_complex_float ap,
lapack_complex_float bp,
float  vl,
float  vu,
lapack_int  il,
lapack_int  iu,
float  abstol,
lapack_int m,
float *  w,
lapack_complex_float z,
lapack_int  ldz,
lapack_int ifail 
)

Definition at line 36 of file lapacke_chpgvx.c.

43 {
44  lapack_int info = 0;
45  lapack_int* iwork = NULL;
46  float* rwork = NULL;
47  lapack_complex_float* work = NULL;
48  if( matrix_layout != LAPACK_COL_MAJOR && matrix_layout != LAPACK_ROW_MAJOR ) {
49  LAPACKE_xerbla( "LAPACKE_chpgvx", -1 );
50  return -1;
51  }
52 #ifndef LAPACK_DISABLE_NAN_CHECK
53  /* Optionally check input matrices for NaNs */
54  if( LAPACKE_s_nancheck( 1, &abstol, 1 ) ) {
55  return -13;
56  }
57  if( LAPACKE_chp_nancheck( n, ap ) ) {
58  return -7;
59  }
60  if( LAPACKE_chp_nancheck( n, bp ) ) {
61  return -8;
62  }
63  if( LAPACKE_lsame( range, 'v' ) ) {
64  if( LAPACKE_s_nancheck( 1, &vl, 1 ) ) {
65  return -9;
66  }
67  }
68  if( LAPACKE_lsame( range, 'v' ) ) {
69  if( LAPACKE_s_nancheck( 1, &vu, 1 ) ) {
70  return -10;
71  }
72  }
73 #endif
74  /* Allocate memory for working array(s) */
75  iwork = (lapack_int*)LAPACKE_malloc( sizeof(lapack_int) * MAX(1,5*n) );
76  if( iwork == NULL ) {
78  goto exit_level_0;
79  }
80  rwork = (float*)LAPACKE_malloc( sizeof(float) * MAX(1,7*n) );
81  if( rwork == NULL ) {
83  goto exit_level_1;
84  }
85  work = (lapack_complex_float*)
86  LAPACKE_malloc( sizeof(lapack_complex_float) * MAX(1,2*n) );
87  if( work == NULL ) {
89  goto exit_level_2;
90  }
91  /* Call middle-level interface */
92  info = LAPACKE_chpgvx_work( matrix_layout, itype, jobz, range, uplo, n, ap,
93  bp, vl, vu, il, iu, abstol, m, w, z, ldz, work,
94  rwork, iwork, ifail );
95  /* Release memory and exit */
96  LAPACKE_free( work );
97 exit_level_2:
98  LAPACKE_free( rwork );
99 exit_level_1:
100  LAPACKE_free( iwork );
101 exit_level_0:
102  if( info == LAPACK_WORK_MEMORY_ERROR ) {
103  LAPACKE_xerbla( "LAPACKE_chpgvx", info );
104  }
105  return info;
106 }
#define LAPACK_ROW_MAJOR
Definition: lapacke.h:119
#define LAPACK_WORK_MEMORY_ERROR
Definition: lapacke.h:122
#define lapack_complex_float
Definition: lapacke.h:74
lapack_logical LAPACKE_s_nancheck(lapack_int n, const float *x, lapack_int incx)
#define MAX(x, y)
Definition: lapacke_utils.h:47
#define LAPACKE_free(p)
Definition: lapacke.h:113
lapack_logical LAPACKE_chp_nancheck(lapack_int n, const lapack_complex_float *ap)
#define LAPACKE_malloc(size)
Definition: lapacke.h:110
lapack_logical LAPACKE_lsame(char ca, char cb)
Definition: lapacke_lsame.c:36
#define LAPACK_COL_MAJOR
Definition: lapacke.h:120
void LAPACKE_xerbla(const char *name, lapack_int info)
#define lapack_int
Definition: lapacke.h:47
lapack_int LAPACKE_chpgvx_work(int matrix_layout, lapack_int itype, char jobz, char range, char uplo, lapack_int n, lapack_complex_float *ap, lapack_complex_float *bp, float vl, float vu, lapack_int il, lapack_int iu, float abstol, lapack_int *m, float *w, lapack_complex_float *z, lapack_int ldz, lapack_complex_float *work, float *rwork, lapack_int *iwork, lapack_int *ifail)

Here is the call graph for this function: