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

Go to the source code of this file.

Functions

lapack_int LAPACKE_zstedc (int matrix_layout, char compz, lapack_int n, double *d, double *e, lapack_complex_double *z, lapack_int ldz)

Function Documentation

◆ LAPACKE_zstedc()

lapack_int LAPACKE_zstedc ( int matrix_layout,
char compz,
lapack_int n,
double * d,
double * e,
lapack_complex_double * z,
lapack_int ldz )

Definition at line 35 of file lapacke_zstedc.c.

38{
39 lapack_int info = 0;
40 lapack_int liwork = -1;
41 lapack_int lrwork = -1;
42 lapack_int lwork = -1;
43 lapack_int* iwork = NULL;
44 double* rwork = NULL;
45 lapack_complex_double* work = NULL;
46 lapack_int iwork_query;
47 double rwork_query;
48 lapack_complex_double work_query;
49 if( matrix_layout != LAPACK_COL_MAJOR && matrix_layout != LAPACK_ROW_MAJOR ) {
50 LAPACKE_xerbla( "LAPACKE_zstedc", -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_d_nancheck( n, d, 1 ) ) {
57 return -4;
58 }
59 if( LAPACKE_d_nancheck( n-1, e, 1 ) ) {
60 return -5;
61 }
62 if( LAPACKE_lsame( compz, 'v' ) ) {
63 if( LAPACKE_zge_nancheck( matrix_layout, n, n, z, ldz ) ) {
64 return -6;
65 }
66 }
67 }
68#endif
69 /* Query optimal working array(s) size */
70 info = LAPACKE_zstedc_work( matrix_layout, compz, n, d, e, z, ldz,
71 &work_query, lwork, &rwork_query, lrwork,
72 &iwork_query, liwork );
73 if( info != 0 ) {
74 goto exit_level_0;
75 }
76 liwork = iwork_query;
77 lrwork = (lapack_int)rwork_query;
78 lwork = LAPACK_Z2INT( work_query );
79 /* Allocate memory for work arrays */
80 iwork = (lapack_int*)LAPACKE_malloc( sizeof(lapack_int) * liwork );
81 if( iwork == NULL ) {
83 goto exit_level_0;
84 }
85 rwork = (double*)LAPACKE_malloc( sizeof(double) * lrwork );
86 if( rwork == NULL ) {
88 goto exit_level_1;
89 }
90 work = (lapack_complex_double*)
91 LAPACKE_malloc( sizeof(lapack_complex_double) * lwork );
92 if( work == NULL ) {
94 goto exit_level_2;
95 }
96 /* Call middle-level interface */
97 info = LAPACKE_zstedc_work( matrix_layout, compz, n, d, e, z, ldz, work,
98 lwork, rwork, lrwork, iwork, liwork );
99 /* Release memory and exit */
100 LAPACKE_free( work );
101exit_level_2:
102 LAPACKE_free( rwork );
103exit_level_1:
104 LAPACKE_free( iwork );
105exit_level_0:
106 if( info == LAPACK_WORK_MEMORY_ERROR ) {
107 LAPACKE_xerbla( "LAPACKE_zstedc", info );
108 }
109 return info;
110}
#define lapack_int
Definition lapack.h:83
#define lapack_complex_double
Definition lapack.h:63
#define LAPACK_WORK_MEMORY_ERROR
Definition lapacke.h:55
#define LAPACK_COL_MAJOR
Definition lapacke.h:53
#define LAPACKE_free(p)
Definition lapacke.h:46
#define LAPACK_ROW_MAJOR
Definition lapacke.h:52
lapack_int LAPACKE_zstedc_work(int matrix_layout, char compz, lapack_int n, double *d, double *e, lapack_complex_double *z, lapack_int ldz, lapack_complex_double *work, lapack_int lwork, double *rwork, lapack_int lrwork, lapack_int *iwork, lapack_int liwork)
int LAPACKE_get_nancheck(void)
#define LAPACK_Z2INT(x)
Definition lapacke.h:50
#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)
lapack_logical LAPACKE_zge_nancheck(int matrix_layout, lapack_int m, lapack_int n, const lapack_complex_double *a, lapack_int lda)
lapack_logical LAPACKE_d_nancheck(lapack_int n, const double *x, lapack_int incx)
n