LAPACK  3.9.0
LAPACK: Linear Algebra PACKage

◆ LAPACKE_sstegr()

lapack_int LAPACKE_sstegr ( int  matrix_layout,
char  jobz,
char  range,
lapack_int  n,
float *  d,
float *  e,
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 35 of file lapacke_sstegr.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_sstegr", -1 );
51  return -1;
52  }
53 #ifndef LAPACK_DISABLE_NAN_CHECK
54  if( LAPACKE_get_nancheck() ) {
55  /* Optionally check input matrices for NaNs */
56  if( LAPACKE_s_nancheck( 1, &abstol, 1 ) ) {
57  return -11;
58  }
59  if( LAPACKE_s_nancheck( n, d, 1 ) ) {
60  return -5;
61  }
62  if( LAPACKE_s_nancheck( n-1, e, 1 ) ) {
63  return -6;
64  }
65  if( LAPACKE_lsame( range, 'v' ) ) {
66  if( LAPACKE_s_nancheck( 1, &vl, 1 ) ) {
67  return -7;
68  }
69  }
70  if( LAPACKE_lsame( range, 'v' ) ) {
71  if( LAPACKE_s_nancheck( 1, &vu, 1 ) ) {
72  return -8;
73  }
74  }
75  }
76 #endif
77  /* Query optimal working array(s) size */
78  info = LAPACKE_sstegr_work( matrix_layout, jobz, range, n, d, e, vl, vu, il,
79  iu, abstol, m, w, z, ldz, isuppz, &work_query,
80  lwork, &iwork_query, liwork );
81  if( info != 0 ) {
82  goto exit_level_0;
83  }
84  liwork = (lapack_int)iwork_query;
85  lwork = (lapack_int)work_query;
86  /* Allocate memory for work arrays */
87  iwork = (lapack_int*)LAPACKE_malloc( sizeof(lapack_int) * liwork );
88  if( iwork == NULL ) {
90  goto exit_level_0;
91  }
92  work = (float*)LAPACKE_malloc( sizeof(float) * lwork );
93  if( work == NULL ) {
95  goto exit_level_1;
96  }
97  /* Call middle-level interface */
98  info = LAPACKE_sstegr_work( matrix_layout, jobz, range, n, d, e, vl, vu, il,
99  iu, abstol, m, w, z, ldz, isuppz, work, lwork,
100  iwork, liwork );
101  /* Release memory and exit */
102  LAPACKE_free( work );
103 exit_level_1:
104  LAPACKE_free( iwork );
105 exit_level_0:
106  if( info == LAPACK_WORK_MEMORY_ERROR ) {
107  LAPACKE_xerbla( "LAPACKE_sstegr", info );
108  }
109  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_s_nancheck
lapack_logical LAPACKE_s_nancheck(lapack_int n, const float *x, lapack_int incx)
Definition: lapacke_s_nancheck.c:36
LAPACKE_sstegr_work
lapack_int LAPACKE_sstegr_work(int matrix_layout, char jobz, char range, lapack_int n, float *d, float *e, 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)
Definition: lapacke_sstegr_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
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