LAPACK  3.9.0
LAPACK: Linear Algebra PACKage

◆ LAPACKE_sgeesx()

lapack_int LAPACKE_sgeesx ( int  matrix_layout,
char  jobvs,
char  sort,
LAPACK_S_SELECT2  select,
char  sense,
lapack_int  n,
float *  a,
lapack_int  lda,
lapack_int sdim,
float *  wr,
float *  wi,
float *  vs,
lapack_int  ldvs,
float *  rconde,
float *  rcondv 
)

Definition at line 35 of file lapacke_sgeesx.c.

41 {
42  lapack_int info = 0;
43  lapack_int liwork = -1;
44  lapack_int lwork = -1;
45  lapack_logical* bwork = NULL;
46  lapack_int* iwork = NULL;
47  float* work = NULL;
48  lapack_int iwork_query;
49  float work_query;
50  if( matrix_layout != LAPACK_COL_MAJOR && matrix_layout != LAPACK_ROW_MAJOR ) {
51  LAPACKE_xerbla( "LAPACKE_sgeesx", -1 );
52  return -1;
53  }
54 #ifndef LAPACK_DISABLE_NAN_CHECK
55  if( LAPACKE_get_nancheck() ) {
56  /* Optionally check input matrices for NaNs */
57  if( LAPACKE_sge_nancheck( matrix_layout, n, n, a, lda ) ) {
58  return -7;
59  }
60  }
61 #endif
62  /* Allocate memory for working array(s) */
63  if( LAPACKE_lsame( sort, 's' ) ) {
64  bwork = (lapack_logical*)
65  LAPACKE_malloc( sizeof(lapack_logical) * MAX(1,n) );
66  if( bwork == NULL ) {
68  goto exit_level_0;
69  }
70  }
71  /* Query optimal working array(s) size */
72  info = LAPACKE_sgeesx_work( matrix_layout, jobvs, sort, select, sense, n, a,
73  lda, sdim, wr, wi, vs, ldvs, rconde, rcondv,
74  &work_query, lwork, &iwork_query, liwork,
75  bwork );
76  if( info != 0 ) {
77  goto exit_level_1;
78  }
79  liwork = (lapack_int)iwork_query;
80  lwork = (lapack_int)work_query;
81  /* Allocate memory for work arrays */
82  if( LAPACKE_lsame( sense, 'b' ) || LAPACKE_lsame( sense, 'v' ) ) {
83  iwork = (lapack_int*)LAPACKE_malloc( sizeof(lapack_int) * liwork );
84  if( iwork == NULL ) {
86  goto exit_level_1;
87  }
88  }
89  work = (float*)LAPACKE_malloc( sizeof(float) * lwork );
90  if( work == NULL ) {
92  goto exit_level_2;
93  }
94  /* Call middle-level interface */
95  info = LAPACKE_sgeesx_work( matrix_layout, jobvs, sort, select, sense, n, a,
96  lda, sdim, wr, wi, vs, ldvs, rconde, rcondv,
97  work, lwork, iwork, liwork, bwork );
98  /* Release memory and exit */
99  LAPACKE_free( work );
100 exit_level_2:
101  if( LAPACKE_lsame( sense, 'b' ) || LAPACKE_lsame( sense, 'v' ) ) {
102  LAPACKE_free( iwork );
103  }
104 exit_level_1:
105  if( LAPACKE_lsame( sort, 's' ) ) {
106  LAPACKE_free( bwork );
107  }
108 exit_level_0:
109  if( info == LAPACK_WORK_MEMORY_ERROR ) {
110  LAPACKE_xerbla( "LAPACKE_sgeesx", info );
111  }
112  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
MAX
#define MAX(x, y)
Definition: lapacke_utils.h:47
lapack_logical
#define lapack_logical
Definition: lapack.h:25
LAPACKE_sge_nancheck
lapack_logical LAPACKE_sge_nancheck(int matrix_layout, lapack_int m, lapack_int n, const float *a, lapack_int lda)
Definition: lapacke_sge_nancheck.c:36
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
LAPACKE_sgeesx_work
lapack_int LAPACKE_sgeesx_work(int matrix_layout, char jobvs, char sort, LAPACK_S_SELECT2 select, char sense, lapack_int n, float *a, lapack_int lda, lapack_int *sdim, float *wr, float *wi, float *vs, lapack_int ldvs, float *rconde, float *rcondv, float *work, lapack_int lwork, lapack_int *iwork, lapack_int liwork, lapack_logical *bwork)
Definition: lapacke_sgeesx_work.c:35