LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
lapack_int LAPACKE_cheev ( 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_cheev.c.

38 {
39  lapack_int info = 0;
40  lapack_int lwork = -1;
41  float* rwork = NULL;
42  lapack_complex_float* work = NULL;
43  lapack_complex_float work_query;
44  if( matrix_layout != LAPACK_COL_MAJOR && matrix_layout != LAPACK_ROW_MAJOR ) {
45  LAPACKE_xerbla( "LAPACKE_cheev", -1 );
46  return -1;
47  }
48 #ifndef LAPACK_DISABLE_NAN_CHECK
49  /* Optionally check input matrices for NaNs */
50  if( LAPACKE_che_nancheck( matrix_layout, uplo, n, a, lda ) ) {
51  return -5;
52  }
53 #endif
54  /* Allocate memory for working array(s) */
55  rwork = (float*)LAPACKE_malloc( sizeof(float) * MAX(1,3*n-2) );
56  if( rwork == NULL ) {
58  goto exit_level_0;
59  }
60  /* Query optimal working array(s) size */
61  info = LAPACKE_cheev_work( matrix_layout, jobz, uplo, n, a, lda, w,
62  &work_query, lwork, rwork );
63  if( info != 0 ) {
64  goto exit_level_1;
65  }
66  lwork = LAPACK_C2INT( work_query );
67  /* Allocate memory for work arrays */
68  work = (lapack_complex_float*)
69  LAPACKE_malloc( sizeof(lapack_complex_float) * lwork );
70  if( work == NULL ) {
72  goto exit_level_1;
73  }
74  /* Call middle-level interface */
75  info = LAPACKE_cheev_work( matrix_layout, jobz, uplo, n, a, lda, w, work,
76  lwork, rwork );
77  /* Release memory and exit */
78  LAPACKE_free( work );
79 exit_level_1:
80  LAPACKE_free( rwork );
81 exit_level_0:
82  if( info == LAPACK_WORK_MEMORY_ERROR ) {
83  LAPACKE_xerbla( "LAPACKE_cheev", info );
84  }
85  return info;
86 }
#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 MAX(x, y)
Definition: lapacke_utils.h:47
#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_logical LAPACKE_che_nancheck(int matrix_layout, char uplo, lapack_int n, const lapack_complex_float *a, lapack_int lda)
lapack_int LAPACKE_cheev_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)
#define lapack_int
Definition: lapacke.h:47

Here is the call graph for this function: