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

Go to the source code of this file.

Functions

lapack_int LAPACKE_ctgsna (int matrix_layout, char job, char howmny, const lapack_logical *select, lapack_int n, const lapack_complex_float *a, lapack_int lda, const lapack_complex_float *b, lapack_int ldb, const lapack_complex_float *vl, lapack_int ldvl, const lapack_complex_float *vr, lapack_int ldvr, float *s, float *dif, lapack_int mm, lapack_int *m)

Function Documentation

◆ LAPACKE_ctgsna()

lapack_int LAPACKE_ctgsna ( int matrix_layout,
char job,
char howmny,
const lapack_logical * select,
lapack_int n,
const lapack_complex_float * a,
lapack_int lda,
const lapack_complex_float * b,
lapack_int ldb,
const lapack_complex_float * vl,
lapack_int ldvl,
const lapack_complex_float * vr,
lapack_int ldvr,
float * s,
float * dif,
lapack_int mm,
lapack_int * m )

Definition at line 35 of file lapacke_ctgsna.c.

42{
43 lapack_int info = 0;
44 lapack_int lwork = -1;
45 lapack_int* iwork = NULL;
46 lapack_complex_float* work = NULL;
47 lapack_complex_float work_query;
48 if( matrix_layout != LAPACK_COL_MAJOR && matrix_layout != LAPACK_ROW_MAJOR ) {
49 LAPACKE_xerbla( "LAPACKE_ctgsna", -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_cge_nancheck( matrix_layout, n, n, a, lda ) ) {
56 return -6;
57 }
58 if( LAPACKE_cge_nancheck( matrix_layout, n, n, b, ldb ) ) {
59 return -8;
60 }
61 if( LAPACKE_lsame( job, 'b' ) || LAPACKE_lsame( job, 'e' ) ) {
62 if( LAPACKE_cge_nancheck( matrix_layout, n, mm, vl, ldvl ) ) {
63 return -10;
64 }
65 }
66 if( LAPACKE_lsame( job, 'b' ) || LAPACKE_lsame( job, 'e' ) ) {
67 if( LAPACKE_cge_nancheck( matrix_layout, n, mm, vr, ldvr ) ) {
68 return -12;
69 }
70 }
71 }
72#endif
73 /* Allocate memory for working array(s) */
74 if( LAPACKE_lsame( job, 'b' ) || LAPACKE_lsame( job, 'v' ) ) {
75 iwork = (lapack_int*)LAPACKE_malloc( sizeof(lapack_int) * MAX(1,n+2) );
76 if( iwork == NULL ) {
78 goto exit_level_0;
79 }
80 }
81 /* Query optimal working array(s) size */
82 info = LAPACKE_ctgsna_work( matrix_layout, job, howmny, select, n, a, lda, b,
83 ldb, vl, ldvl, vr, ldvr, s, dif, mm, m,
84 &work_query, lwork, iwork );
85 if( info != 0 ) {
86 goto exit_level_1;
87 }
88 lwork = LAPACK_C2INT( work_query );
89 /* Allocate memory for work arrays */
90 if( LAPACKE_lsame( job, 'b' ) || LAPACKE_lsame( job, 'v' ) ) {
91 work = (lapack_complex_float*)
92 LAPACKE_malloc( sizeof(lapack_complex_float) * lwork );
93 if( work == NULL ) {
95 goto exit_level_1;
96 }
97 }
98 /* Call middle-level interface */
99 info = LAPACKE_ctgsna_work( matrix_layout, job, howmny, select, n, a, lda, b,
100 ldb, vl, ldvl, vr, ldvr, s, dif, mm, m, work,
101 lwork, iwork );
102 /* Release memory and exit */
103 if( LAPACKE_lsame( job, 'b' ) || LAPACKE_lsame( job, 'v' ) ) {
104 LAPACKE_free( work );
105 }
106exit_level_1:
107 if( LAPACKE_lsame( job, 'b' ) || LAPACKE_lsame( job, 'v' ) ) {
108 LAPACKE_free( iwork );
109 }
110exit_level_0:
111 if( info == LAPACK_WORK_MEMORY_ERROR ) {
112 LAPACKE_xerbla( "LAPACKE_ctgsna", info );
113 }
114 return info;
115}
#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
#define LAPACK_C2INT(x)
Definition lapacke.h:49
#define LAPACKE_free(p)
Definition lapacke.h:46
#define LAPACK_ROW_MAJOR
Definition lapacke.h:52
lapack_int LAPACKE_ctgsna_work(int matrix_layout, char job, char howmny, const lapack_logical *select, lapack_int n, const lapack_complex_float *a, lapack_int lda, const lapack_complex_float *b, lapack_int ldb, const lapack_complex_float *vl, lapack_int ldvl, const lapack_complex_float *vr, lapack_int ldvr, float *s, float *dif, lapack_int mm, lapack_int *m, lapack_complex_float *work, lapack_int lwork, lapack_int *iwork)
int LAPACKE_get_nancheck(void)
#define LAPACKE_malloc(size)
Definition lapacke.h:43
lapack_logical LAPACKE_lsame(char ca, char cb)
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