Go to the source code of this file.
◆ LAPACKE_chpev_work()
Definition at line 35 of file lapacke_chpev_work.c.
39{
42
43 LAPACK_chpev( &jobz, &uplo, &
n, ap, w, z, &ldz, work, rwork, &info );
44 if( info < 0 ) {
45 info = info - 1;
46 }
51
53 info = -8;
55 return info;
56 }
57
62 if( z_t == NULL ) {
64 goto exit_level_0;
65 }
66 }
70 if( ap_t == NULL ) {
72 goto exit_level_1;
73 }
74
76
77 LAPACK_chpev( &jobz, &uplo, &
n, ap_t, w, z_t, &ldz_t, work, rwork,
78 &info );
79 if( info < 0 ) {
80 info = info - 1;
81 }
82
85 }
87
89exit_level_1:
92 }
93exit_level_0:
96 }
97 } else {
98 info = -1;
100 }
101 return info;
102}
#define LAPACK_chpev(...)
#define lapack_complex_float
#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_cge_trans(int matrix_layout, lapack_int m, lapack_int n, const lapack_complex_float *in, lapack_int ldin, lapack_complex_float *out, lapack_int ldout)
void LAPACKE_chp_trans(int matrix_layout, char uplo, lapack_int n, const lapack_complex_float *in, lapack_complex_float *out)