LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
lapack_int LAPACKE_chbgvd ( int  matrix_layout,
char  jobz,
char  uplo,
lapack_int  n,
lapack_int  ka,
lapack_int  kb,
lapack_complex_float ab,
lapack_int  ldab,
lapack_complex_float bb,
lapack_int  ldbb,
float *  w,
lapack_complex_float z,
lapack_int  ldz 
)

Definition at line 36 of file lapacke_chbgvd.c.

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

Here is the call graph for this function: