LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
lapack_int LAPACKE_chpevd ( int  matrix_layout,
char  jobz,
char  uplo,
lapack_int  n,
lapack_complex_float ap,
float *  w,
lapack_complex_float z,
lapack_int  ldz 
)

Definition at line 36 of file lapacke_chpevd.c.

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

Here is the call graph for this function: