47{
50
52 equed, s, b, &ldb, x, &ldx, rcond, rpvgrw, berr,
53 &n_err_bnds, err_bnds_norm, err_bnds_comp, &nparams,
54 params, work, rwork, &info );
55 if( info < 0 ) {
56 info = info - 1;
57 }
67 double* err_bnds_norm_t = NULL;
68 double* err_bnds_comp_t = NULL;
69
70 if( lda < n ) {
71 info = -7;
73 return info;
74 }
75 if( ldaf < n ) {
76 info = -9;
78 return info;
79 }
80 if( ldb < nrhs ) {
81 info = -14;
83 return info;
84 }
85 if( ldx < nrhs ) {
86 info = -16;
88 return info;
89 }
90
93 if( a_t == NULL ) {
95 goto exit_level_0;
96 }
99 if( af_t == NULL ) {
101 goto exit_level_1;
102 }
105 ldb_t *
MAX(1,nrhs) );
106 if( b_t == NULL ) {
108 goto exit_level_2;
109 }
112 ldx_t *
MAX(1,nrhs) );
113 if( x_t == NULL ) {
115 goto exit_level_3;
116 }
117 err_bnds_norm_t = (double*)
119 if( err_bnds_norm_t == NULL ) {
121 goto exit_level_4;
122 }
123 err_bnds_comp_t = (double*)
125 if( err_bnds_comp_t == NULL ) {
127 goto exit_level_5;
128 }
129
133 }
135
136 LAPACK_zsysvxx( &fact, &uplo, &n, &nrhs, a_t, &lda_t, af_t, &ldaf_t,
137 ipiv, equed, s, b_t, &ldb_t, x_t, &ldx_t, rcond, rpvgrw,
138 berr, &n_err_bnds, err_bnds_norm_t, err_bnds_comp_t,
139 &nparams, params, work, rwork, &info );
140 if( info < 0 ) {
141 info = info - 1;
142 }
143
146 }
149 ldaf );
150 }
153 }
156 nrhs, err_bnds_norm, n_err_bnds );
158 nrhs, err_bnds_comp, n_err_bnds );
159
161exit_level_5:
163exit_level_4:
165exit_level_3:
167exit_level_2:
169exit_level_1:
171exit_level_0:
174 }
175 } else {
176 info = -1;
178 }
179 return info;
180}
#define LAPACK_zsysvxx(...)
#define lapack_complex_double
#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_zge_trans(int matrix_layout, lapack_int m, lapack_int n, const lapack_complex_double *in, lapack_int ldin, lapack_complex_double *out, lapack_int ldout)
void LAPACKE_zsy_trans(int matrix_layout, char uplo, lapack_int n, const lapack_complex_double *in, lapack_int ldin, lapack_complex_double *out, lapack_int ldout)
void LAPACKE_dge_trans(int matrix_layout, lapack_int m, lapack_int n, const double *in, lapack_int ldin, double *out, lapack_int ldout)