LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
lapack_int LAPACKE_dgges3 ( int  matrix_layout,
char  jobvsl,
char  jobvsr,
char  sort,
LAPACK_D_SELECT3  selctg,
lapack_int  n,
double *  a,
lapack_int  lda,
double *  b,
lapack_int  ldb,
lapack_int sdim,
double *  alphar,
double *  alphai,
double *  beta,
double *  vsl,
lapack_int  ldvsl,
double *  vsr,
lapack_int  ldvsr 
)

Definition at line 36 of file lapacke_dgges3.c.

42 {
43  lapack_int info = 0;
44  lapack_int lwork = -1;
45  lapack_logical* bwork = NULL;
46  double* work = NULL;
47  double work_query;
48  if( matrix_layout != LAPACK_COL_MAJOR && matrix_layout != LAPACK_ROW_MAJOR ) {
49  LAPACKE_xerbla( "LAPACKE_dgges3", -1 );
50  return -1;
51  }
52 #ifndef LAPACK_DISABLE_NAN_CHECK
53  /* Optionally check input matrices for NaNs */
54  if( LAPACKE_dge_nancheck( matrix_layout, n, n, a, lda ) ) {
55  return -7;
56  }
57  if( LAPACKE_dge_nancheck( matrix_layout, n, n, b, ldb ) ) {
58  return -9;
59  }
60 #endif
61  /* Allocate memory for working array(s) */
62  if( LAPACKE_lsame( sort, 's' ) ) {
63  bwork = (lapack_logical*)
64  LAPACKE_malloc( sizeof(lapack_logical) * MAX(1,n) );
65  if( bwork == NULL ) {
67  goto exit_level_0;
68  }
69  }
70  /* Query optimal working array(s) size */
71  info = LAPACKE_dgges3_work( matrix_layout, jobvsl, jobvsr, sort, selctg,
72  n, a, lda, b, ldb, sdim, alphar, alphai, beta,
73  vsl, ldvsl, vsr, ldvsr,
74  &work_query, lwork, bwork );
75  if( info != 0 ) {
76  goto exit_level_1;
77  }
78  lwork = (lapack_int)work_query;
79  /* Allocate memory for work arrays */
80  work = (double*)LAPACKE_malloc( sizeof(double) * lwork );
81  if( work == NULL ) {
83  goto exit_level_1;
84  }
85  /* Call middle-level interface */
86  info = LAPACKE_dgges3_work( matrix_layout, jobvsl, jobvsr, sort, selctg,
87  n, a, lda, b, ldb, sdim, alphar, alphai, beta,
88  vsl, ldvsl, vsr, ldvsr, work, lwork, bwork );
89  /* Release memory and exit */
90  LAPACKE_free( work );
91 exit_level_1:
92  if( LAPACKE_lsame( sort, 's' ) ) {
93  LAPACKE_free( bwork );
94  }
95 exit_level_0:
96  if( info == LAPACK_WORK_MEMORY_ERROR ) {
97  LAPACKE_xerbla( "LAPACKE_dgges3", info );
98  }
99  return info;
100 }
#define lapack_logical
Definition: lapacke.h:51
#define LAPACK_ROW_MAJOR
Definition: lapacke.h:119
#define LAPACK_WORK_MEMORY_ERROR
Definition: lapacke.h:122
lapack_int LAPACKE_dgges3_work(int matrix_layout, char jobvsl, char jobvsr, char sort, LAPACK_D_SELECT3 selctg, lapack_int n, double *a, lapack_int lda, double *b, lapack_int ldb, lapack_int *sdim, double *alphar, double *alphai, double *beta, double *vsl, lapack_int ldvsl, double *vsr, lapack_int ldvsr, double *work, lapack_int lwork, lapack_logical *bwork)
#define MAX(x, y)
Definition: lapacke_utils.h:47
lapack_logical LAPACKE_dge_nancheck(int matrix_layout, lapack_int m, lapack_int n, const double *a, lapack_int lda)
#define LAPACKE_free(p)
Definition: lapacke.h:113
#define LAPACKE_malloc(size)
Definition: lapacke.h:110
lapack_logical LAPACKE_lsame(char ca, char cb)
Definition: lapacke_lsame.c:36
#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: