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

Go to the source code of this file.

Functions

lapack_int LAPACKE_cgeevx (int matrix_layout, char balanc, char jobvl, char jobvr, char sense, lapack_int n, lapack_complex_float *a, lapack_int lda, lapack_complex_float *w, lapack_complex_float *vl, lapack_int ldvl, lapack_complex_float *vr, lapack_int ldvr, lapack_int *ilo, lapack_int *ihi, float *scale, float *abnrm, float *rconde, float *rcondv)

Function Documentation

◆ LAPACKE_cgeevx()

lapack_int LAPACKE_cgeevx ( int matrix_layout,
char balanc,
char jobvl,
char jobvr,
char sense,
lapack_int n,
lapack_complex_float * a,
lapack_int lda,
lapack_complex_float * w,
lapack_complex_float * vl,
lapack_int ldvl,
lapack_complex_float * vr,
lapack_int ldvr,
lapack_int * ilo,
lapack_int * ihi,
float * scale,
float * abnrm,
float * rconde,
float * rcondv )

Definition at line 35 of file lapacke_cgeevx.c.

43{
44 lapack_int info = 0;
45 lapack_int lwork = -1;
46 float* rwork = NULL;
47 lapack_complex_float* work = NULL;
48 lapack_complex_float work_query;
49 if( matrix_layout != LAPACK_COL_MAJOR && matrix_layout != LAPACK_ROW_MAJOR ) {
50 LAPACKE_xerbla( "LAPACKE_cgeevx", -1 );
51 return -1;
52 }
53#ifndef LAPACK_DISABLE_NAN_CHECK
54 if( LAPACKE_get_nancheck() ) {
55 /* Optionally check input matrices for NaNs */
56 if( LAPACKE_cge_nancheck( matrix_layout, n, n, a, lda ) ) {
57 return -7;
58 }
59 }
60#endif
61 /* Allocate memory for working array(s) */
62 rwork = (float*)LAPACKE_malloc( sizeof(float) * MAX(1,2*n) );
63 if( rwork == NULL ) {
65 goto exit_level_0;
66 }
67 /* Query optimal working array(s) size */
68 info = LAPACKE_cgeevx_work( matrix_layout, balanc, jobvl, jobvr, sense, n, a,
69 lda, w, vl, ldvl, vr, ldvr, ilo, ihi, scale,
70 abnrm, rconde, rcondv, &work_query, lwork,
71 rwork );
72 if( info != 0 ) {
73 goto exit_level_1;
74 }
75 lwork = LAPACK_C2INT( work_query );
76 /* Allocate memory for work arrays */
77 work = (lapack_complex_float*)
78 LAPACKE_malloc( sizeof(lapack_complex_float) * lwork );
79 if( work == NULL ) {
81 goto exit_level_1;
82 }
83 /* Call middle-level interface */
84 info = LAPACKE_cgeevx_work( matrix_layout, balanc, jobvl, jobvr, sense, n, a,
85 lda, w, vl, ldvl, vr, ldvr, ilo, ihi, scale,
86 abnrm, rconde, rcondv, work, lwork, rwork );
87 /* Release memory and exit */
88 LAPACKE_free( work );
89exit_level_1:
90 LAPACKE_free( rwork );
91exit_level_0:
92 if( info == LAPACK_WORK_MEMORY_ERROR ) {
93 LAPACKE_xerbla( "LAPACKE_cgeevx", info );
94 }
95 return info;
96}
#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
int LAPACKE_get_nancheck(void)
#define LAPACKE_malloc(size)
Definition lapacke.h:43
lapack_int LAPACKE_cgeevx_work(int matrix_layout, char balanc, char jobvl, char jobvr, char sense, lapack_int n, lapack_complex_float *a, lapack_int lda, lapack_complex_float *w, lapack_complex_float *vl, lapack_int ldvl, lapack_complex_float *vr, lapack_int ldvr, lapack_int *ilo, lapack_int *ihi, float *scale, float *abnrm, float *rconde, float *rcondv, lapack_complex_float *work, lapack_int lwork, float *rwork)
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