LAPACK 3.11.0
LAPACK: Linear Algebra PACKage
Loading...
Searching...
No Matches

◆ LAPACKE_strevc()

lapack_int LAPACKE_strevc ( int  matrix_layout,
char  side,
char  howmny,
lapack_logical select,
lapack_int  n,
const float *  t,
lapack_int  ldt,
float *  vl,
lapack_int  ldvl,
float *  vr,
lapack_int  ldvr,
lapack_int  mm,
lapack_int m 
)

Definition at line 35 of file lapacke_strevc.c.

40{
41 lapack_int info = 0;
42 float* work = NULL;
43 if( matrix_layout != LAPACK_COL_MAJOR && matrix_layout != LAPACK_ROW_MAJOR ) {
44 LAPACKE_xerbla( "LAPACKE_strevc", -1 );
45 return -1;
46 }
47#ifndef LAPACK_DISABLE_NAN_CHECK
48 if( LAPACKE_get_nancheck() ) {
49 /* Optionally check input matrices for NaNs */
50 if( LAPACKE_sge_nancheck( matrix_layout, n, n, t, ldt ) ) {
51 return -6;
52 }
53 if( LAPACKE_lsame( side, 'b' ) || LAPACKE_lsame( side, 'l' ) ) {
54 if( LAPACKE_sge_nancheck( matrix_layout, n, mm, vl, ldvl ) ) {
55 return -8;
56 }
57 }
58 if( LAPACKE_lsame( side, 'b' ) || LAPACKE_lsame( side, 'r' ) ) {
59 if( LAPACKE_sge_nancheck( matrix_layout, n, mm, vr, ldvr ) ) {
60 return -10;
61 }
62 }
63 }
64#endif
65 /* Allocate memory for working array(s) */
66 work = (float*)LAPACKE_malloc( sizeof(float) * MAX(1,3*n) );
67 if( work == NULL ) {
69 goto exit_level_0;
70 }
71 /* Call middle-level interface */
72 info = LAPACKE_strevc_work( matrix_layout, side, howmny, select, n, t, ldt,
73 vl, ldvl, vr, ldvr, mm, m, work );
74 /* Release memory and exit */
75 LAPACKE_free( work );
76exit_level_0:
77 if( info == LAPACK_WORK_MEMORY_ERROR ) {
78 LAPACKE_xerbla( "LAPACKE_strevc", info );
79 }
80 return info;
81}
#define lapack_int
Definition: lapack.h:87
#define LAPACK_WORK_MEMORY_ERROR
Definition: lapacke.h:55
lapack_int LAPACKE_strevc_work(int matrix_layout, char side, char howmny, lapack_logical *select, lapack_int n, const float *t, lapack_int ldt, float *vl, lapack_int ldvl, float *vr, lapack_int ldvr, lapack_int mm, lapack_int *m, float *work)
#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 LAPACKE_malloc(size)
Definition: lapacke.h:43
lapack_logical LAPACKE_lsame(char ca, char cb)
Definition: lapacke_lsame.c:35
void LAPACKE_xerbla(const char *name, lapack_int info)
lapack_logical LAPACKE_sge_nancheck(int matrix_layout, lapack_int m, lapack_int n, const float *a, lapack_int lda)
#define MAX(x, y)
Definition: lapacke_utils.h:46
Here is the call graph for this function: