LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
lapack_int LAPACKE_sstevd ( int  matrix_layout,
char  jobz,
lapack_int  n,
float *  d,
float *  e,
float *  z,
lapack_int  ldz 
)

Definition at line 36 of file lapacke_sstevd.c.

38 {
39  lapack_int info = 0;
40  lapack_int liwork = -1;
41  lapack_int lwork = -1;
42  lapack_int* iwork = NULL;
43  float* work = NULL;
44  lapack_int iwork_query;
45  float work_query;
46  if( matrix_layout != LAPACK_COL_MAJOR && matrix_layout != LAPACK_ROW_MAJOR ) {
47  LAPACKE_xerbla( "LAPACKE_sstevd", -1 );
48  return -1;
49  }
50 #ifndef LAPACK_DISABLE_NAN_CHECK
51  /* Optionally check input matrices for NaNs */
52  if( LAPACKE_s_nancheck( n, d, 1 ) ) {
53  return -4;
54  }
55  if( LAPACKE_s_nancheck( n, e, 1 ) ) {
56  return -5;
57  }
58 #endif
59  /* Query optimal working array(s) size */
60  info = LAPACKE_sstevd_work( matrix_layout, jobz, n, d, e, z, ldz,
61  &work_query, lwork, &iwork_query, liwork );
62  if( info != 0 ) {
63  goto exit_level_0;
64  }
65  liwork = (lapack_int)iwork_query;
66  lwork = (lapack_int)work_query;
67  /* Allocate memory for work arrays */
68  iwork = (lapack_int*)LAPACKE_malloc( sizeof(lapack_int) * liwork );
69  if( iwork == NULL ) {
71  goto exit_level_0;
72  }
73  work = (float*)LAPACKE_malloc( sizeof(float) * lwork );
74  if( work == NULL ) {
76  goto exit_level_1;
77  }
78  /* Call middle-level interface */
79  info = LAPACKE_sstevd_work( matrix_layout, jobz, n, d, e, z, ldz, work,
80  lwork, iwork, liwork );
81  /* Release memory and exit */
82  LAPACKE_free( work );
83 exit_level_1:
84  LAPACKE_free( iwork );
85 exit_level_0:
86  if( info == LAPACK_WORK_MEMORY_ERROR ) {
87  LAPACKE_xerbla( "LAPACKE_sstevd", info );
88  }
89  return info;
90 }
lapack_int LAPACKE_sstevd_work(int matrix_layout, char jobz, lapack_int n, float *d, float *e, float *z, lapack_int ldz, 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: