LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
lapack_int LAPACKE_dtgsyl ( int  matrix_layout,
char  trans,
lapack_int  ijob,
lapack_int  m,
lapack_int  n,
const double *  a,
lapack_int  lda,
const double *  b,
lapack_int  ldb,
double *  c,
lapack_int  ldc,
const double *  d,
lapack_int  ldd,
const double *  e,
lapack_int  lde,
double *  f,
lapack_int  ldf,
double *  scale,
double *  dif 
)

Definition at line 36 of file lapacke_dtgsyl.c.

43 {
44  lapack_int info = 0;
45  lapack_int lwork = -1;
46  lapack_int* iwork = NULL;
47  double* work = NULL;
48  double work_query;
49  if( matrix_layout != LAPACK_COL_MAJOR && matrix_layout != LAPACK_ROW_MAJOR ) {
50  LAPACKE_xerbla( "LAPACKE_dtgsyl", -1 );
51  return -1;
52  }
53 #ifndef LAPACK_DISABLE_NAN_CHECK
54  /* Optionally check input matrices for NaNs */
55  if( LAPACKE_dge_nancheck( matrix_layout, m, m, a, lda ) ) {
56  return -6;
57  }
58  if( LAPACKE_dge_nancheck( matrix_layout, n, n, b, ldb ) ) {
59  return -8;
60  }
61  if( LAPACKE_dge_nancheck( matrix_layout, m, n, c, ldc ) ) {
62  return -10;
63  }
64  if( LAPACKE_dge_nancheck( matrix_layout, m, m, d, ldd ) ) {
65  return -12;
66  }
67  if( LAPACKE_dge_nancheck( matrix_layout, n, n, e, lde ) ) {
68  return -14;
69  }
70  if( LAPACKE_dge_nancheck( matrix_layout, m, n, f, ldf ) ) {
71  return -16;
72  }
73 #endif
74  /* Allocate memory for working array(s) */
75  iwork = (lapack_int*)LAPACKE_malloc( sizeof(lapack_int) * MAX(1,m+n+6) );
76  if( iwork == NULL ) {
78  goto exit_level_0;
79  }
80  /* Query optimal working array(s) size */
81  info = LAPACKE_dtgsyl_work( matrix_layout, trans, ijob, m, n, a, lda, b, ldb,
82  c, ldc, d, ldd, e, lde, f, ldf, scale, dif,
83  &work_query, lwork, iwork );
84  if( info != 0 ) {
85  goto exit_level_1;
86  }
87  lwork = (lapack_int)work_query;
88  /* Allocate memory for work arrays */
89  work = (double*)LAPACKE_malloc( sizeof(double) * lwork );
90  if( work == NULL ) {
92  goto exit_level_1;
93  }
94  /* Call middle-level interface */
95  info = LAPACKE_dtgsyl_work( matrix_layout, trans, ijob, m, n, a, lda, b, ldb,
96  c, ldc, d, ldd, e, lde, f, ldf, scale, dif,
97  work, lwork, iwork );
98  /* Release memory and exit */
99  LAPACKE_free( work );
100 exit_level_1:
101  LAPACKE_free( iwork );
102 exit_level_0:
103  if( info == LAPACK_WORK_MEMORY_ERROR ) {
104  LAPACKE_xerbla( "LAPACKE_dtgsyl", info );
105  }
106  return info;
107 }
#define LAPACK_ROW_MAJOR
Definition: lapacke.h:119
#define LAPACK_WORK_MEMORY_ERROR
Definition: lapacke.h:122
logical function lde(RI, RJ, LR)
Definition: dblat2.f:2945
lapack_int LAPACKE_dtgsyl_work(int matrix_layout, char trans, lapack_int ijob, lapack_int m, lapack_int n, const double *a, lapack_int lda, const double *b, lapack_int ldb, double *c, lapack_int ldc, const double *d, lapack_int ldd, const double *e, lapack_int lde, double *f, lapack_int ldf, double *scale, double *dif, double *work, lapack_int lwork, lapack_int *iwork)
#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
#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: