LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
lapack_int LAPACKE_ssygvd ( int  matrix_layout,
lapack_int  itype,
char  jobz,
char  uplo,
lapack_int  n,
float *  a,
lapack_int  lda,
float *  b,
lapack_int  ldb,
float *  w 
)

Definition at line 36 of file lapacke_ssygvd.c.

39 {
40  lapack_int info = 0;
41  lapack_int liwork = -1;
42  lapack_int lwork = -1;
43  lapack_int* iwork = NULL;
44  float* work = NULL;
45  lapack_int iwork_query;
46  float work_query;
47  if( matrix_layout != LAPACK_COL_MAJOR && matrix_layout != LAPACK_ROW_MAJOR ) {
48  LAPACKE_xerbla( "LAPACKE_ssygvd", -1 );
49  return -1;
50  }
51 #ifndef LAPACK_DISABLE_NAN_CHECK
52  /* Optionally check input matrices for NaNs */
53  if( LAPACKE_sge_nancheck( matrix_layout, n, n, a, lda ) ) {
54  return -6;
55  }
56  if( LAPACKE_sge_nancheck( matrix_layout, n, n, b, ldb ) ) {
57  return -8;
58  }
59 #endif
60  /* Query optimal working array(s) size */
61  info = LAPACKE_ssygvd_work( matrix_layout, itype, jobz, uplo, n, a, lda, b,
62  ldb, w, &work_query, lwork, &iwork_query,
63  liwork );
64  if( info != 0 ) {
65  goto exit_level_0;
66  }
67  liwork = (lapack_int)iwork_query;
68  lwork = (lapack_int)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  work = (float*)LAPACKE_malloc( sizeof(float) * lwork );
76  if( work == NULL ) {
78  goto exit_level_1;
79  }
80  /* Call middle-level interface */
81  info = LAPACKE_ssygvd_work( matrix_layout, itype, jobz, uplo, n, a, lda, b,
82  ldb, w, work, lwork, iwork, liwork );
83  /* Release memory and exit */
84  LAPACKE_free( work );
85 exit_level_1:
86  LAPACKE_free( iwork );
87 exit_level_0:
88  if( info == LAPACK_WORK_MEMORY_ERROR ) {
89  LAPACKE_xerbla( "LAPACKE_ssygvd", info );
90  }
91  return info;
92 }
#define LAPACK_ROW_MAJOR
Definition: lapacke.h:119
#define LAPACK_WORK_MEMORY_ERROR
Definition: lapacke.h:122
lapack_logical LAPACKE_sge_nancheck(int matrix_layout, lapack_int m, lapack_int n, const float *a, lapack_int lda)
#define LAPACKE_free(p)
Definition: lapacke.h:113
#define LAPACKE_malloc(size)
Definition: lapacke.h:110
lapack_int LAPACKE_ssygvd_work(int matrix_layout, lapack_int itype, char jobz, char uplo, lapack_int n, float *a, lapack_int lda, float *b, lapack_int ldb, float *w, float *work, lapack_int lwork, lapack_int *iwork, lapack_int liwork)
#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: