LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
lapack_int LAPACKE_zstegr ( int  matrix_layout,
char  jobz,
char  range,
lapack_int  n,
double *  d,
double *  e,
double  vl,
double  vu,
lapack_int  il,
lapack_int  iu,
double  abstol,
lapack_int m,
double *  w,
lapack_complex_double z,
lapack_int  ldz,
lapack_int isuppz 
)

Definition at line 36 of file lapacke_zstegr.c.

42 {
43  lapack_int info = 0;
44  lapack_int liwork = -1;
45  lapack_int lwork = -1;
46  lapack_int* iwork = NULL;
47  double* work = NULL;
48  lapack_int iwork_query;
49  double work_query;
50  if( matrix_layout != LAPACK_COL_MAJOR && matrix_layout != LAPACK_ROW_MAJOR ) {
51  LAPACKE_xerbla( "LAPACKE_zstegr", -1 );
52  return -1;
53  }
54 #ifndef LAPACK_DISABLE_NAN_CHECK
55  /* Optionally check input matrices for NaNs */
56  if( LAPACKE_d_nancheck( 1, &abstol, 1 ) ) {
57  return -11;
58  }
59  if( LAPACKE_d_nancheck( n, d, 1 ) ) {
60  return -5;
61  }
62  if( LAPACKE_d_nancheck( n, e, 1 ) ) {
63  return -6;
64  }
65  if( LAPACKE_lsame( range, 'v' ) ) {
66  if( LAPACKE_d_nancheck( 1, &vl, 1 ) ) {
67  return -7;
68  }
69  }
70  if( LAPACKE_lsame( range, 'v' ) ) {
71  if( LAPACKE_d_nancheck( 1, &vu, 1 ) ) {
72  return -8;
73  }
74  }
75 #endif
76  /* Query optimal working array(s) size */
77  info = LAPACKE_zstegr_work( matrix_layout, jobz, range, n, d, e, vl, vu, il,
78  iu, abstol, m, w, z, ldz, isuppz, &work_query,
79  lwork, &iwork_query, liwork );
80  if( info != 0 ) {
81  goto exit_level_0;
82  }
83  liwork = (lapack_int)iwork_query;
84  lwork = (lapack_int)work_query;
85  /* Allocate memory for work arrays */
86  iwork = (lapack_int*)LAPACKE_malloc( sizeof(lapack_int) * liwork );
87  if( iwork == NULL ) {
89  goto exit_level_0;
90  }
91  work = (double*)LAPACKE_malloc( sizeof(double) * lwork );
92  if( work == NULL ) {
94  goto exit_level_1;
95  }
96  /* Call middle-level interface */
97  info = LAPACKE_zstegr_work( matrix_layout, jobz, range, n, d, e, vl, vu, il,
98  iu, abstol, m, w, z, ldz, isuppz, work, lwork,
99  iwork, liwork );
100  /* Release memory and exit */
101  LAPACKE_free( work );
102 exit_level_1:
103  LAPACKE_free( iwork );
104 exit_level_0:
105  if( info == LAPACK_WORK_MEMORY_ERROR ) {
106  LAPACKE_xerbla( "LAPACKE_zstegr", info );
107  }
108  return info;
109 }
#define LAPACK_ROW_MAJOR
Definition: lapacke.h:119
#define LAPACK_WORK_MEMORY_ERROR
Definition: lapacke.h:122
lapack_int LAPACKE_zstegr_work(int matrix_layout, char jobz, char range, lapack_int n, double *d, double *e, double vl, double vu, lapack_int il, lapack_int iu, double abstol, lapack_int *m, double *w, lapack_complex_double *z, lapack_int ldz, lapack_int *isuppz, double *work, lapack_int lwork, lapack_int *iwork, lapack_int liwork)
#define LAPACKE_free(p)
Definition: lapacke.h:113
#define LAPACKE_malloc(size)
Definition: lapacke.h:110
lapack_logical LAPACKE_d_nancheck(lapack_int n, const double *x, lapack_int incx)
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

Here is the call graph for this function: