LAPACK  3.9.0
LAPACK: Linear Algebra PACKage

◆ LAPACKE_ctgsyl()

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

Definition at line 35 of file lapacke_ctgsyl.c.

45 {
46  lapack_int info = 0;
47  lapack_int lwork = -1;
48  lapack_int* iwork = NULL;
49  lapack_complex_float* work = NULL;
50  lapack_complex_float work_query;
51  if( matrix_layout != LAPACK_COL_MAJOR && matrix_layout != LAPACK_ROW_MAJOR ) {
52  LAPACKE_xerbla( "LAPACKE_ctgsyl", -1 );
53  return -1;
54  }
55 #ifndef LAPACK_DISABLE_NAN_CHECK
56  if( LAPACKE_get_nancheck() ) {
57  /* Optionally check input matrices for NaNs */
58  if( LAPACKE_cge_nancheck( matrix_layout, m, m, a, lda ) ) {
59  return -6;
60  }
61  if( LAPACKE_cge_nancheck( matrix_layout, n, n, b, ldb ) ) {
62  return -8;
63  }
64  if( LAPACKE_cge_nancheck( matrix_layout, m, n, c, ldc ) ) {
65  return -10;
66  }
67  if( LAPACKE_cge_nancheck( matrix_layout, m, m, d, ldd ) ) {
68  return -12;
69  }
70  if( LAPACKE_cge_nancheck( matrix_layout, n, n, e, lde ) ) {
71  return -14;
72  }
73  if( LAPACKE_cge_nancheck( matrix_layout, m, n, f, ldf ) ) {
74  return -16;
75  }
76  }
77 #endif
78  /* Allocate memory for working array(s) */
79  iwork = (lapack_int*)LAPACKE_malloc( sizeof(lapack_int) * MAX(1,m+n+2) );
80  if( iwork == NULL ) {
82  goto exit_level_0;
83  }
84  /* Query optimal working array(s) size */
85  info = LAPACKE_ctgsyl_work( matrix_layout, trans, ijob, m, n, a, lda, b, ldb,
86  c, ldc, d, ldd, e, lde, f, ldf, scale, dif,
87  &work_query, lwork, iwork );
88  if( info != 0 ) {
89  goto exit_level_1;
90  }
91  lwork = LAPACK_C2INT( work_query );
92  /* Allocate memory for work arrays */
93  work = (lapack_complex_float*)
94  LAPACKE_malloc( sizeof(lapack_complex_float) * lwork );
95  if( work == NULL ) {
97  goto exit_level_1;
98  }
99  /* Call middle-level interface */
100  info = LAPACKE_ctgsyl_work( matrix_layout, trans, ijob, m, n, a, lda, b, ldb,
101  c, ldc, d, ldd, e, lde, f, ldf, scale, dif,
102  work, lwork, iwork );
103  /* Release memory and exit */
104  LAPACKE_free( work );
105 exit_level_1:
106  LAPACKE_free( iwork );
107 exit_level_0:
108  if( info == LAPACK_WORK_MEMORY_ERROR ) {
109  LAPACKE_xerbla( "LAPACKE_ctgsyl", info );
110  }
111  return info;
Here is the call graph for this function:
LAPACKE_free
#define LAPACKE_free(p)
Definition: lapacke.h:47
lapack_int
#define lapack_int
Definition: lapack.h:21
lde
logical function lde(RI, RJ, LR)
Definition: dblat2.f:2945
LAPACK_C2INT
#define LAPACK_C2INT(x)
Definition: lapacke.h:50
LAPACK_WORK_MEMORY_ERROR
#define LAPACK_WORK_MEMORY_ERROR
Definition: lapacke.h:56
LAPACKE_xerbla
void LAPACKE_xerbla(const char *name, lapack_int info)
Definition: lapacke_xerbla.c:36
LAPACKE_cge_nancheck
lapack_logical LAPACKE_cge_nancheck(int matrix_layout, lapack_int m, lapack_int n, const lapack_complex_float *a, lapack_int lda)
Definition: lapacke_cge_nancheck.c:36
MAX
#define MAX(x, y)
Definition: lapacke_utils.h:47
lapack_complex_float
#define lapack_complex_float
Definition: lapack.h:56
LAPACKE_malloc
#define LAPACKE_malloc(size)
Definition: lapacke.h:44
LAPACKE_get_nancheck
int LAPACKE_get_nancheck()
Definition: lapacke_nancheck.c:42
LAPACK_ROW_MAJOR
#define LAPACK_ROW_MAJOR
Definition: lapacke.h:53
LAPACK_COL_MAJOR
#define LAPACK_COL_MAJOR
Definition: lapacke.h:54
LAPACKE_ctgsyl_work
lapack_int LAPACKE_ctgsyl_work(int matrix_layout, char trans, lapack_int ijob, lapack_int m, lapack_int n, const lapack_complex_float *a, lapack_int lda, const lapack_complex_float *b, lapack_int ldb, lapack_complex_float *c, lapack_int ldc, const lapack_complex_float *d, lapack_int ldd, const lapack_complex_float *e, lapack_int lde, lapack_complex_float *f, lapack_int ldf, float *scale, float *dif, lapack_complex_float *work, lapack_int lwork, lapack_int *iwork)
Definition: lapacke_ctgsyl_work.c:35