LAPACK  3.9.0
LAPACK: Linear Algebra PACKage

◆ LAPACKE_dspgvd()

lapack_int LAPACKE_dspgvd ( int  matrix_layout,
lapack_int  itype,
char  jobz,
char  uplo,
lapack_int  n,
double *  ap,
double *  bp,
double *  w,
double *  z,
lapack_int  ldz 
)

Definition at line 35 of file lapacke_dspgvd.c.

39 {
40  lapack_int info = 0;
41  lapack_int liwork = -1;
42  lapack_int lwork = -1;
43  lapack_int* iwork = NULL;
44  double* work = NULL;
45  lapack_int iwork_query;
46  double work_query;
47  if( matrix_layout != LAPACK_COL_MAJOR && matrix_layout != LAPACK_ROW_MAJOR ) {
48  LAPACKE_xerbla( "LAPACKE_dspgvd", -1 );
49  return -1;
50  }
51 #ifndef LAPACK_DISABLE_NAN_CHECK
52  if( LAPACKE_get_nancheck() ) {
53  /* Optionally check input matrices for NaNs */
54  if( LAPACKE_dsp_nancheck( n, ap ) ) {
55  return -6;
56  }
57  if( LAPACKE_dsp_nancheck( n, bp ) ) {
58  return -7;
59  }
60  }
61 #endif
62  /* Query optimal working array(s) size */
63  info = LAPACKE_dspgvd_work( matrix_layout, itype, jobz, uplo, n, ap, bp, w,
64  z, ldz, &work_query, lwork, &iwork_query,
65  liwork );
66  if( info != 0 ) {
67  goto exit_level_0;
68  }
69  liwork = (lapack_int)iwork_query;
70  lwork = (lapack_int)work_query;
71  /* Allocate memory for work arrays */
72  iwork = (lapack_int*)LAPACKE_malloc( sizeof(lapack_int) * liwork );
73  if( iwork == NULL ) {
75  goto exit_level_0;
76  }
77  work = (double*)LAPACKE_malloc( sizeof(double) * lwork );
78  if( work == NULL ) {
80  goto exit_level_1;
81  }
82  /* Call middle-level interface */
83  info = LAPACKE_dspgvd_work( matrix_layout, itype, jobz, uplo, n, ap, bp, w,
84  z, ldz, work, lwork, iwork, liwork );
85  /* Release memory and exit */
86  LAPACKE_free( work );
87 exit_level_1:
88  LAPACKE_free( iwork );
89 exit_level_0:
90  if( info == LAPACK_WORK_MEMORY_ERROR ) {
91  LAPACKE_xerbla( "LAPACKE_dspgvd", info );
92  }
93  return info;
Here is the call graph for this function:
LAPACKE_free
#define LAPACKE_free(p)
Definition: lapacke.h:47
lapack_int
#define lapack_int
Definition: lapack.h:21
LAPACK_WORK_MEMORY_ERROR
#define LAPACK_WORK_MEMORY_ERROR
Definition: lapacke.h:56
LAPACKE_xerbla
void LAPACKE_xerbla(const char *name, lapack_int info)
Definition: lapacke_xerbla.c:36
LAPACKE_dspgvd_work
lapack_int LAPACKE_dspgvd_work(int matrix_layout, lapack_int itype, char jobz, char uplo, lapack_int n, double *ap, double *bp, double *w, double *z, lapack_int ldz, double *work, lapack_int lwork, lapack_int *iwork, lapack_int liwork)
Definition: lapacke_dspgvd_work.c:35
LAPACKE_malloc
#define LAPACKE_malloc(size)
Definition: lapacke.h:44
LAPACKE_get_nancheck
int LAPACKE_get_nancheck()
Definition: lapacke_nancheck.c:42
LAPACK_ROW_MAJOR
#define LAPACK_ROW_MAJOR
Definition: lapacke.h:53
LAPACK_COL_MAJOR
#define LAPACK_COL_MAJOR
Definition: lapacke.h:54
LAPACKE_dsp_nancheck
lapack_logical LAPACKE_dsp_nancheck(lapack_int n, const double *ap)
Definition: lapacke_dsp_nancheck.c:39