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

Definition at line 36 of file lapacke_ssyevr.c.

41 {
42  lapack_int info = 0;
43  lapack_int liwork = -1;
44  lapack_int lwork = -1;
45  lapack_int* iwork = NULL;
46  float* work = NULL;
47  lapack_int iwork_query;
48  float work_query;
49  if( matrix_layout != LAPACK_COL_MAJOR && matrix_layout != LAPACK_ROW_MAJOR ) {
50  LAPACKE_xerbla( "LAPACKE_ssyevr", -1 );
51  return -1;
52  }
53 #ifndef LAPACK_DISABLE_NAN_CHECK
54  /* Optionally check input matrices for NaNs */
55  if( LAPACKE_ssy_nancheck( matrix_layout, uplo, n, a, lda ) ) {
56  return -6;
57  }
58  if( LAPACKE_s_nancheck( 1, &abstol, 1 ) ) {
59  return -12;
60  }
61  if( LAPACKE_lsame( range, 'v' ) ) {
62  if( LAPACKE_s_nancheck( 1, &vl, 1 ) ) {
63  return -8;
64  }
65  }
66  if( LAPACKE_lsame( range, 'v' ) ) {
67  if( LAPACKE_s_nancheck( 1, &vu, 1 ) ) {
68  return -9;
69  }
70  }
71 #endif
72  /* Query optimal working array(s) size */
73  info = LAPACKE_ssyevr_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 = (float*)LAPACKE_malloc( sizeof(float) * lwork );
88  if( work == NULL ) {
90  goto exit_level_1;
91  }
92  /* Call middle-level interface */
93  info = LAPACKE_ssyevr_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_ssyevr", info );
103  }
104  return info;
105 }
lapack_logical LAPACKE_ssy_nancheck(int matrix_layout, char uplo, lapack_int n, const float *a, lapack_int lda)
#define LAPACK_ROW_MAJOR
Definition: lapacke.h:119
#define LAPACK_WORK_MEMORY_ERROR
Definition: lapacke.h:122
lapack_logical LAPACKE_s_nancheck(lapack_int n, const float *x, lapack_int incx)
lapack_int LAPACKE_ssyevr_work(int matrix_layout, char jobz, char range, char uplo, lapack_int n, float *a, lapack_int lda, float vl, float vu, lapack_int il, lapack_int iu, float abstol, lapack_int *m, float *w, float *z, lapack_int ldz, lapack_int *isuppz, float *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_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: