LAPACK  3.9.0
LAPACK: Linear Algebra PACKage

◆ LAPACKE_sstebz()

lapack_int LAPACKE_sstebz ( char  range,
char  order,
lapack_int  n,
float  vl,
float  vu,
lapack_int  il,
lapack_int  iu,
float  abstol,
const float *  d,
const float *  e,
lapack_int m,
lapack_int nsplit,
float *  w,
lapack_int iblock,
lapack_int isplit 
)

Definition at line 35 of file lapacke_sstebz.c.

41 {
42  lapack_int info = 0;
43  lapack_int* iwork = NULL;
44  float* work = NULL;
45 #ifndef LAPACK_DISABLE_NAN_CHECK
46  if( LAPACKE_get_nancheck() ) {
47  /* Optionally check input matrices for NaNs */
48  if( LAPACKE_s_nancheck( 1, &abstol, 1 ) ) {
49  return -8;
50  }
51  if( LAPACKE_s_nancheck( n, d, 1 ) ) {
52  return -9;
53  }
54  if( LAPACKE_s_nancheck( n-1, e, 1 ) ) {
55  return -10;
56  }
57  if( LAPACKE_lsame( range, 'v' ) ) {
58  if( LAPACKE_s_nancheck( 1, &vl, 1 ) ) {
59  return -4;
60  }
61  }
62  if( LAPACKE_lsame( range, 'v' ) ) {
63  if( LAPACKE_s_nancheck( 1, &vu, 1 ) ) {
64  return -5;
65  }
66  }
67  }
68 #endif
69  /* Allocate memory for working array(s) */
70  iwork = (lapack_int*)LAPACKE_malloc( sizeof(lapack_int) * MAX(1,3*n) );
71  if( iwork == NULL ) {
73  goto exit_level_0;
74  }
75  work = (float*)LAPACKE_malloc( sizeof(float) * MAX(1,4*n) );
76  if( work == NULL ) {
78  goto exit_level_1;
79  }
80  /* Call middle-level interface */
81  info = LAPACKE_sstebz_work( range, order, n, vl, vu, il, iu, abstol, d, e,
82  m, nsplit, w, iblock, isplit, work, iwork );
83  /* Release memory and exit */
84  LAPACKE_free( work );
85 exit_level_1:
86  LAPACKE_free( iwork );
87 exit_level_0:
88  if( info == LAPACK_WORK_MEMORY_ERROR ) {
89  LAPACKE_xerbla( "LAPACKE_sstebz", info );
90  }
91  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_sstebz_work
lapack_int LAPACKE_sstebz_work(char range, char order, lapack_int n, float vl, float vu, lapack_int il, lapack_int iu, float abstol, const float *d, const float *e, lapack_int *m, lapack_int *nsplit, float *w, lapack_int *iblock, lapack_int *isplit, float *work, lapack_int *iwork)
Definition: lapacke_sstebz_work.c:35
LAPACKE_s_nancheck
lapack_logical LAPACKE_s_nancheck(lapack_int n, const float *x, lapack_int incx)
Definition: lapacke_s_nancheck.c:36
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
MAX
#define MAX(x, y)
Definition: lapacke_utils.h:47
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