LAPACK  3.9.0
LAPACK: Linear Algebra PACKage

◆ LAPACKE_cheevr_2stage()

lapack_int LAPACKE_cheevr_2stage ( int  matrix_layout,
char  jobz,
char  range,
char  uplo,
lapack_int  n,
lapack_complex_float a,
lapack_int  lda,
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 isuppz 
)

Definition at line 35 of file lapacke_cheevr_2stage.c.

42 {
43  lapack_int info = 0;
44  lapack_int liwork = -1;
45  lapack_int lrwork = -1;
46  lapack_int lwork = -1;
47  lapack_int* iwork = NULL;
48  float* rwork = NULL;
49  lapack_complex_float* work = NULL;
50  lapack_int iwork_query;
51  float rwork_query;
52  lapack_complex_float work_query;
53  if( matrix_layout != LAPACK_COL_MAJOR && matrix_layout != LAPACK_ROW_MAJOR ) {
54  LAPACKE_xerbla( "LAPACKE_cheevr_2stage", -1 );
55  return -1;
56  }
57 #ifndef LAPACK_DISABLE_NAN_CHECK
58  if( LAPACKE_get_nancheck() ) {
59  /* Optionally check input matrices for NaNs */
60  if( LAPACKE_che_nancheck( matrix_layout, uplo, n, a, lda ) ) {
61  return -6;
62  }
63  if( LAPACKE_s_nancheck( 1, &abstol, 1 ) ) {
64  return -12;
65  }
66  if( LAPACKE_lsame( range, 'v' ) ) {
67  if( LAPACKE_s_nancheck( 1, &vl, 1 ) ) {
68  return -8;
69  }
70  }
71  if( LAPACKE_lsame( range, 'v' ) ) {
72  if( LAPACKE_s_nancheck( 1, &vu, 1 ) ) {
73  return -9;
74  }
75  }
76  }
77 #endif
78  /* Query optimal working array(s) size */
79  info = LAPACKE_cheevr_2stage_work( matrix_layout, jobz, range, uplo, n, a, lda, vl,
80  vu, il, iu, abstol, m, w, z, ldz, isuppz,
81  &work_query, lwork, &rwork_query, lrwork,
82  &iwork_query, liwork );
83  if( info != 0 ) {
84  goto exit_level_0;
85  }
86  liwork = (lapack_int)iwork_query;
87  lrwork = (lapack_int)rwork_query;
88  lwork = LAPACK_C2INT( work_query );
89  /* Allocate memory for work arrays */
90  iwork = (lapack_int*)LAPACKE_malloc( sizeof(lapack_int) * liwork );
91  if( iwork == NULL ) {
93  goto exit_level_0;
94  }
95  rwork = (float*)LAPACKE_malloc( sizeof(float) * lrwork );
96  if( rwork == NULL ) {
98  goto exit_level_1;
99  }
100  work = (lapack_complex_float*)
101  LAPACKE_malloc( sizeof(lapack_complex_float) * lwork );
102  if( work == NULL ) {
104  goto exit_level_2;
105  }
106  /* Call middle-level interface */
107  info = LAPACKE_cheevr_2stage_work( matrix_layout, jobz, range, uplo, n, a, lda, vl,
108  vu, il, iu, abstol, m, w, z, ldz, isuppz, work,
109  lwork, rwork, lrwork, iwork, liwork );
110  /* Release memory and exit */
111  LAPACKE_free( work );
112 exit_level_2:
113  LAPACKE_free( rwork );
114 exit_level_1:
115  LAPACKE_free( iwork );
116 exit_level_0:
117  if( info == LAPACK_WORK_MEMORY_ERROR ) {
118  LAPACKE_xerbla( "LAPACKE_cheevr_2stage", info );
119  }
120  return info;
Here is the call graph for this function:
LAPACKE_free
#define LAPACKE_free(p)
Definition: lapacke.h:47
lapack_int
#define lapack_int
Definition: lapack.h:21
LAPACKE_che_nancheck
lapack_logical LAPACKE_che_nancheck(int matrix_layout, char uplo, lapack_int n, const lapack_complex_float *a, lapack_int lda)
Definition: lapacke_che_nancheck.c:36
LAPACKE_s_nancheck
lapack_logical LAPACKE_s_nancheck(lapack_int n, const float *x, lapack_int incx)
Definition: lapacke_s_nancheck.c:36
LAPACK_C2INT
#define LAPACK_C2INT(x)
Definition: lapacke.h:50
LAPACKE_cheevr_2stage_work
lapack_int LAPACKE_cheevr_2stage_work(int matrix_layout, char jobz, char range, char uplo, lapack_int n, lapack_complex_float *a, lapack_int lda, 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 *isuppz, lapack_complex_float *work, lapack_int lwork, float *rwork, lapack_int lrwork, lapack_int *iwork, lapack_int liwork)
Definition: lapacke_cheevr_2stage_work.c:35
LAPACK_WORK_MEMORY_ERROR
#define LAPACK_WORK_MEMORY_ERROR
Definition: lapacke.h:56
LAPACKE_xerbla
void LAPACKE_xerbla(const char *name, lapack_int info)
Definition: lapacke_xerbla.c:36
lapack_complex_float
#define lapack_complex_float
Definition: lapack.h:56
LAPACKE_malloc
#define LAPACKE_malloc(size)
Definition: lapacke.h:44
LAPACKE_get_nancheck
int LAPACKE_get_nancheck()
Definition: lapacke_nancheck.c:42
LAPACKE_lsame
lapack_logical LAPACKE_lsame(char ca, char cb)
Definition: lapacke_lsame.c:35
LAPACK_ROW_MAJOR
#define LAPACK_ROW_MAJOR
Definition: lapacke.h:53
LAPACK_COL_MAJOR
#define LAPACK_COL_MAJOR
Definition: lapacke.h:54