LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
lapack_int LAPACKE_dsyevr ( int  matrix_layout,
char  jobz,
char  range,
char  uplo,
lapack_int  n,
double *  a,
lapack_int  lda,
double  vl,
double  vu,
lapack_int  il,
lapack_int  iu,
double  abstol,
lapack_int m,
double *  w,
double *  z,
lapack_int  ldz,
lapack_int isuppz 
)

Definition at line 36 of file lapacke_dsyevr.c.

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

Here is the call graph for this function: