LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
lapack_int LAPACKE_sstemr ( int  matrix_layout,
char  jobz,
char  range,
lapack_int  n,
float *  d,
float *  e,
float  vl,
float  vu,
lapack_int  il,
lapack_int  iu,
lapack_int m,
float *  w,
float *  z,
lapack_int  ldz,
lapack_int  nzc,
lapack_int isuppz,
lapack_logical tryrac 
)

Definition at line 36 of file lapacke_sstemr.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_sstemr", -1 );
51  return -1;
52  }
53 #ifndef LAPACK_DISABLE_NAN_CHECK
54  /* Optionally check input matrices for NaNs */
55  if( LAPACKE_s_nancheck( n, d, 1 ) ) {
56  return -5;
57  }
58  if( LAPACKE_s_nancheck( n-1, e, 1 ) ) {
59  return -6;
60  }
61  if( LAPACKE_s_nancheck( 1, &vl, 1 ) ) {
62  return -7;
63  }
64  if( LAPACKE_s_nancheck( 1, &vu, 1 ) ) {
65  return -8;
66  }
67 #endif
68  /* Query optimal working array(s) size */
69  info = LAPACKE_sstemr_work( matrix_layout, jobz, range, n, d, e, vl, vu, il,
70  iu, m, w, z, ldz, nzc, isuppz, tryrac,
71  &work_query, lwork, &iwork_query, liwork );
72  if( info != 0 ) {
73  goto exit_level_0;
74  }
75  liwork = (lapack_int)iwork_query;
76  lwork = (lapack_int)work_query;
77  /* Allocate memory for work arrays */
78  iwork = (lapack_int*)LAPACKE_malloc( sizeof(lapack_int) * liwork );
79  if( iwork == NULL ) {
81  goto exit_level_0;
82  }
83  work = (float*)LAPACKE_malloc( sizeof(float) * lwork );
84  if( work == NULL ) {
86  goto exit_level_1;
87  }
88  /* Call middle-level interface */
89  info = LAPACKE_sstemr_work( matrix_layout, jobz, range, n, d, e, vl, vu, il,
90  iu, m, w, z, ldz, nzc, isuppz, tryrac, work,
91  lwork, iwork, liwork );
92  /* Release memory and exit */
93  LAPACKE_free( work );
94 exit_level_1:
95  LAPACKE_free( iwork );
96 exit_level_0:
97  if( info == LAPACK_WORK_MEMORY_ERROR ) {
98  LAPACKE_xerbla( "LAPACKE_sstemr", info );
99  }
100  return info;
101 }
lapack_int LAPACKE_sstemr_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, lapack_int *m, float *w, float *z, lapack_int ldz, lapack_int nzc, lapack_int *isuppz, lapack_logical *tryrac, float *work, lapack_int lwork, lapack_int *iwork, lapack_int liwork)
#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)
#define LAPACKE_free(p)
Definition: lapacke.h:113
#define LAPACKE_malloc(size)
Definition: lapacke.h:110
#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: