Go to the source code of this file.
◆ LAPACKE_dstevd()
Definition at line 35 of file lapacke_dstevd.c.
37{
42 double* work = NULL;
44 double work_query;
47 return -1;
48 }
49#ifndef LAPACK_DISABLE_NAN_CHECK
51
53 return -4;
54 }
56 return -5;
57 }
58 }
59#endif
60
62 &work_query, lwork, &iwork_query, liwork );
63 if( info != 0 ) {
64 goto exit_level_0;
65 }
66 liwork = iwork_query;
68
70 if( iwork == NULL ) {
72 goto exit_level_0;
73 }
75 if( work == NULL ) {
77 goto exit_level_1;
78 }
79
81 lwork, iwork, liwork );
82
84exit_level_1:
86exit_level_0:
89 }
90 return info;
91}
#define LAPACK_WORK_MEMORY_ERROR
lapack_int LAPACKE_dstevd_work(int matrix_layout, char jobz, lapack_int n, double *d, double *e, double *z, lapack_int ldz, double *work, lapack_int lwork, lapack_int *iwork, lapack_int liwork)
int LAPACKE_get_nancheck(void)
#define LAPACKE_malloc(size)
void LAPACKE_xerbla(const char *name, lapack_int info)
lapack_logical LAPACKE_d_nancheck(lapack_int n, const double *x, lapack_int incx)