41{
44
45 LAPACK_cbdsqr( &uplo, &n, &ncvt, &nru, &ncc, d, e, vt, &ldvt, u, &ldu,
46 c, &ldc, work, &info );
47 if( info < 0 ) {
48 info = info - 1;
49 }
57
58 if( ldc < ncc ) {
59 info = -14;
61 return info;
62 }
63 if( ldu < n ) {
64 info = -12;
66 return info;
67 }
68 if( ldvt < ncvt ) {
69 info = -10;
71 return info;
72 }
73
74 if( ncvt != 0 ) {
77 ldvt_t *
MAX(1,ncvt) );
78 if( vt_t == NULL ) {
80 goto exit_level_0;
81 }
82 }
83 if( nru != 0 ) {
87 if( u_t == NULL ) {
89 goto exit_level_1;
90 }
91 }
92 if( ncc != 0 ) {
96 if( c_t == NULL ) {
98 goto exit_level_2;
99 }
100 }
101
102 if( ncvt != 0 ) {
104 }
105 if( nru != 0 ) {
107 }
108 if( ncc != 0 ) {
110 }
111
112 LAPACK_cbdsqr( &uplo, &n, &ncvt, &nru, &ncc, d, e, vt_t, &ldvt_t, u_t,
113 &ldu_t, c_t, &ldc_t, work, &info );
114 if( info < 0 ) {
115 info = info - 1;
116 }
117
118 if( ncvt != 0 ) {
120 ldvt );
121 }
122 if( nru != 0 ) {
124 }
125 if( ncc != 0 ) {
127 }
128
129 if( ncc != 0 ) {
131 }
132exit_level_2:
133 if( nru != 0 ) {
135 }
136exit_level_1:
137 if( ncvt != 0 ) {
139 }
140exit_level_0:
143 }
144 } else {
145 info = -1;
147 }
148 return info;
149}
#define LAPACK_cbdsqr(...)
#define lapack_complex_float
#define LAPACKE_malloc(size)
#define LAPACK_TRANSPOSE_MEMORY_ERROR
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)