39{
42
43 LAPACK_ctptrs( &uplo, &trans, &diag, &n, &nrhs, ap, b, &ldb, &info );
44 if( info < 0 ) {
45 info = info - 1;
46 }
51
52 if( ldb < nrhs ) {
53 info = -9;
55 return info;
56 }
57
60 ldb_t *
MAX(1,nrhs) );
61 if( b_t == NULL ) {
63 goto exit_level_0;
64 }
67 (
MAX(1,n) *
MAX(2,n+1) ) / 2 );
68 if( ap_t == NULL ) {
70 goto exit_level_1;
71 }
72
75
76 LAPACK_ctptrs( &uplo, &trans, &diag, &n, &nrhs, ap_t, b_t, &ldb_t,
77 &info );
78 if( info < 0 ) {
79 info = info - 1;
80 }
81
83
85exit_level_1:
87exit_level_0:
90 }
91 } else {
92 info = -1;
94 }
95 return info;
96}
#define LAPACK_ctptrs(...)
#define lapack_complex_float
#define LAPACKE_malloc(size)
#define LAPACK_TRANSPOSE_MEMORY_ERROR
void LAPACKE_xerbla(const char *name, lapack_int info)
void LAPACKE_ctp_trans(int matrix_layout, char uplo, char diag, lapack_int n, const lapack_complex_float *in, lapack_complex_float *out)
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)