OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
lapacke_ctgsyl.c File Reference
#include "lapacke_utils.h"

Go to the source code of this file.

Functions

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)

Function Documentation

◆ 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.

44{
45 lapack_int info = 0;
46 lapack_int lwork = -1;
47 lapack_int* iwork = NULL;
48 lapack_complex_float* work = NULL;
49 lapack_complex_float work_query;
50 if( matrix_layout != LAPACK_COL_MAJOR && matrix_layout != LAPACK_ROW_MAJOR ) {
51 LAPACKE_xerbla( "LAPACKE_ctgsyl", -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_cge_nancheck( matrix_layout, m, m, a, lda ) ) {
58 return -6;
59 }
60 if( LAPACKE_cge_nancheck( matrix_layout, n, n, b, ldb ) ) {
61 return -8;
62 }
63 if( LAPACKE_cge_nancheck( matrix_layout, m, n, c, ldc ) ) {
64 return -10;
65 }
66 if( LAPACKE_cge_nancheck( matrix_layout, m, m, d, ldd ) ) {
67 return -12;
68 }
69 if( LAPACKE_cge_nancheck( matrix_layout, n, n, e, lde ) ) {
70 return -14;
71 }
72 if( LAPACKE_cge_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_ctgsyl_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_C2INT( work_query );
91 /* Allocate memory for work arrays */
92 work = (lapack_complex_float*)
93 LAPACKE_malloc( sizeof(lapack_complex_float) * lwork );
94 if( work == NULL ) {
96 goto exit_level_1;
97 }
98 /* Call middle-level interface */
99 info = LAPACKE_ctgsyl_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 );
104exit_level_1:
105 LAPACKE_free( iwork );
106exit_level_0:
107 if( info == LAPACK_WORK_MEMORY_ERROR ) {
108 LAPACKE_xerbla( "LAPACKE_ctgsyl", 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_float
Definition lapack.h:45
#define LAPACK_WORK_MEMORY_ERROR
Definition lapacke.h:55
#define LAPACK_COL_MAJOR
Definition lapacke.h:53
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)
#define LAPACK_C2INT(x)
Definition lapacke.h:49
#define LAPACKE_free(p)
Definition lapacke.h:46
#define LAPACK_ROW_MAJOR
Definition lapacke.h:52
int LAPACKE_get_nancheck(void)
#define LAPACKE_malloc(size)
Definition lapacke.h:43
void LAPACKE_xerbla(const char *name, lapack_int info)
#define MAX(x, y)
lapack_logical LAPACKE_cge_nancheck(int matrix_layout, lapack_int m, lapack_int n, const lapack_complex_float *a, lapack_int lda)
n