LAPACK  3.9.0
LAPACK: Linear Algebra PACKage

◆ LAPACKE_dtgevc()

lapack_int LAPACKE_dtgevc ( int  matrix_layout,
char  side,
char  howmny,
const lapack_logical select,
lapack_int  n,
const double *  s,
lapack_int  lds,
const double *  p,
lapack_int  ldp,
double *  vl,
lapack_int  ldvl,
double *  vr,
lapack_int  ldvr,
lapack_int  mm,
lapack_int m 
)

Definition at line 35 of file lapacke_dtgevc.c.

42 {
43  lapack_int info = 0;
44  double* work = NULL;
45  if( matrix_layout != LAPACK_COL_MAJOR && matrix_layout != LAPACK_ROW_MAJOR ) {
46  LAPACKE_xerbla( "LAPACKE_dtgevc", -1 );
47  return -1;
48  }
49 #ifndef LAPACK_DISABLE_NAN_CHECK
50  if( LAPACKE_get_nancheck() ) {
51  /* Optionally check input matrices for NaNs */
52  if( LAPACKE_dge_nancheck( matrix_layout, n, n, p, ldp ) ) {
53  return -8;
54  }
55  if( LAPACKE_dge_nancheck( matrix_layout, n, n, s, lds ) ) {
56  return -6;
57  }
58  if( LAPACKE_lsame( side, 'b' ) || LAPACKE_lsame( side, 'l' ) ) {
59  if( LAPACKE_dge_nancheck( matrix_layout, n, mm, vl, ldvl ) ) {
60  return -10;
61  }
62  }
63  if( LAPACKE_lsame( side, 'b' ) || LAPACKE_lsame( side, 'r' ) ) {
64  if( LAPACKE_dge_nancheck( matrix_layout, n, mm, vr, ldvr ) ) {
65  return -12;
66  }
67  }
68  }
69 #endif
70  /* Allocate memory for working array(s) */
71  work = (double*)LAPACKE_malloc( sizeof(double) * MAX(1,6*n) );
72  if( work == NULL ) {
74  goto exit_level_0;
75  }
76  /* Call middle-level interface */
77  info = LAPACKE_dtgevc_work( matrix_layout, side, howmny, select, n, s, lds,
78  p, ldp, vl, ldvl, vr, ldvr, mm, m, work );
79  /* Release memory and exit */
80  LAPACKE_free( work );
81 exit_level_0:
82  if( info == LAPACK_WORK_MEMORY_ERROR ) {
83  LAPACKE_xerbla( "LAPACKE_dtgevc", info );
84  }
85  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
LAPACKE_dge_nancheck
lapack_logical LAPACKE_dge_nancheck(int matrix_layout, lapack_int m, lapack_int n, const double *a, lapack_int lda)
Definition: lapacke_dge_nancheck.c:36
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
MAX
#define MAX(x, y)
Definition: lapacke_utils.h:47
LAPACKE_dtgevc_work
lapack_int LAPACKE_dtgevc_work(int matrix_layout, char side, char howmny, const lapack_logical *select, lapack_int n, const double *s, lapack_int lds, const double *p, lapack_int ldp, double *vl, lapack_int ldvl, double *vr, lapack_int ldvr, lapack_int mm, lapack_int *m, double *work)
Definition: lapacke_dtgevc_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
LAPACKE_lsame
lapack_logical LAPACKE_lsame(char ca, char cb)
Definition: lapacke_lsame.c:35
LAPACK_ROW_MAJOR
#define LAPACK_ROW_MAJOR
Definition: lapacke.h:53
LAPACK_COL_MAJOR
#define LAPACK_COL_MAJOR
Definition: lapacke.h:54