47{
50
51 LAPACK_csyrfsx( &uplo, &equed, &n, &nrhs, a, &lda, af, &ldaf, ipiv, s,
52 b, &ldb, x, &ldx, rcond, berr, &n_err_bnds,
53 err_bnds_norm, err_bnds_comp, &nparams, params, work,
54 rwork, &info );
55 if( info < 0 ) {
56 info = info - 1;
57 }
67 float* err_bnds_norm_t = NULL;
68 float* 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 = -13;
83 return info;
84 }
85 if( ldx < nrhs ) {
86 info = -15;
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 = (float*)
119 if( err_bnds_norm_t == NULL ) {
121 goto exit_level_4;
122 }
123 err_bnds_comp_t = (float*)
125 if( err_bnds_comp_t == NULL ) {
127 goto exit_level_5;
128 }
129
134
135 LAPACK_csyrfsx( &uplo, &equed, &n, &nrhs, a_t, &lda_t, af_t, &ldaf_t,
136 ipiv, s, b_t, &ldb_t, x_t, &ldx_t, rcond, berr,
137 &n_err_bnds, err_bnds_norm_t, err_bnds_comp_t, &nparams,
138 params, work, rwork, &info );
139 if( info < 0 ) {
140 info = info - 1;
141 }
142
145 nrhs, err_bnds_norm, nrhs );
147 nrhs, err_bnds_comp, nrhs );
148
150exit_level_5:
152exit_level_4:
154exit_level_3:
156exit_level_2:
158exit_level_1:
160exit_level_0:
163 }
164 } else {
165 info = -1;
167 }
168 return info;
169}
#define LAPACK_csyrfsx(...)
#define lapack_complex_float
#define LAPACKE_malloc(size)
#define LAPACK_TRANSPOSE_MEMORY_ERROR
void LAPACKE_xerbla(const char *name, lapack_int info)
void LAPACKE_csy_trans(int matrix_layout, char uplo, lapack_int n, const lapack_complex_float *in, lapack_int ldin, lapack_complex_float *out, lapack_int ldout)
void LAPACKE_sge_trans(int matrix_layout, lapack_int m, lapack_int n, const float *in, lapack_int ldin, float *out, lapack_int ldout)
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)