48{
51
52 LAPACK_zsyrfsx( &uplo, &equed, &n, &nrhs, a, &lda, af, &ldaf, ipiv, s,
53 b, &ldb, x, &ldx, rcond, berr, &n_err_bnds,
54 err_bnds_norm, err_bnds_comp, &nparams, params, work,
55 rwork, &info );
56 if( info < 0 ) {
57 info = info - 1;
58 }
68 double* err_bnds_norm_t = NULL;
69 double* err_bnds_comp_t = NULL;
70
71 if( lda < n ) {
72 info = -7;
74 return info;
75 }
76 if( ldaf < n ) {
77 info = -9;
79 return info;
80 }
81 if( ldb < nrhs ) {
82 info = -13;
84 return info;
85 }
86 if( ldx < nrhs ) {
87 info = -15;
89 return info;
90 }
91
94 if( a_t == NULL ) {
96 goto exit_level_0;
97 }
100 if( af_t == NULL ) {
102 goto exit_level_1;
103 }
106 ldb_t *
MAX(1,nrhs) );
107 if( b_t == NULL ) {
109 goto exit_level_2;
110 }
113 ldx_t *
MAX(1,nrhs) );
114 if( x_t == NULL ) {
116 goto exit_level_3;
117 }
118 err_bnds_norm_t = (double*)
120 if( err_bnds_norm_t == NULL ) {
122 goto exit_level_4;
123 }
124 err_bnds_comp_t = (double*)
126 if( err_bnds_comp_t == NULL ) {
128 goto exit_level_5;
129 }
130
135
136 LAPACK_zsyrfsx( &uplo, &equed, &n, &nrhs, a_t, &lda_t, af_t, &ldaf_t,
137 ipiv, s, b_t, &ldb_t, x_t, &ldx_t, rcond, berr,
138 &n_err_bnds, err_bnds_norm_t, err_bnds_comp_t, &nparams,
139 params, work, rwork, &info );
140 if( info < 0 ) {
141 info = info - 1;
142 }
143
146 nrhs, err_bnds_norm, nrhs );
148 nrhs, err_bnds_comp, nrhs );
149
151exit_level_5:
153exit_level_4:
155exit_level_3:
157exit_level_2:
159exit_level_1:
161exit_level_0:
164 }
165 } else {
166 info = -1;
168 }
169 return info;
170}
#define LAPACK_zsyrfsx(...)
#define lapack_complex_double
#define LAPACKE_malloc(size)
#define LAPACK_TRANSPOSE_MEMORY_ERROR
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)