LAPACK  3.10.0
LAPACK: Linear Algebra PACKage

◆ LAPACKE_ztgsyl()

lapack_int LAPACKE_ztgsyl ( int  matrix_layout,
char  trans,
lapack_int  ijob,
lapack_int  m,
lapack_int  n,
const lapack_complex_double a,
lapack_int  lda,
const lapack_complex_double b,
lapack_int  ldb,
lapack_complex_double c,
lapack_int  ldc,
const lapack_complex_double d,
lapack_int  ldd,
const lapack_complex_double e,
lapack_int  lde,
lapack_complex_double f,
lapack_int  ldf,
double *  scale,
double *  dif 
)

Definition at line 35 of file lapacke_ztgsyl.c.

44 {
45  lapack_int info = 0;
46  lapack_int lwork = -1;
47  lapack_int* iwork = NULL;
48  lapack_complex_double* work = NULL;
49  lapack_complex_double work_query;
50  if( matrix_layout != LAPACK_COL_MAJOR && matrix_layout != LAPACK_ROW_MAJOR ) {
51  LAPACKE_xerbla( "LAPACKE_ztgsyl", -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_zge_nancheck( matrix_layout, m, m, a, lda ) ) {
58  return -6;
59  }
60  if( LAPACKE_zge_nancheck( matrix_layout, n, n, b, ldb ) ) {
61  return -8;
62  }
63  if( LAPACKE_zge_nancheck( matrix_layout, m, n, c, ldc ) ) {
64  return -10;
65  }
66  if( LAPACKE_zge_nancheck( matrix_layout, m, m, d, ldd ) ) {
67  return -12;
68  }
69  if( LAPACKE_zge_nancheck( matrix_layout, n, n, e, lde ) ) {
70  return -14;
71  }
72  if( LAPACKE_zge_nancheck( matrix_layout, m, n, f, ldf ) ) {
73  return -16;
74  }
75  }
76 #endif
77  /* Allocate memory for working array(s) */
78  iwork = (lapack_int*)LAPACKE_malloc( sizeof(lapack_int) * MAX(1,m+n+2) );
79  if( iwork == NULL ) {
81  goto exit_level_0;
82  }
83  /* Query optimal working array(s) size */
84  info = LAPACKE_ztgsyl_work( matrix_layout, trans, ijob, m, n, a, lda, b, ldb,
85  c, ldc, d, ldd, e, lde, f, ldf, scale, dif,
86  &work_query, lwork, iwork );
87  if( info != 0 ) {
88  goto exit_level_1;
89  }
90  lwork = LAPACK_Z2INT( work_query );
91  /* Allocate memory for work arrays */
92  work = (lapack_complex_double*)
93  LAPACKE_malloc( sizeof(lapack_complex_double) * lwork );
94  if( work == NULL ) {
96  goto exit_level_1;
97  }
98  /* Call middle-level interface */
99  info = LAPACKE_ztgsyl_work( matrix_layout, trans, ijob, m, n, a, lda, b, ldb,
100  c, ldc, d, ldd, e, lde, f, ldf, scale, dif,
101  work, lwork, iwork );
102  /* Release memory and exit */
103  LAPACKE_free( work );
104 exit_level_1:
105  LAPACKE_free( iwork );
106 exit_level_0:
107  if( info == LAPACK_WORK_MEMORY_ERROR ) {
108  LAPACKE_xerbla( "LAPACKE_ztgsyl", info );
109  }
110  return info;
111 }
logical function lde(RI, RJ, LR)
Definition: dblat2.f:2942
#define lapack_int
Definition: lapack.h:83
#define lapack_complex_double
Definition: lapack.h:63
#define LAPACK_WORK_MEMORY_ERROR
Definition: lapacke.h:55
lapack_int LAPACKE_ztgsyl_work(int matrix_layout, char trans, lapack_int ijob, lapack_int m, lapack_int n, const lapack_complex_double *a, lapack_int lda, const lapack_complex_double *b, lapack_int ldb, lapack_complex_double *c, lapack_int ldc, const lapack_complex_double *d, lapack_int ldd, const lapack_complex_double *e, lapack_int lde, lapack_complex_double *f, lapack_int ldf, double *scale, double *dif, lapack_complex_double *work, lapack_int lwork, lapack_int *iwork)
#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)
#define LAPACK_Z2INT(x)
Definition: lapacke.h:50
#define LAPACKE_malloc(size)
Definition: lapacke.h:43
void LAPACKE_xerbla(const char *name, lapack_int info)
lapack_logical LAPACKE_zge_nancheck(int matrix_layout, lapack_int m, lapack_int n, const lapack_complex_double *a, lapack_int lda)
#define MAX(x, y)
Definition: lapacke_utils.h:46
Here is the call graph for this function: