LAPACK 3.11.0
LAPACK: Linear Algebra PACKage
Loading...
Searching...
No Matches

◆ LAPACKE_dsygvd()

lapack_int LAPACKE_dsygvd ( int  matrix_layout,
lapack_int  itype,
char  jobz,
char  uplo,
lapack_int  n,
double *  a,
lapack_int  lda,
double *  b,
lapack_int  ldb,
double *  w 
)

Definition at line 35 of file lapacke_dsygvd.c.

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