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

◆ LAPACKE_cstedc()

lapack_int LAPACKE_cstedc ( int  matrix_layout,
char  compz,
lapack_int  n,
float *  d,
float *  e,
lapack_complex_float z,
lapack_int  ldz 
)

Definition at line 35 of file lapacke_cstedc.c.

37{
38 lapack_int info = 0;
39 lapack_int liwork = -1;
40 lapack_int lrwork = -1;
41 lapack_int lwork = -1;
42 lapack_int* iwork = NULL;
43 float* rwork = NULL;
44 lapack_complex_float* work = NULL;
45 lapack_int iwork_query;
46 float rwork_query;
47 lapack_complex_float work_query;
48 if( matrix_layout != LAPACK_COL_MAJOR && matrix_layout != LAPACK_ROW_MAJOR ) {
49 LAPACKE_xerbla( "LAPACKE_cstedc", -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_s_nancheck( n, d, 1 ) ) {
56 return -4;
57 }
58 if( LAPACKE_s_nancheck( n-1, e, 1 ) ) {
59 return -5;
60 }
61 if( LAPACKE_lsame( compz, 'v' ) ) {
62 if( LAPACKE_cge_nancheck( matrix_layout, n, n, z, ldz ) ) {
63 return -6;
64 }
65 }
66 }
67#endif
68 /* Query optimal working array(s) size */
69 info = LAPACKE_cstedc_work( matrix_layout, compz, n, d, e, z, ldz,
70 &work_query, lwork, &rwork_query, lrwork,
71 &iwork_query, liwork );
72 if( info != 0 ) {
73 goto exit_level_0;
74 }
75 liwork = iwork_query;
76 lrwork = (lapack_int)rwork_query;
77 lwork = LAPACK_C2INT( work_query );
78 /* Allocate memory for work arrays */
79 iwork = (lapack_int*)LAPACKE_malloc( sizeof(lapack_int) * liwork );
80 if( iwork == NULL ) {
82 goto exit_level_0;
83 }
84 rwork = (float*)LAPACKE_malloc( sizeof(float) * lrwork );
85 if( rwork == NULL ) {
87 goto exit_level_1;
88 }
89 work = (lapack_complex_float*)
90 LAPACKE_malloc( sizeof(lapack_complex_float) * lwork );
91 if( work == NULL ) {
93 goto exit_level_2;
94 }
95 /* Call middle-level interface */
96 info = LAPACKE_cstedc_work( matrix_layout, compz, n, d, e, z, ldz, work,
97 lwork, rwork, lrwork, iwork, liwork );
98 /* Release memory and exit */
99 LAPACKE_free( work );
100exit_level_2:
101 LAPACKE_free( rwork );
102exit_level_1:
103 LAPACKE_free( iwork );
104exit_level_0:
105 if( info == LAPACK_WORK_MEMORY_ERROR ) {
106 LAPACKE_xerbla( "LAPACKE_cstedc", info );
107 }
108 return info;
109}
#define lapack_int
Definition: lapack.h:87
#define lapack_complex_float
Definition: lapack.h:46
#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_cstedc_work(int matrix_layout, char compz, lapack_int n, float *d, float *e, lapack_complex_float *z, lapack_int ldz, lapack_complex_float *work, lapack_int lwork, float *rwork, lapack_int lrwork, lapack_int *iwork, lapack_int liwork)
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_s_nancheck(lapack_int n, const float *x, lapack_int incx)
lapack_logical LAPACKE_cge_nancheck(int matrix_layout, lapack_int m, lapack_int n, const lapack_complex_float *a, lapack_int lda)
Here is the call graph for this function: