41{
44
45 LAPACK_dspevx( &jobz, &range, &uplo, &n, ap, &vl, &vu, &il, &iu,
46 &abstol, m, w, z, &ldz, work, iwork, ifail, &info );
47 if( info < 0 ) {
48 info = info - 1;
49 }
55 double* z_t = NULL;
56 double* ap_t = NULL;
57
58 if( ldz < ncols_z ) {
59 info = -15;
61 return info;
62 }
63
65 z_t = (double*)
67 if( z_t == NULL ) {
69 goto exit_level_0;
70 }
71 }
72 ap_t = (double*)
74 if( ap_t == NULL ) {
76 goto exit_level_1;
77 }
78
80
81 LAPACK_dspevx( &jobz, &range, &uplo, &n, ap_t, &vl, &vu, &il, &iu,
82 &abstol, m, w, z_t, &ldz_t, work, iwork, ifail, &info );
83 if( info < 0 ) {
84 info = info - 1;
85 }
86
89 ldz );
90 }
92
94exit_level_1:
97 }
98exit_level_0:
101 }
102 } else {
103 info = -1;
105 }
106 return info;
107}
#define LAPACK_dspevx(...)
#define LAPACKE_malloc(size)
#define LAPACK_TRANSPOSE_MEMORY_ERROR
lapack_logical LAPACKE_lsame(char ca, char cb)
void LAPACKE_xerbla(const char *name, lapack_int info)
void LAPACKE_dsp_trans(int matrix_layout, char uplo, lapack_int n, const double *in, double *out)
void LAPACKE_dge_trans(int matrix_layout, lapack_int m, lapack_int n, const double *in, lapack_int ldin, double *out, lapack_int ldout)