LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
lapack_int LAPACKE_cheevd ( int  matrix_layout,
char  jobz,
char  uplo,
lapack_int  n,
lapack_complex_float a,
lapack_int  lda,
float *  w 
)

Definition at line 36 of file lapacke_cheevd.c.

38 {
39  lapack_int info = 0;
40  lapack_int liwork = -1;
41  lapack_int lrwork = -1;
42  lapack_int lwork = -1;
43  lapack_int* iwork = NULL;
44  float* rwork = NULL;
45  lapack_complex_float* work = NULL;
46  lapack_int iwork_query;
47  float rwork_query;
48  lapack_complex_float work_query;
49  if( matrix_layout != LAPACK_COL_MAJOR && matrix_layout != LAPACK_ROW_MAJOR ) {
50  LAPACKE_xerbla( "LAPACKE_cheevd", -1 );
51  return -1;
52  }
53 #ifndef LAPACK_DISABLE_NAN_CHECK
54  /* Optionally check input matrices for NaNs */
55  if( LAPACKE_cge_nancheck( matrix_layout, n, n, a, lda ) ) {
56  return -5;
57  }
58 #endif
59  /* Query optimal working array(s) size */
60  info = LAPACKE_cheevd_work( matrix_layout, jobz, uplo, n, a, lda, w,
61  &work_query, lwork, &rwork_query, lrwork,
62  &iwork_query, liwork );
63  if( info != 0 ) {
64  goto exit_level_0;
65  }
66  liwork = (lapack_int)iwork_query;
67  lrwork = (lapack_int)rwork_query;
68  lwork = LAPACK_C2INT( work_query );
69  /* Allocate memory for work arrays */
70  iwork = (lapack_int*)LAPACKE_malloc( sizeof(lapack_int) * liwork );
71  if( iwork == NULL ) {
73  goto exit_level_0;
74  }
75  rwork = (float*)LAPACKE_malloc( sizeof(float) * lrwork );
76  if( rwork == NULL ) {
78  goto exit_level_1;
79  }
80  work = (lapack_complex_float*)
81  LAPACKE_malloc( sizeof(lapack_complex_float) * lwork );
82  if( work == NULL ) {
84  goto exit_level_2;
85  }
86  /* Call middle-level interface */
87  info = LAPACKE_cheevd_work( matrix_layout, jobz, uplo, n, a, lda, w, work,
88  lwork, rwork, lrwork, iwork, liwork );
89  /* Release memory and exit */
90  LAPACKE_free( work );
91 exit_level_2:
92  LAPACKE_free( rwork );
93 exit_level_1:
94  LAPACKE_free( iwork );
95 exit_level_0:
96  if( info == LAPACK_WORK_MEMORY_ERROR ) {
97  LAPACKE_xerbla( "LAPACKE_cheevd", info );
98  }
99  return info;
100 }
#define LAPACK_ROW_MAJOR
Definition: lapacke.h:119
#define LAPACK_WORK_MEMORY_ERROR
Definition: lapacke.h:122
#define lapack_complex_float
Definition: lapacke.h:74
lapack_logical LAPACKE_cge_nancheck(int matrix_layout, lapack_int m, lapack_int n, const lapack_complex_float *a, lapack_int lda)
#define LAPACKE_free(p)
Definition: lapacke.h:113
#define LAPACKE_malloc(size)
Definition: lapacke.h:110
#define LAPACK_C2INT(x)
Definition: lapacke.h:116
#define LAPACK_COL_MAJOR
Definition: lapacke.h:120
void LAPACKE_xerbla(const char *name, lapack_int info)
lapack_int LAPACKE_cheevd_work(int matrix_layout, char jobz, char uplo, lapack_int n, lapack_complex_float *a, lapack_int lda, float *w, lapack_complex_float *work, lapack_int lwork, float *rwork, lapack_int lrwork, lapack_int *iwork, lapack_int liwork)
#define lapack_int
Definition: lapacke.h:47

Here is the call graph for this function: