LAPACK  3.9.1
LAPACK: Linear Algebra PACKage

◆ LAPACKE_dtrsen()

lapack_int LAPACKE_dtrsen ( int  matrix_layout,
char  job,
char  compq,
const lapack_logical select,
lapack_int  n,
double *  t,
lapack_int  ldt,
double *  q,
lapack_int  ldq,
double *  wr,
double *  wi,
lapack_int m,
double *  s,
double *  sep 
)

Definition at line 35 of file lapacke_dtrsen.c.

40 {
41  lapack_int info = 0;
42  lapack_int liwork = -1;
43  lapack_int lwork = -1;
44  lapack_int* iwork = NULL;
45  double* work = NULL;
46  lapack_int iwork_query;
47  double work_query;
48  if( matrix_layout != LAPACK_COL_MAJOR && matrix_layout != LAPACK_ROW_MAJOR ) {
49  LAPACKE_xerbla( "LAPACKE_dtrsen", -1 );
50  return -1;
51  }
52 #ifndef LAPACK_DISABLE_NAN_CHECK
53  if( LAPACKE_get_nancheck() ) {
54  /* Optionally check input matrices for NaNs */
55  if( LAPACKE_lsame( compq, 'v' ) ) {
56  if( LAPACKE_dge_nancheck( matrix_layout, n, n, q, ldq ) ) {
57  return -8;
58  }
59  }
60  if( LAPACKE_dge_nancheck( matrix_layout, n, n, t, ldt ) ) {
61  return -6;
62  }
63  }
64 #endif
65  /* Query optimal working array(s) size */
66  info = LAPACKE_dtrsen_work( matrix_layout, job, compq, select, n, t, ldt, q,
67  ldq, wr, wi, m, s, sep, &work_query, lwork,
68  &iwork_query, liwork );
69  if( info != 0 ) {
70  goto exit_level_0;
71  }
72  liwork = iwork_query;
73  lwork = (lapack_int)work_query;
74  /* Allocate memory for work arrays */
75  if( LAPACKE_lsame( job, 'b' ) || LAPACKE_lsame( job, 'v' ) ) {
76  iwork = (lapack_int*)LAPACKE_malloc( sizeof(lapack_int) * liwork );
77  if( iwork == NULL ) {
79  goto exit_level_0;
80  }
81  }
82  work = (double*)LAPACKE_malloc( sizeof(double) * lwork );
83  if( work == NULL ) {
85  goto exit_level_1;
86  }
87  /* Call middle-level interface */
88  info = LAPACKE_dtrsen_work( matrix_layout, job, compq, select, n, t, ldt, q,
89  ldq, wr, wi, m, s, sep, work, lwork, iwork,
90  liwork );
91  /* Release memory and exit */
92  LAPACKE_free( work );
93 exit_level_1:
94  if( LAPACKE_lsame( job, 'b' ) || LAPACKE_lsame( job, 'v' ) ) {
95  LAPACKE_free( iwork );
96  }
97 exit_level_0:
98  if( info == LAPACK_WORK_MEMORY_ERROR ) {
99  LAPACKE_xerbla( "LAPACKE_dtrsen", info );
100  }
101  return info;
102 }
#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_dtrsen_work(int matrix_layout, char job, char compq, const lapack_logical *select, lapack_int n, double *t, lapack_int ldt, double *q, lapack_int ldq, double *wr, double *wi, lapack_int *m, double *s, double *sep, double *work, lapack_int lwork, lapack_int *iwork, lapack_int liwork)
#define LAPACKE_malloc(size)
Definition: lapacke.h:43
lapack_logical LAPACKE_lsame(char ca, char cb)
Definition: lapacke_lsame.c:35
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: