LAPACK  3.10.1
LAPACK: Linear Algebra PACKage

◆ LAPACKE_cggevx_work()

lapack_int LAPACKE_cggevx_work ( int  matrix_layout,
char  balanc,
char  jobvl,
char  jobvr,
char  sense,
lapack_int  n,
lapack_complex_float a,
lapack_int  lda,
lapack_complex_float b,
lapack_int  ldb,
lapack_complex_float alpha,
lapack_complex_float beta,
lapack_complex_float vl,
lapack_int  ldvl,
lapack_complex_float vr,
lapack_int  ldvr,
lapack_int ilo,
lapack_int ihi,
float *  lscale,
float *  rscale,
float *  abnrm,
float *  bbnrm,
float *  rconde,
float *  rcondv,
lapack_complex_float work,
lapack_int  lwork,
float *  rwork,
lapack_int iwork,
lapack_logical bwork 
)

Definition at line 35 of file lapacke_cggevx_work.c.

49 {
50  lapack_int info = 0;
51  if( matrix_layout == LAPACK_COL_MAJOR ) {
52  /* Call LAPACK function and adjust info */
53  LAPACK_cggevx( &balanc, &jobvl, &jobvr, &sense, &n, a, &lda, b, &ldb,
54  alpha, beta, vl, &ldvl, vr, &ldvr, ilo, ihi, lscale,
55  rscale, abnrm, bbnrm, rconde, rcondv, work, &lwork,
56  rwork, iwork, bwork, &info );
57  if( info < 0 ) {
58  info = info - 1;
59  }
60  } else if( matrix_layout == LAPACK_ROW_MAJOR ) {
61  lapack_int lda_t = MAX(1,n);
62  lapack_int ldb_t = MAX(1,n);
63  lapack_int ldvl_t = MAX(1,n);
64  lapack_int ldvr_t = MAX(1,n);
65  lapack_complex_float* a_t = NULL;
66  lapack_complex_float* b_t = NULL;
67  lapack_complex_float* vl_t = NULL;
68  lapack_complex_float* vr_t = NULL;
69  /* Check leading dimension(s) */
70  if( lda < n ) {
71  info = -8;
72  LAPACKE_xerbla( "LAPACKE_cggevx_work", info );
73  return info;
74  }
75  if( ldb < n ) {
76  info = -10;
77  LAPACKE_xerbla( "LAPACKE_cggevx_work", info );
78  return info;
79  }
80  if( ldvl < n ) {
81  info = -14;
82  LAPACKE_xerbla( "LAPACKE_cggevx_work", info );
83  return info;
84  }
85  if( ldvr < n ) {
86  info = -16;
87  LAPACKE_xerbla( "LAPACKE_cggevx_work", info );
88  return info;
89  }
90  /* Query optimal working array(s) size if requested */
91  if( lwork == -1 ) {
92  LAPACK_cggevx( &balanc, &jobvl, &jobvr, &sense, &n, a, &lda_t, b,
93  &ldb_t, alpha, beta, vl, &ldvl_t, vr, &ldvr_t, ilo,
94  ihi, lscale, rscale, abnrm, bbnrm, rconde, rcondv,
95  work, &lwork, rwork, iwork, bwork, &info );
96  return (info < 0) ? (info - 1) : info;
97  }
98  /* Allocate memory for temporary array(s) */
99  a_t = (lapack_complex_float*)
100  LAPACKE_malloc( sizeof(lapack_complex_float) * lda_t * MAX(1,n) );
101  if( a_t == NULL ) {
103  goto exit_level_0;
104  }
105  b_t = (lapack_complex_float*)
106  LAPACKE_malloc( sizeof(lapack_complex_float) * ldb_t * MAX(1,n) );
107  if( b_t == NULL ) {
109  goto exit_level_1;
110  }
111  if( LAPACKE_lsame( jobvl, 'v' ) ) {
112  vl_t = (lapack_complex_float*)
114  ldvl_t * MAX(1,n) );
115  if( vl_t == NULL ) {
117  goto exit_level_2;
118  }
119  }
120  if( LAPACKE_lsame( jobvr, 'v' ) ) {
121  vr_t = (lapack_complex_float*)
123  ldvr_t * MAX(1,n) );
124  if( vr_t == NULL ) {
126  goto exit_level_3;
127  }
128  }
129  /* Transpose input matrices */
130  LAPACKE_cge_trans( matrix_layout, n, n, a, lda, a_t, lda_t );
131  LAPACKE_cge_trans( matrix_layout, n, n, b, ldb, b_t, ldb_t );
132  /* Call LAPACK function and adjust info */
133  LAPACK_cggevx( &balanc, &jobvl, &jobvr, &sense, &n, a_t, &lda_t, b_t,
134  &ldb_t, alpha, beta, vl_t, &ldvl_t, vr_t, &ldvr_t, ilo,
135  ihi, lscale, rscale, abnrm, bbnrm, rconde, rcondv, work,
136  &lwork, rwork, iwork, bwork, &info );
137  if( info < 0 ) {
138  info = info - 1;
139  }
140  /* Transpose output matrices */
141  LAPACKE_cge_trans( LAPACK_COL_MAJOR, n, n, a_t, lda_t, a, lda );
142  LAPACKE_cge_trans( LAPACK_COL_MAJOR, n, n, b_t, ldb_t, b, ldb );
143  if( LAPACKE_lsame( jobvl, 'v' ) ) {
144  LAPACKE_cge_trans( LAPACK_COL_MAJOR, n, n, vl_t, ldvl_t, vl, ldvl );
145  }
146  if( LAPACKE_lsame( jobvr, 'v' ) ) {
147  LAPACKE_cge_trans( LAPACK_COL_MAJOR, n, n, vr_t, ldvr_t, vr, ldvr );
148  }
149  /* Release memory and exit */
150  if( LAPACKE_lsame( jobvr, 'v' ) ) {
151  LAPACKE_free( vr_t );
152  }
153 exit_level_3:
154  if( LAPACKE_lsame( jobvl, 'v' ) ) {
155  LAPACKE_free( vl_t );
156  }
157 exit_level_2:
158  LAPACKE_free( b_t );
159 exit_level_1:
160  LAPACKE_free( a_t );
161 exit_level_0:
162  if( info == LAPACK_TRANSPOSE_MEMORY_ERROR ) {
163  LAPACKE_xerbla( "LAPACKE_cggevx_work", info );
164  }
165  } else {
166  info = -1;
167  LAPACKE_xerbla( "LAPACKE_cggevx_work", info );
168  }
169  return info;
170 }
#define lapack_int
Definition: lapack.h:83
#define lapack_complex_float
Definition: lapack.h:45
#define LAPACK_cggevx(...)
Definition: lapack.h:4851
#define LAPACK_COL_MAJOR
Definition: lapacke.h:53
#define LAPACKE_free(p)
Definition: lapacke.h:46
#define LAPACK_ROW_MAJOR
Definition: lapacke.h:52
#define LAPACKE_malloc(size)
Definition: lapacke.h:43
#define LAPACK_TRANSPOSE_MEMORY_ERROR
Definition: lapacke.h:56
lapack_logical LAPACKE_lsame(char ca, char cb)
Definition: lapacke_lsame.c:35
void LAPACKE_xerbla(const char *name, lapack_int info)
#define MAX(x, y)
Definition: lapacke_utils.h:46
void LAPACKE_cge_trans(int matrix_layout, lapack_int m, lapack_int n, const lapack_complex_float *in, lapack_int ldin, lapack_complex_float *out, lapack_int ldout)
Here is the call graph for this function:
Here is the caller graph for this function: