LAPACK  3.9.1
LAPACK: Linear Algebra PACKage

◆ LAPACKE_dtgexc()

lapack_int LAPACKE_dtgexc ( int  matrix_layout,
lapack_logical  wantq,
lapack_logical  wantz,
lapack_int  n,
double *  a,
lapack_int  lda,
double *  b,
lapack_int  ldb,
double *  q,
lapack_int  ldq,
double *  z,
lapack_int  ldz,
lapack_int ifst,
lapack_int ilst 
)

Definition at line 35 of file lapacke_dtgexc.c.

40 {
41  lapack_int info = 0;
42  lapack_int lwork = -1;
43  double* work = NULL;
44  double work_query;
45  if( matrix_layout != LAPACK_COL_MAJOR && matrix_layout != LAPACK_ROW_MAJOR ) {
46  LAPACKE_xerbla( "LAPACKE_dtgexc", -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, a, lda ) ) {
53  return -5;
54  }
55  if( LAPACKE_dge_nancheck( matrix_layout, n, n, b, ldb ) ) {
56  return -7;
57  }
58  if( wantq ) {
59  if( LAPACKE_dge_nancheck( matrix_layout, n, n, q, ldq ) ) {
60  return -9;
61  }
62  }
63  if( wantz ) {
64  if( LAPACKE_dge_nancheck( matrix_layout, n, n, z, ldz ) ) {
65  return -11;
66  }
67  }
68  }
69 #endif
70  /* Query optimal working array(s) size */
71  info = LAPACKE_dtgexc_work( matrix_layout, wantq, wantz, n, a, lda, b, ldb,
72  q, ldq, z, ldz, ifst, ilst, &work_query,
73  lwork );
74  if( info != 0 ) {
75  goto exit_level_0;
76  }
77  lwork = (lapack_int)work_query;
78  /* Allocate memory for work arrays */
79  work = (double*)LAPACKE_malloc( sizeof(double) * lwork );
80  if( work == NULL ) {
82  goto exit_level_0;
83  }
84  /* Call middle-level interface */
85  info = LAPACKE_dtgexc_work( matrix_layout, wantq, wantz, n, a, lda, b, ldb,
86  q, ldq, z, ldz, ifst, ilst, work, lwork );
87  /* Release memory and exit */
88  LAPACKE_free( work );
89 exit_level_0:
90  if( info == LAPACK_WORK_MEMORY_ERROR ) {
91  LAPACKE_xerbla( "LAPACKE_dtgexc", info );
92  }
93  return info;
94 }
#define lapack_int
Definition: lapack.h:83
#define LAPACK_WORK_MEMORY_ERROR
Definition: lapacke.h:55
#define LAPACK_COL_MAJOR
Definition: lapacke.h:53
#define LAPACKE_free(p)
Definition: lapacke.h:46
#define LAPACK_ROW_MAJOR
Definition: lapacke.h:52
int LAPACKE_get_nancheck(void)
lapack_int LAPACKE_dtgexc_work(int matrix_layout, lapack_logical wantq, lapack_logical wantz, lapack_int n, double *a, lapack_int lda, double *b, lapack_int ldb, double *q, lapack_int ldq, double *z, lapack_int ldz, lapack_int *ifst, lapack_int *ilst, double *work, lapack_int lwork)
#define LAPACKE_malloc(size)
Definition: lapacke.h:43
void LAPACKE_xerbla(const char *name, lapack_int info)
lapack_logical LAPACKE_dge_nancheck(int matrix_layout, lapack_int m, lapack_int n, const double *a, lapack_int lda)
Here is the call graph for this function: