C_LAPACK: Fixes to make it compile with MSVC (#3605)
[platform/upstream/openblas.git] / lapack-netlib / SRC / clalsd.c
1 #include <math.h>
2 #include <stdlib.h>
3 #include <string.h>
4 #include <stdio.h>
5 #include <complex.h>
6 #ifdef complex
7 #undef complex
8 #endif
9 #ifdef I
10 #undef I
11 #endif
12
13 #if defined(_WIN64)
14 typedef long long BLASLONG;
15 typedef unsigned long long BLASULONG;
16 #else
17 typedef long BLASLONG;
18 typedef unsigned long BLASULONG;
19 #endif
20
21 #ifdef LAPACK_ILP64
22 typedef BLASLONG blasint;
23 #if defined(_WIN64)
24 #define blasabs(x) llabs(x)
25 #else
26 #define blasabs(x) labs(x)
27 #endif
28 #else
29 typedef int blasint;
30 #define blasabs(x) abs(x)
31 #endif
32
33 typedef blasint integer;
34
35 typedef unsigned int uinteger;
36 typedef char *address;
37 typedef short int shortint;
38 typedef float real;
39 typedef double doublereal;
40 typedef struct { real r, i; } complex;
41 typedef struct { doublereal r, i; } doublecomplex;
42 #ifdef _MSC_VER
43 static inline _Fcomplex Cf(complex *z) {_Fcomplex zz={z->r , z->i}; return zz;}
44 static inline _Dcomplex Cd(doublecomplex *z) {_Dcomplex zz={z->r , z->i};return zz;}
45 static inline _Fcomplex * _pCf(complex *z) {return (_Fcomplex*)z;}
46 static inline _Dcomplex * _pCd(doublecomplex *z) {return (_Dcomplex*)z;}
47 #else
48 static inline _Complex float Cf(complex *z) {return z->r + z->i*_Complex_I;}
49 static inline _Complex double Cd(doublecomplex *z) {return z->r + z->i*_Complex_I;}
50 static inline _Complex float * _pCf(complex *z) {return (_Complex float*)z;}
51 static inline _Complex double * _pCd(doublecomplex *z) {return (_Complex double*)z;}
52 #endif
53 #define pCf(z) (*_pCf(z))
54 #define pCd(z) (*_pCd(z))
55 typedef int logical;
56 typedef short int shortlogical;
57 typedef char logical1;
58 typedef char integer1;
59
60 #define TRUE_ (1)
61 #define FALSE_ (0)
62
63 /* Extern is for use with -E */
64 #ifndef Extern
65 #define Extern extern
66 #endif
67
68 /* I/O stuff */
69
70 typedef int flag;
71 typedef int ftnlen;
72 typedef int ftnint;
73
74 /*external read, write*/
75 typedef struct
76 {       flag cierr;
77         ftnint ciunit;
78         flag ciend;
79         char *cifmt;
80         ftnint cirec;
81 } cilist;
82
83 /*internal read, write*/
84 typedef struct
85 {       flag icierr;
86         char *iciunit;
87         flag iciend;
88         char *icifmt;
89         ftnint icirlen;
90         ftnint icirnum;
91 } icilist;
92
93 /*open*/
94 typedef struct
95 {       flag oerr;
96         ftnint ounit;
97         char *ofnm;
98         ftnlen ofnmlen;
99         char *osta;
100         char *oacc;
101         char *ofm;
102         ftnint orl;
103         char *oblnk;
104 } olist;
105
106 /*close*/
107 typedef struct
108 {       flag cerr;
109         ftnint cunit;
110         char *csta;
111 } cllist;
112
113 /*rewind, backspace, endfile*/
114 typedef struct
115 {       flag aerr;
116         ftnint aunit;
117 } alist;
118
119 /* inquire */
120 typedef struct
121 {       flag inerr;
122         ftnint inunit;
123         char *infile;
124         ftnlen infilen;
125         ftnint  *inex;  /*parameters in standard's order*/
126         ftnint  *inopen;
127         ftnint  *innum;
128         ftnint  *innamed;
129         char    *inname;
130         ftnlen  innamlen;
131         char    *inacc;
132         ftnlen  inacclen;
133         char    *inseq;
134         ftnlen  inseqlen;
135         char    *indir;
136         ftnlen  indirlen;
137         char    *infmt;
138         ftnlen  infmtlen;
139         char    *inform;
140         ftnint  informlen;
141         char    *inunf;
142         ftnlen  inunflen;
143         ftnint  *inrecl;
144         ftnint  *innrec;
145         char    *inblank;
146         ftnlen  inblanklen;
147 } inlist;
148
149 #define VOID void
150
151 union Multitype {       /* for multiple entry points */
152         integer1 g;
153         shortint h;
154         integer i;
155         /* longint j; */
156         real r;
157         doublereal d;
158         complex c;
159         doublecomplex z;
160         };
161
162 typedef union Multitype Multitype;
163
164 struct Vardesc {        /* for Namelist */
165         char *name;
166         char *addr;
167         ftnlen *dims;
168         int  type;
169         };
170 typedef struct Vardesc Vardesc;
171
172 struct Namelist {
173         char *name;
174         Vardesc **vars;
175         int nvars;
176         };
177 typedef struct Namelist Namelist;
178
179 #define abs(x) ((x) >= 0 ? (x) : -(x))
180 #define dabs(x) (fabs(x))
181 #define f2cmin(a,b) ((a) <= (b) ? (a) : (b))
182 #define f2cmax(a,b) ((a) >= (b) ? (a) : (b))
183 #define dmin(a,b) (f2cmin(a,b))
184 #define dmax(a,b) (f2cmax(a,b))
185 #define bit_test(a,b)   ((a) >> (b) & 1)
186 #define bit_clear(a,b)  ((a) & ~((uinteger)1 << (b)))
187 #define bit_set(a,b)    ((a) |  ((uinteger)1 << (b)))
188
189 #define abort_() { sig_die("Fortran abort routine called", 1); }
190 #define c_abs(z) (cabsf(Cf(z)))
191 #define c_cos(R,Z) { pCf(R)=ccos(Cf(Z)); }
192 #ifdef _MSC_VER
193 #define c_div(c, a, b) {Cf(c)._Val[0] = (Cf(a)._Val[0]/Cf(b)._Val[0]); Cf(c)._Val[1]=(Cf(a)._Val[1]/Cf(b)._Val[1]);}
194 #define z_div(c, a, b) {Cd(c)._Val[0] = (Cd(a)._Val[0]/Cd(b)._Val[0]); Cd(c)._Val[1]=(Cd(a)._Val[1]/df(b)._Val[1]);}
195 #else
196 #define c_div(c, a, b) {pCf(c) = Cf(a)/Cf(b);}
197 #define z_div(c, a, b) {pCd(c) = Cd(a)/Cd(b);}
198 #endif
199 #define c_exp(R, Z) {pCf(R) = cexpf(Cf(Z));}
200 #define c_log(R, Z) {pCf(R) = clogf(Cf(Z));}
201 #define c_sin(R, Z) {pCf(R) = csinf(Cf(Z));}
202 //#define c_sqrt(R, Z) {*(R) = csqrtf(Cf(Z));}
203 #define c_sqrt(R, Z) {pCf(R) = csqrtf(Cf(Z));}
204 #define d_abs(x) (fabs(*(x)))
205 #define d_acos(x) (acos(*(x)))
206 #define d_asin(x) (asin(*(x)))
207 #define d_atan(x) (atan(*(x)))
208 #define d_atn2(x, y) (atan2(*(x),*(y)))
209 #define d_cnjg(R, Z) { pCd(R) = conj(Cd(Z)); }
210 #define r_cnjg(R, Z) { pCf(R) = conjf(Cf(Z)); }
211 #define d_cos(x) (cos(*(x)))
212 #define d_cosh(x) (cosh(*(x)))
213 #define d_dim(__a, __b) ( *(__a) > *(__b) ? *(__a) - *(__b) : 0.0 )
214 #define d_exp(x) (exp(*(x)))
215 #define d_imag(z) (cimag(Cd(z)))
216 #define r_imag(z) (cimagf(Cf(z)))
217 #define d_int(__x) (*(__x)>0 ? floor(*(__x)) : -floor(- *(__x)))
218 #define r_int(__x) (*(__x)>0 ? floor(*(__x)) : -floor(- *(__x)))
219 #define d_lg10(x) ( 0.43429448190325182765 * log(*(x)) )
220 #define r_lg10(x) ( 0.43429448190325182765 * log(*(x)) )
221 #define d_log(x) (log(*(x)))
222 #define d_mod(x, y) (fmod(*(x), *(y)))
223 #define u_nint(__x) ((__x)>=0 ? floor((__x) + .5) : -floor(.5 - (__x)))
224 #define d_nint(x) u_nint(*(x))
225 #define u_sign(__a,__b) ((__b) >= 0 ? ((__a) >= 0 ? (__a) : -(__a)) : -((__a) >= 0 ? (__a) : -(__a)))
226 #define d_sign(a,b) u_sign(*(a),*(b))
227 #define r_sign(a,b) u_sign(*(a),*(b))
228 #define d_sin(x) (sin(*(x)))
229 #define d_sinh(x) (sinh(*(x)))
230 #define d_sqrt(x) (sqrt(*(x)))
231 #define d_tan(x) (tan(*(x)))
232 #define d_tanh(x) (tanh(*(x)))
233 #define i_abs(x) abs(*(x))
234 #define i_dnnt(x) ((integer)u_nint(*(x)))
235 #define i_len(s, n) (n)
236 #define i_nint(x) ((integer)u_nint(*(x)))
237 #define i_sign(a,b) ((integer)u_sign((integer)*(a),(integer)*(b)))
238 #define pow_dd(ap, bp) ( pow(*(ap), *(bp)))
239 #define pow_si(B,E) spow_ui(*(B),*(E))
240 #define pow_ri(B,E) spow_ui(*(B),*(E))
241 #define pow_di(B,E) dpow_ui(*(B),*(E))
242 #define pow_zi(p, a, b) {pCd(p) = zpow_ui(Cd(a), *(b));}
243 #define pow_ci(p, a, b) {pCf(p) = cpow_ui(Cf(a), *(b));}
244 #define pow_zz(R,A,B) {pCd(R) = cpow(Cd(A),*(B));}
245 #define s_cat(lpp, rpp, rnp, np, llp) {         ftnlen i, nc, ll; char *f__rp, *lp;     ll = (llp); lp = (lpp);         for(i=0; i < (int)*(np); ++i) {                 nc = ll;                if((rnp)[i] < nc) nc = (rnp)[i];                ll -= nc;               f__rp = (rpp)[i];               while(--nc >= 0) *lp++ = *(f__rp)++;         }  while(--ll >= 0) *lp++ = ' '; }
246 #define s_cmp(a,b,c,d) ((integer)strncmp((a),(b),f2cmin((c),(d))))
247 #define s_copy(A,B,C,D) { int __i,__m; for (__i=0, __m=f2cmin((C),(D)); __i<__m && (B)[__i] != 0; ++__i) (A)[__i] = (B)[__i]; }
248 #define sig_die(s, kill) { exit(1); }
249 #define s_stop(s, n) {exit(0);}
250 static char junk[] = "\n@(#)LIBF77 VERSION 19990503\n";
251 #define z_abs(z) (cabs(Cd(z)))
252 #define z_exp(R, Z) {pCd(R) = cexp(Cd(Z));}
253 #define z_sqrt(R, Z) {pCd(R) = csqrt(Cd(Z));}
254 #define myexit_() break;
255 #define mycycle() continue;
256 #define myceiling(w) {ceil(w)}
257 #define myhuge(w) {HUGE_VAL}
258 //#define mymaxloc_(w,s,e,n) {if (sizeof(*(w)) == sizeof(double)) dmaxloc_((w),*(s),*(e),n); else dmaxloc_((w),*(s),*(e),n);}
259 #define mymaxloc(w,s,e,n) {dmaxloc_(w,*(s),*(e),n)}
260
261 /* procedure parameter types for -A and -C++ */
262
263 #define F2C_proc_par_types 1
264 #ifdef __cplusplus
265 typedef logical (*L_fp)(...);
266 #else
267 typedef logical (*L_fp)();
268 #endif
269
270 static float spow_ui(float x, integer n) {
271         float pow=1.0; unsigned long int u;
272         if(n != 0) {
273                 if(n < 0) n = -n, x = 1/x;
274                 for(u = n; ; ) {
275                         if(u & 01) pow *= x;
276                         if(u >>= 1) x *= x;
277                         else break;
278                 }
279         }
280         return pow;
281 }
282 static double dpow_ui(double x, integer n) {
283         double pow=1.0; unsigned long int u;
284         if(n != 0) {
285                 if(n < 0) n = -n, x = 1/x;
286                 for(u = n; ; ) {
287                         if(u & 01) pow *= x;
288                         if(u >>= 1) x *= x;
289                         else break;
290                 }
291         }
292         return pow;
293 }
294 #ifdef _MSC_VER
295 static _Fcomplex cpow_ui(complex x, integer n) {
296         complex pow={1.0,0.0}; unsigned long int u;
297                 if(n != 0) {
298                 if(n < 0) n = -n, x.r = 1/x.r, x.i=1/x.i;
299                 for(u = n; ; ) {
300                         if(u & 01) pow.r *= x.r, pow.i *= x.i;
301                         if(u >>= 1) x.r *= x.r, x.i *= x.i;
302                         else break;
303                 }
304         }
305         _Fcomplex p={pow.r, pow.i};
306         return p;
307 }
308 #else
309 static _Complex float cpow_ui(_Complex float x, integer n) {
310         _Complex float pow=1.0; unsigned long int u;
311         if(n != 0) {
312                 if(n < 0) n = -n, x = 1/x;
313                 for(u = n; ; ) {
314                         if(u & 01) pow *= x;
315                         if(u >>= 1) x *= x;
316                         else break;
317                 }
318         }
319         return pow;
320 }
321 #endif
322 #ifdef _MSC_VER
323 static _Dcomplex zpow_ui(_Dcomplex x, integer n) {
324         _Dcomplex pow={1.0,0.0}; unsigned long int u;
325         if(n != 0) {
326                 if(n < 0) n = -n, x._Val[0] = 1/x._Val[0], x._Val[1] =1/x._Val[1];
327                 for(u = n; ; ) {
328                         if(u & 01) pow._Val[0] *= x._Val[0], pow._Val[1] *= x._Val[1];
329                         if(u >>= 1) x._Val[0] *= x._Val[0], x._Val[1] *= x._Val[1];
330                         else break;
331                 }
332         }
333         _Dcomplex p = {pow._Val[0], pow._Val[1]};
334         return p;
335 }
336 #else
337 static _Complex double zpow_ui(_Complex double x, integer n) {
338         _Complex double pow=1.0; unsigned long int u;
339         if(n != 0) {
340                 if(n < 0) n = -n, x = 1/x;
341                 for(u = n; ; ) {
342                         if(u & 01) pow *= x;
343                         if(u >>= 1) x *= x;
344                         else break;
345                 }
346         }
347         return pow;
348 }
349 #endif
350 static integer pow_ii(integer x, integer n) {
351         integer pow; unsigned long int u;
352         if (n <= 0) {
353                 if (n == 0 || x == 1) pow = 1;
354                 else if (x != -1) pow = x == 0 ? 1/x : 0;
355                 else n = -n;
356         }
357         if ((n > 0) || !(n == 0 || x == 1 || x != -1)) {
358                 u = n;
359                 for(pow = 1; ; ) {
360                         if(u & 01) pow *= x;
361                         if(u >>= 1) x *= x;
362                         else break;
363                 }
364         }
365         return pow;
366 }
367 static integer dmaxloc_(double *w, integer s, integer e, integer *n)
368 {
369         double m; integer i, mi;
370         for(m=w[s-1], mi=s, i=s+1; i<=e; i++)
371                 if (w[i-1]>m) mi=i ,m=w[i-1];
372         return mi-s+1;
373 }
374 static integer smaxloc_(float *w, integer s, integer e, integer *n)
375 {
376         float m; integer i, mi;
377         for(m=w[s-1], mi=s, i=s+1; i<=e; i++)
378                 if (w[i-1]>m) mi=i ,m=w[i-1];
379         return mi-s+1;
380 }
381 static inline void cdotc_(complex *z, integer *n_, complex *x, integer *incx_, complex *y, integer *incy_) {
382         integer n = *n_, incx = *incx_, incy = *incy_, i;
383 #ifdef _MSC_VER
384         _Fcomplex zdotc = {0.0, 0.0};
385         if (incx == 1 && incy == 1) {
386                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
387                         zdotc._Val[0] += conjf(Cf(&x[i]))._Val[0] * Cf(&y[i])._Val[0];
388                         zdotc._Val[1] += conjf(Cf(&x[i]))._Val[1] * Cf(&y[i])._Val[1];
389                 }
390         } else {
391                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
392                         zdotc._Val[0] += conjf(Cf(&x[i*incx]))._Val[0] * Cf(&y[i*incy])._Val[0];
393                         zdotc._Val[1] += conjf(Cf(&x[i*incx]))._Val[1] * Cf(&y[i*incy])._Val[1];
394                 }
395         }
396         pCf(z) = zdotc;
397 }
398 #else
399         _Complex float zdotc = 0.0;
400         if (incx == 1 && incy == 1) {
401                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
402                         zdotc += conjf(Cf(&x[i])) * Cf(&y[i]);
403                 }
404         } else {
405                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
406                         zdotc += conjf(Cf(&x[i*incx])) * Cf(&y[i*incy]);
407                 }
408         }
409         pCf(z) = zdotc;
410 }
411 #endif
412 static inline void zdotc_(doublecomplex *z, integer *n_, doublecomplex *x, integer *incx_, doublecomplex *y, integer *incy_) {
413         integer n = *n_, incx = *incx_, incy = *incy_, i;
414 #ifdef _MSC_VER
415         _Dcomplex zdotc = {0.0, 0.0};
416         if (incx == 1 && incy == 1) {
417                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
418                         zdotc._Val[0] += conj(Cd(&x[i]))._Val[0] * Cd(&y[i])._Val[0];
419                         zdotc._Val[1] += conj(Cd(&x[i]))._Val[1] * Cd(&y[i])._Val[1];
420                 }
421         } else {
422                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
423                         zdotc._Val[0] += conj(Cd(&x[i*incx]))._Val[0] * Cd(&y[i*incy])._Val[0];
424                         zdotc._Val[1] += conj(Cd(&x[i*incx]))._Val[1] * Cd(&y[i*incy])._Val[1];
425                 }
426         }
427         pCd(z) = zdotc;
428 }
429 #else
430         _Complex double zdotc = 0.0;
431         if (incx == 1 && incy == 1) {
432                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
433                         zdotc += conj(Cd(&x[i])) * Cd(&y[i]);
434                 }
435         } else {
436                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
437                         zdotc += conj(Cd(&x[i*incx])) * Cd(&y[i*incy]);
438                 }
439         }
440         pCd(z) = zdotc;
441 }
442 #endif  
443 static inline void cdotu_(complex *z, integer *n_, complex *x, integer *incx_, complex *y, integer *incy_) {
444         integer n = *n_, incx = *incx_, incy = *incy_, i;
445 #ifdef _MSC_VER
446         _Fcomplex zdotc = {0.0, 0.0};
447         if (incx == 1 && incy == 1) {
448                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
449                         zdotc._Val[0] += Cf(&x[i])._Val[0] * Cf(&y[i])._Val[0];
450                         zdotc._Val[1] += Cf(&x[i])._Val[1] * Cf(&y[i])._Val[1];
451                 }
452         } else {
453                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
454                         zdotc._Val[0] += Cf(&x[i*incx])._Val[0] * Cf(&y[i*incy])._Val[0];
455                         zdotc._Val[1] += Cf(&x[i*incx])._Val[1] * Cf(&y[i*incy])._Val[1];
456                 }
457         }
458         pCf(z) = zdotc;
459 }
460 #else
461         _Complex float zdotc = 0.0;
462         if (incx == 1 && incy == 1) {
463                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
464                         zdotc += Cf(&x[i]) * Cf(&y[i]);
465                 }
466         } else {
467                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
468                         zdotc += Cf(&x[i*incx]) * Cf(&y[i*incy]);
469                 }
470         }
471         pCf(z) = zdotc;
472 }
473 #endif
474 static inline void zdotu_(doublecomplex *z, integer *n_, doublecomplex *x, integer *incx_, doublecomplex *y, integer *incy_) {
475         integer n = *n_, incx = *incx_, incy = *incy_, i;
476 #ifdef _MSC_VER
477         _Dcomplex zdotc = {0.0, 0.0};
478         if (incx == 1 && incy == 1) {
479                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
480                         zdotc._Val[0] += Cd(&x[i])._Val[0] * Cd(&y[i])._Val[0];
481                         zdotc._Val[1] += Cd(&x[i])._Val[1] * Cd(&y[i])._Val[1];
482                 }
483         } else {
484                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
485                         zdotc._Val[0] += Cd(&x[i*incx])._Val[0] * Cd(&y[i*incy])._Val[0];
486                         zdotc._Val[1] += Cd(&x[i*incx])._Val[1] * Cd(&y[i*incy])._Val[1];
487                 }
488         }
489         pCd(z) = zdotc;
490 }
491 #else
492         _Complex double zdotc = 0.0;
493         if (incx == 1 && incy == 1) {
494                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
495                         zdotc += Cd(&x[i]) * Cd(&y[i]);
496                 }
497         } else {
498                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
499                         zdotc += Cd(&x[i*incx]) * Cd(&y[i*incy]);
500                 }
501         }
502         pCd(z) = zdotc;
503 }
504 #endif
505 /*  -- translated by f2c (version 20000121).
506    You must link the resulting object file with the libraries:
507         -lf2c -lm   (in that order)
508 */
509
510
511
512
513 /* Table of constant values */
514
515 static complex c_b1 = {0.f,0.f};
516 static integer c__1 = 1;
517 static integer c__0 = 0;
518 static real c_b10 = 1.f;
519 static real c_b35 = 0.f;
520
521 /* > \brief \b CLALSD uses the singular value decomposition of A to solve the least squares problem. */
522
523 /*  =========== DOCUMENTATION =========== */
524
525 /* Online html documentation available at */
526 /*            http://www.netlib.org/lapack/explore-html/ */
527
528 /* > \htmlonly */
529 /* > Download CLALSD + dependencies */
530 /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/clalsd.
531 f"> */
532 /* > [TGZ]</a> */
533 /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/clalsd.
534 f"> */
535 /* > [ZIP]</a> */
536 /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/clalsd.
537 f"> */
538 /* > [TXT]</a> */
539 /* > \endhtmlonly */
540
541 /*  Definition: */
542 /*  =========== */
543
544 /*       SUBROUTINE CLALSD( UPLO, SMLSIZ, N, NRHS, D, E, B, LDB, RCOND, */
545 /*                          RANK, WORK, RWORK, IWORK, INFO ) */
546
547 /*       CHARACTER          UPLO */
548 /*       INTEGER            INFO, LDB, N, NRHS, RANK, SMLSIZ */
549 /*       REAL               RCOND */
550 /*       INTEGER            IWORK( * ) */
551 /*       REAL               D( * ), E( * ), RWORK( * ) */
552 /*       COMPLEX            B( LDB, * ), WORK( * ) */
553
554
555 /* > \par Purpose: */
556 /*  ============= */
557 /* > */
558 /* > \verbatim */
559 /* > */
560 /* > CLALSD uses the singular value decomposition of A to solve the least */
561 /* > squares problem of finding X to minimize the Euclidean norm of each */
562 /* > column of A*X-B, where A is N-by-N upper bidiagonal, and X and B */
563 /* > are N-by-NRHS. The solution X overwrites B. */
564 /* > */
565 /* > The singular values of A smaller than RCOND times the largest */
566 /* > singular value are treated as zero in solving the least squares */
567 /* > problem; in this case a minimum norm solution is returned. */
568 /* > The actual singular values are returned in D in ascending order. */
569 /* > */
570 /* > This code makes very mild assumptions about floating point */
571 /* > arithmetic. It will work on machines with a guard digit in */
572 /* > add/subtract, or on those binary machines without guard digits */
573 /* > which subtract like the Cray XMP, Cray YMP, Cray C 90, or Cray 2. */
574 /* > It could conceivably fail on hexadecimal or decimal machines */
575 /* > without guard digits, but we know of none. */
576 /* > \endverbatim */
577
578 /*  Arguments: */
579 /*  ========== */
580
581 /* > \param[in] UPLO */
582 /* > \verbatim */
583 /* >          UPLO is CHARACTER*1 */
584 /* >         = 'U': D and E define an upper bidiagonal matrix. */
585 /* >         = 'L': D and E define a  lower bidiagonal matrix. */
586 /* > \endverbatim */
587 /* > */
588 /* > \param[in] SMLSIZ */
589 /* > \verbatim */
590 /* >          SMLSIZ is INTEGER */
591 /* >         The maximum size of the subproblems at the bottom of the */
592 /* >         computation tree. */
593 /* > \endverbatim */
594 /* > */
595 /* > \param[in] N */
596 /* > \verbatim */
597 /* >          N is INTEGER */
598 /* >         The dimension of the  bidiagonal matrix.  N >= 0. */
599 /* > \endverbatim */
600 /* > */
601 /* > \param[in] NRHS */
602 /* > \verbatim */
603 /* >          NRHS is INTEGER */
604 /* >         The number of columns of B. NRHS must be at least 1. */
605 /* > \endverbatim */
606 /* > */
607 /* > \param[in,out] D */
608 /* > \verbatim */
609 /* >          D is REAL array, dimension (N) */
610 /* >         On entry D contains the main diagonal of the bidiagonal */
611 /* >         matrix. On exit, if INFO = 0, D contains its singular values. */
612 /* > \endverbatim */
613 /* > */
614 /* > \param[in,out] E */
615 /* > \verbatim */
616 /* >          E is REAL array, dimension (N-1) */
617 /* >         Contains the super-diagonal entries of the bidiagonal matrix. */
618 /* >         On exit, E has been destroyed. */
619 /* > \endverbatim */
620 /* > */
621 /* > \param[in,out] B */
622 /* > \verbatim */
623 /* >          B is COMPLEX array, dimension (LDB,NRHS) */
624 /* >         On input, B contains the right hand sides of the least */
625 /* >         squares problem. On output, B contains the solution X. */
626 /* > \endverbatim */
627 /* > */
628 /* > \param[in] LDB */
629 /* > \verbatim */
630 /* >          LDB is INTEGER */
631 /* >         The leading dimension of B in the calling subprogram. */
632 /* >         LDB must be at least f2cmax(1,N). */
633 /* > \endverbatim */
634 /* > */
635 /* > \param[in] RCOND */
636 /* > \verbatim */
637 /* >          RCOND is REAL */
638 /* >         The singular values of A less than or equal to RCOND times */
639 /* >         the largest singular value are treated as zero in solving */
640 /* >         the least squares problem. If RCOND is negative, */
641 /* >         machine precision is used instead. */
642 /* >         For example, if diag(S)*X=B were the least squares problem, */
643 /* >         where diag(S) is a diagonal matrix of singular values, the */
644 /* >         solution would be X(i) = B(i) / S(i) if S(i) is greater than */
645 /* >         RCOND*f2cmax(S), and X(i) = 0 if S(i) is less than or equal to */
646 /* >         RCOND*f2cmax(S). */
647 /* > \endverbatim */
648 /* > */
649 /* > \param[out] RANK */
650 /* > \verbatim */
651 /* >          RANK is INTEGER */
652 /* >         The number of singular values of A greater than RCOND times */
653 /* >         the largest singular value. */
654 /* > \endverbatim */
655 /* > */
656 /* > \param[out] WORK */
657 /* > \verbatim */
658 /* >          WORK is COMPLEX array, dimension (N * NRHS). */
659 /* > \endverbatim */
660 /* > */
661 /* > \param[out] RWORK */
662 /* > \verbatim */
663 /* >          RWORK is REAL array, dimension at least */
664 /* >         (9*N + 2*N*SMLSIZ + 8*N*NLVL + 3*SMLSIZ*NRHS + */
665 /* >         MAX( (SMLSIZ+1)**2, N*(1+NRHS) + 2*NRHS ), */
666 /* >         where */
667 /* >         NLVL = MAX( 0, INT( LOG_2( MIN( M,N )/(SMLSIZ+1) ) ) + 1 ) */
668 /* > \endverbatim */
669 /* > */
670 /* > \param[out] IWORK */
671 /* > \verbatim */
672 /* >          IWORK is INTEGER array, dimension (3*N*NLVL + 11*N). */
673 /* > \endverbatim */
674 /* > */
675 /* > \param[out] INFO */
676 /* > \verbatim */
677 /* >          INFO is INTEGER */
678 /* >         = 0:  successful exit. */
679 /* >         < 0:  if INFO = -i, the i-th argument had an illegal value. */
680 /* >         > 0:  The algorithm failed to compute a singular value while */
681 /* >               working on the submatrix lying in rows and columns */
682 /* >               INFO/(N+1) through MOD(INFO,N+1). */
683 /* > \endverbatim */
684
685 /*  Authors: */
686 /*  ======== */
687
688 /* > \author Univ. of Tennessee */
689 /* > \author Univ. of California Berkeley */
690 /* > \author Univ. of Colorado Denver */
691 /* > \author NAG Ltd. */
692
693 /* > \date December 2016 */
694
695 /* > \ingroup complexOTHERcomputational */
696
697 /* > \par Contributors: */
698 /*  ================== */
699 /* > */
700 /* >     Ming Gu and Ren-Cang Li, Computer Science Division, University of */
701 /* >       California at Berkeley, USA \n */
702 /* >     Osni Marques, LBNL/NERSC, USA \n */
703
704 /*  ===================================================================== */
705 /* Subroutine */ int clalsd_(char *uplo, integer *smlsiz, integer *n, integer 
706         *nrhs, real *d__, real *e, complex *b, integer *ldb, real *rcond, 
707         integer *rank, complex *work, real *rwork, integer *iwork, integer *
708         info)
709 {
710     /* System generated locals */
711     integer b_dim1, b_offset, i__1, i__2, i__3, i__4, i__5, i__6;
712     real r__1;
713     complex q__1;
714
715     /* Local variables */
716     integer difl, difr;
717     real rcnd;
718     integer jcol, irwb, perm, nsub, nlvl, sqre, bxst, jrow, irwu, c__, i__, j,
719              k;
720     real r__;
721     integer s, u, jimag, z__, jreal;
722     extern /* Subroutine */ int sgemm_(char *, char *, integer *, integer *, 
723             integer *, real *, real *, integer *, real *, integer *, real *, 
724             real *, integer *);
725     integer irwib;
726     extern /* Subroutine */ int ccopy_(integer *, complex *, integer *, 
727             complex *, integer *);
728     integer poles, sizei, irwrb, nsize;
729     extern /* Subroutine */ int csrot_(integer *, complex *, integer *, 
730             complex *, integer *, real *, real *);
731     integer irwvt, icmpq1, icmpq2;
732     real cs;
733     integer bx;
734     extern /* Subroutine */ int clalsa_(integer *, integer *, integer *, 
735             integer *, complex *, integer *, complex *, integer *, real *, 
736             integer *, real *, integer *, real *, real *, real *, real *, 
737             integer *, integer *, integer *, integer *, real *, real *, real *
738             , real *, integer *, integer *);
739     real sn;
740     extern /* Subroutine */ int clascl_(char *, integer *, integer *, real *, 
741             real *, integer *, integer *, complex *, integer *, integer *);
742     integer st;
743     extern real slamch_(char *);
744     extern /* Subroutine */ int slasda_(integer *, integer *, integer *, 
745             integer *, real *, real *, real *, integer *, real *, integer *, 
746             real *, real *, real *, real *, integer *, integer *, integer *, 
747             integer *, real *, real *, real *, real *, integer *, integer *);
748     integer vt;
749     extern /* Subroutine */ int clacpy_(char *, integer *, integer *, complex 
750             *, integer *, complex *, integer *), claset_(char *, 
751             integer *, integer *, complex *, complex *, complex *, integer *), xerbla_(char *, integer *, ftnlen), slascl_(char *, 
752             integer *, integer *, real *, real *, integer *, integer *, real *
753             , integer *, integer *);
754     extern integer isamax_(integer *, real *, integer *);
755     integer givcol;
756     extern /* Subroutine */ int slasdq_(char *, integer *, integer *, integer 
757             *, integer *, integer *, real *, real *, real *, integer *, real *
758             , integer *, real *, integer *, real *, integer *), 
759             slaset_(char *, integer *, integer *, real *, real *, real *, 
760             integer *), slartg_(real *, real *, real *, real *, real *
761             );
762     real orgnrm;
763     integer givnum;
764     extern real slanst_(char *, integer *, real *, real *);
765     extern /* Subroutine */ int slasrt_(char *, integer *, real *, integer *);
766     integer givptr, nm1, nrwork, irwwrk, smlszp, st1;
767     real eps;
768     integer iwk;
769     real tol;
770
771
772 /*  -- LAPACK computational routine (version 3.7.0) -- */
773 /*  -- LAPACK is a software package provided by Univ. of Tennessee,    -- */
774 /*  -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- */
775 /*     December 2016 */
776
777
778 /*  ===================================================================== */
779
780
781 /*     Test the input parameters. */
782
783     /* Parameter adjustments */
784     --d__;
785     --e;
786     b_dim1 = *ldb;
787     b_offset = 1 + b_dim1 * 1;
788     b -= b_offset;
789     --work;
790     --rwork;
791     --iwork;
792
793     /* Function Body */
794     *info = 0;
795
796     if (*n < 0) {
797         *info = -3;
798     } else if (*nrhs < 1) {
799         *info = -4;
800     } else if (*ldb < 1 || *ldb < *n) {
801         *info = -8;
802     }
803     if (*info != 0) {
804         i__1 = -(*info);
805         xerbla_("CLALSD", &i__1, (ftnlen)6);
806         return 0;
807     }
808
809     eps = slamch_("Epsilon");
810
811 /*     Set up the tolerance. */
812
813     if (*rcond <= 0.f || *rcond >= 1.f) {
814         rcnd = eps;
815     } else {
816         rcnd = *rcond;
817     }
818
819     *rank = 0;
820
821 /*     Quick return if possible. */
822
823     if (*n == 0) {
824         return 0;
825     } else if (*n == 1) {
826         if (d__[1] == 0.f) {
827             claset_("A", &c__1, nrhs, &c_b1, &c_b1, &b[b_offset], ldb);
828         } else {
829             *rank = 1;
830             clascl_("G", &c__0, &c__0, &d__[1], &c_b10, &c__1, nrhs, &b[
831                     b_offset], ldb, info);
832             d__[1] = abs(d__[1]);
833         }
834         return 0;
835     }
836
837 /*     Rotate the matrix if it is lower bidiagonal. */
838
839     if (*(unsigned char *)uplo == 'L') {
840         i__1 = *n - 1;
841         for (i__ = 1; i__ <= i__1; ++i__) {
842             slartg_(&d__[i__], &e[i__], &cs, &sn, &r__);
843             d__[i__] = r__;
844             e[i__] = sn * d__[i__ + 1];
845             d__[i__ + 1] = cs * d__[i__ + 1];
846             if (*nrhs == 1) {
847                 csrot_(&c__1, &b[i__ + b_dim1], &c__1, &b[i__ + 1 + b_dim1], &
848                         c__1, &cs, &sn);
849             } else {
850                 rwork[(i__ << 1) - 1] = cs;
851                 rwork[i__ * 2] = sn;
852             }
853 /* L10: */
854         }
855         if (*nrhs > 1) {
856             i__1 = *nrhs;
857             for (i__ = 1; i__ <= i__1; ++i__) {
858                 i__2 = *n - 1;
859                 for (j = 1; j <= i__2; ++j) {
860                     cs = rwork[(j << 1) - 1];
861                     sn = rwork[j * 2];
862                     csrot_(&c__1, &b[j + i__ * b_dim1], &c__1, &b[j + 1 + i__ 
863                             * b_dim1], &c__1, &cs, &sn);
864 /* L20: */
865                 }
866 /* L30: */
867             }
868         }
869     }
870
871 /*     Scale. */
872
873     nm1 = *n - 1;
874     orgnrm = slanst_("M", n, &d__[1], &e[1]);
875     if (orgnrm == 0.f) {
876         claset_("A", n, nrhs, &c_b1, &c_b1, &b[b_offset], ldb);
877         return 0;
878     }
879
880     slascl_("G", &c__0, &c__0, &orgnrm, &c_b10, n, &c__1, &d__[1], n, info);
881     slascl_("G", &c__0, &c__0, &orgnrm, &c_b10, &nm1, &c__1, &e[1], &nm1, 
882             info);
883
884 /*     If N is smaller than the minimum divide size SMLSIZ, then solve */
885 /*     the problem with another solver. */
886
887     if (*n <= *smlsiz) {
888         irwu = 1;
889         irwvt = irwu + *n * *n;
890         irwwrk = irwvt + *n * *n;
891         irwrb = irwwrk;
892         irwib = irwrb + *n * *nrhs;
893         irwb = irwib + *n * *nrhs;
894         slaset_("A", n, n, &c_b35, &c_b10, &rwork[irwu], n);
895         slaset_("A", n, n, &c_b35, &c_b10, &rwork[irwvt], n);
896         slasdq_("U", &c__0, n, n, n, &c__0, &d__[1], &e[1], &rwork[irwvt], n, 
897                 &rwork[irwu], n, &rwork[irwwrk], &c__1, &rwork[irwwrk], info);
898         if (*info != 0) {
899             return 0;
900         }
901
902 /*        In the real version, B is passed to SLASDQ and multiplied */
903 /*        internally by Q**H. Here B is complex and that product is */
904 /*        computed below in two steps (real and imaginary parts). */
905
906         j = irwb - 1;
907         i__1 = *nrhs;
908         for (jcol = 1; jcol <= i__1; ++jcol) {
909             i__2 = *n;
910             for (jrow = 1; jrow <= i__2; ++jrow) {
911                 ++j;
912                 i__3 = jrow + jcol * b_dim1;
913                 rwork[j] = b[i__3].r;
914 /* L40: */
915             }
916 /* L50: */
917         }
918         sgemm_("T", "N", n, nrhs, n, &c_b10, &rwork[irwu], n, &rwork[irwb], n,
919                  &c_b35, &rwork[irwrb], n);
920         j = irwb - 1;
921         i__1 = *nrhs;
922         for (jcol = 1; jcol <= i__1; ++jcol) {
923             i__2 = *n;
924             for (jrow = 1; jrow <= i__2; ++jrow) {
925                 ++j;
926                 rwork[j] = r_imag(&b[jrow + jcol * b_dim1]);
927 /* L60: */
928             }
929 /* L70: */
930         }
931         sgemm_("T", "N", n, nrhs, n, &c_b10, &rwork[irwu], n, &rwork[irwb], n,
932                  &c_b35, &rwork[irwib], n);
933         jreal = irwrb - 1;
934         jimag = irwib - 1;
935         i__1 = *nrhs;
936         for (jcol = 1; jcol <= i__1; ++jcol) {
937             i__2 = *n;
938             for (jrow = 1; jrow <= i__2; ++jrow) {
939                 ++jreal;
940                 ++jimag;
941                 i__3 = jrow + jcol * b_dim1;
942                 i__4 = jreal;
943                 i__5 = jimag;
944                 q__1.r = rwork[i__4], q__1.i = rwork[i__5];
945                 b[i__3].r = q__1.r, b[i__3].i = q__1.i;
946 /* L80: */
947             }
948 /* L90: */
949         }
950
951         tol = rcnd * (r__1 = d__[isamax_(n, &d__[1], &c__1)], abs(r__1));
952         i__1 = *n;
953         for (i__ = 1; i__ <= i__1; ++i__) {
954             if (d__[i__] <= tol) {
955                 claset_("A", &c__1, nrhs, &c_b1, &c_b1, &b[i__ + b_dim1], ldb);
956             } else {
957                 clascl_("G", &c__0, &c__0, &d__[i__], &c_b10, &c__1, nrhs, &b[
958                         i__ + b_dim1], ldb, info);
959                 ++(*rank);
960             }
961 /* L100: */
962         }
963
964 /*        Since B is complex, the following call to SGEMM is performed */
965 /*        in two steps (real and imaginary parts). That is for V * B */
966 /*        (in the real version of the code V**H is stored in WORK). */
967
968 /*        CALL SGEMM( 'T', 'N', N, NRHS, N, ONE, WORK, N, B, LDB, ZERO, */
969 /*    $               WORK( NWORK ), N ) */
970
971         j = irwb - 1;
972         i__1 = *nrhs;
973         for (jcol = 1; jcol <= i__1; ++jcol) {
974             i__2 = *n;
975             for (jrow = 1; jrow <= i__2; ++jrow) {
976                 ++j;
977                 i__3 = jrow + jcol * b_dim1;
978                 rwork[j] = b[i__3].r;
979 /* L110: */
980             }
981 /* L120: */
982         }
983         sgemm_("T", "N", n, nrhs, n, &c_b10, &rwork[irwvt], n, &rwork[irwb], 
984                 n, &c_b35, &rwork[irwrb], n);
985         j = irwb - 1;
986         i__1 = *nrhs;
987         for (jcol = 1; jcol <= i__1; ++jcol) {
988             i__2 = *n;
989             for (jrow = 1; jrow <= i__2; ++jrow) {
990                 ++j;
991                 rwork[j] = r_imag(&b[jrow + jcol * b_dim1]);
992 /* L130: */
993             }
994 /* L140: */
995         }
996         sgemm_("T", "N", n, nrhs, n, &c_b10, &rwork[irwvt], n, &rwork[irwb], 
997                 n, &c_b35, &rwork[irwib], n);
998         jreal = irwrb - 1;
999         jimag = irwib - 1;
1000         i__1 = *nrhs;
1001         for (jcol = 1; jcol <= i__1; ++jcol) {
1002             i__2 = *n;
1003             for (jrow = 1; jrow <= i__2; ++jrow) {
1004                 ++jreal;
1005                 ++jimag;
1006                 i__3 = jrow + jcol * b_dim1;
1007                 i__4 = jreal;
1008                 i__5 = jimag;
1009                 q__1.r = rwork[i__4], q__1.i = rwork[i__5];
1010                 b[i__3].r = q__1.r, b[i__3].i = q__1.i;
1011 /* L150: */
1012             }
1013 /* L160: */
1014         }
1015
1016 /*        Unscale. */
1017
1018         slascl_("G", &c__0, &c__0, &c_b10, &orgnrm, n, &c__1, &d__[1], n, 
1019                 info);
1020         slasrt_("D", n, &d__[1], info);
1021         clascl_("G", &c__0, &c__0, &orgnrm, &c_b10, n, nrhs, &b[b_offset], 
1022                 ldb, info);
1023
1024         return 0;
1025     }
1026
1027 /*     Book-keeping and setting up some constants. */
1028
1029     nlvl = (integer) (log((real) (*n) / (real) (*smlsiz + 1)) / log(2.f)) + 1;
1030
1031     smlszp = *smlsiz + 1;
1032
1033     u = 1;
1034     vt = *smlsiz * *n + 1;
1035     difl = vt + smlszp * *n;
1036     difr = difl + nlvl * *n;
1037     z__ = difr + (nlvl * *n << 1);
1038     c__ = z__ + nlvl * *n;
1039     s = c__ + *n;
1040     poles = s + *n;
1041     givnum = poles + (nlvl << 1) * *n;
1042     nrwork = givnum + (nlvl << 1) * *n;
1043     bx = 1;
1044
1045     irwrb = nrwork;
1046     irwib = irwrb + *smlsiz * *nrhs;
1047     irwb = irwib + *smlsiz * *nrhs;
1048
1049     sizei = *n + 1;
1050     k = sizei + *n;
1051     givptr = k + *n;
1052     perm = givptr + *n;
1053     givcol = perm + nlvl * *n;
1054     iwk = givcol + (nlvl * *n << 1);
1055
1056     st = 1;
1057     sqre = 0;
1058     icmpq1 = 1;
1059     icmpq2 = 0;
1060     nsub = 0;
1061
1062     i__1 = *n;
1063     for (i__ = 1; i__ <= i__1; ++i__) {
1064         if ((r__1 = d__[i__], abs(r__1)) < eps) {
1065             d__[i__] = r_sign(&eps, &d__[i__]);
1066         }
1067 /* L170: */
1068     }
1069
1070     i__1 = nm1;
1071     for (i__ = 1; i__ <= i__1; ++i__) {
1072         if ((r__1 = e[i__], abs(r__1)) < eps || i__ == nm1) {
1073             ++nsub;
1074             iwork[nsub] = st;
1075
1076 /*           Subproblem found. First determine its size and then */
1077 /*           apply divide and conquer on it. */
1078
1079             if (i__ < nm1) {
1080
1081 /*              A subproblem with E(I) small for I < NM1. */
1082
1083                 nsize = i__ - st + 1;
1084                 iwork[sizei + nsub - 1] = nsize;
1085             } else if ((r__1 = e[i__], abs(r__1)) >= eps) {
1086
1087 /*              A subproblem with E(NM1) not too small but I = NM1. */
1088
1089                 nsize = *n - st + 1;
1090                 iwork[sizei + nsub - 1] = nsize;
1091             } else {
1092
1093 /*              A subproblem with E(NM1) small. This implies an */
1094 /*              1-by-1 subproblem at D(N), which is not solved */
1095 /*              explicitly. */
1096
1097                 nsize = i__ - st + 1;
1098                 iwork[sizei + nsub - 1] = nsize;
1099                 ++nsub;
1100                 iwork[nsub] = *n;
1101                 iwork[sizei + nsub - 1] = 1;
1102                 ccopy_(nrhs, &b[*n + b_dim1], ldb, &work[bx + nm1], n);
1103             }
1104             st1 = st - 1;
1105             if (nsize == 1) {
1106
1107 /*              This is a 1-by-1 subproblem and is not solved */
1108 /*              explicitly. */
1109
1110                 ccopy_(nrhs, &b[st + b_dim1], ldb, &work[bx + st1], n);
1111             } else if (nsize <= *smlsiz) {
1112
1113 /*              This is a small subproblem and is solved by SLASDQ. */
1114
1115                 slaset_("A", &nsize, &nsize, &c_b35, &c_b10, &rwork[vt + st1],
1116                          n);
1117                 slaset_("A", &nsize, &nsize, &c_b35, &c_b10, &rwork[u + st1], 
1118                         n);
1119                 slasdq_("U", &c__0, &nsize, &nsize, &nsize, &c__0, &d__[st], &
1120                         e[st], &rwork[vt + st1], n, &rwork[u + st1], n, &
1121                         rwork[nrwork], &c__1, &rwork[nrwork], info)
1122                         ;
1123                 if (*info != 0) {
1124                     return 0;
1125                 }
1126
1127 /*              In the real version, B is passed to SLASDQ and multiplied */
1128 /*              internally by Q**H. Here B is complex and that product is */
1129 /*              computed below in two steps (real and imaginary parts). */
1130
1131                 j = irwb - 1;
1132                 i__2 = *nrhs;
1133                 for (jcol = 1; jcol <= i__2; ++jcol) {
1134                     i__3 = st + nsize - 1;
1135                     for (jrow = st; jrow <= i__3; ++jrow) {
1136                         ++j;
1137                         i__4 = jrow + jcol * b_dim1;
1138                         rwork[j] = b[i__4].r;
1139 /* L180: */
1140                     }
1141 /* L190: */
1142                 }
1143                 sgemm_("T", "N", &nsize, nrhs, &nsize, &c_b10, &rwork[u + st1]
1144                         , n, &rwork[irwb], &nsize, &c_b35, &rwork[irwrb], &
1145                         nsize);
1146                 j = irwb - 1;
1147                 i__2 = *nrhs;
1148                 for (jcol = 1; jcol <= i__2; ++jcol) {
1149                     i__3 = st + nsize - 1;
1150                     for (jrow = st; jrow <= i__3; ++jrow) {
1151                         ++j;
1152                         rwork[j] = r_imag(&b[jrow + jcol * b_dim1]);
1153 /* L200: */
1154                     }
1155 /* L210: */
1156                 }
1157                 sgemm_("T", "N", &nsize, nrhs, &nsize, &c_b10, &rwork[u + st1]
1158                         , n, &rwork[irwb], &nsize, &c_b35, &rwork[irwib], &
1159                         nsize);
1160                 jreal = irwrb - 1;
1161                 jimag = irwib - 1;
1162                 i__2 = *nrhs;
1163                 for (jcol = 1; jcol <= i__2; ++jcol) {
1164                     i__3 = st + nsize - 1;
1165                     for (jrow = st; jrow <= i__3; ++jrow) {
1166                         ++jreal;
1167                         ++jimag;
1168                         i__4 = jrow + jcol * b_dim1;
1169                         i__5 = jreal;
1170                         i__6 = jimag;
1171                         q__1.r = rwork[i__5], q__1.i = rwork[i__6];
1172                         b[i__4].r = q__1.r, b[i__4].i = q__1.i;
1173 /* L220: */
1174                     }
1175 /* L230: */
1176                 }
1177
1178                 clacpy_("A", &nsize, nrhs, &b[st + b_dim1], ldb, &work[bx + 
1179                         st1], n);
1180             } else {
1181
1182 /*              A large problem. Solve it using divide and conquer. */
1183
1184                 slasda_(&icmpq1, smlsiz, &nsize, &sqre, &d__[st], &e[st], &
1185                         rwork[u + st1], n, &rwork[vt + st1], &iwork[k + st1], 
1186                         &rwork[difl + st1], &rwork[difr + st1], &rwork[z__ + 
1187                         st1], &rwork[poles + st1], &iwork[givptr + st1], &
1188                         iwork[givcol + st1], n, &iwork[perm + st1], &rwork[
1189                         givnum + st1], &rwork[c__ + st1], &rwork[s + st1], &
1190                         rwork[nrwork], &iwork[iwk], info);
1191                 if (*info != 0) {
1192                     return 0;
1193                 }
1194                 bxst = bx + st1;
1195                 clalsa_(&icmpq2, smlsiz, &nsize, nrhs, &b[st + b_dim1], ldb, &
1196                         work[bxst], n, &rwork[u + st1], n, &rwork[vt + st1], &
1197                         iwork[k + st1], &rwork[difl + st1], &rwork[difr + st1]
1198                         , &rwork[z__ + st1], &rwork[poles + st1], &iwork[
1199                         givptr + st1], &iwork[givcol + st1], n, &iwork[perm + 
1200                         st1], &rwork[givnum + st1], &rwork[c__ + st1], &rwork[
1201                         s + st1], &rwork[nrwork], &iwork[iwk], info);
1202                 if (*info != 0) {
1203                     return 0;
1204                 }
1205             }
1206             st = i__ + 1;
1207         }
1208 /* L240: */
1209     }
1210
1211 /*     Apply the singular values and treat the tiny ones as zero. */
1212
1213     tol = rcnd * (r__1 = d__[isamax_(n, &d__[1], &c__1)], abs(r__1));
1214
1215     i__1 = *n;
1216     for (i__ = 1; i__ <= i__1; ++i__) {
1217
1218 /*        Some of the elements in D can be negative because 1-by-1 */
1219 /*        subproblems were not solved explicitly. */
1220
1221         if ((r__1 = d__[i__], abs(r__1)) <= tol) {
1222             claset_("A", &c__1, nrhs, &c_b1, &c_b1, &work[bx + i__ - 1], n);
1223         } else {
1224             ++(*rank);
1225             clascl_("G", &c__0, &c__0, &d__[i__], &c_b10, &c__1, nrhs, &work[
1226                     bx + i__ - 1], n, info);
1227         }
1228         d__[i__] = (r__1 = d__[i__], abs(r__1));
1229 /* L250: */
1230     }
1231
1232 /*     Now apply back the right singular vectors. */
1233
1234     icmpq2 = 1;
1235     i__1 = nsub;
1236     for (i__ = 1; i__ <= i__1; ++i__) {
1237         st = iwork[i__];
1238         st1 = st - 1;
1239         nsize = iwork[sizei + i__ - 1];
1240         bxst = bx + st1;
1241         if (nsize == 1) {
1242             ccopy_(nrhs, &work[bxst], n, &b[st + b_dim1], ldb);
1243         } else if (nsize <= *smlsiz) {
1244
1245 /*           Since B and BX are complex, the following call to SGEMM */
1246 /*           is performed in two steps (real and imaginary parts). */
1247
1248 /*           CALL SGEMM( 'T', 'N', NSIZE, NRHS, NSIZE, ONE, */
1249 /*    $                  RWORK( VT+ST1 ), N, RWORK( BXST ), N, ZERO, */
1250 /*    $                  B( ST, 1 ), LDB ) */
1251
1252             j = bxst - *n - 1;
1253             jreal = irwb - 1;
1254             i__2 = *nrhs;
1255             for (jcol = 1; jcol <= i__2; ++jcol) {
1256                 j += *n;
1257                 i__3 = nsize;
1258                 for (jrow = 1; jrow <= i__3; ++jrow) {
1259                     ++jreal;
1260                     i__4 = j + jrow;
1261                     rwork[jreal] = work[i__4].r;
1262 /* L260: */
1263                 }
1264 /* L270: */
1265             }
1266             sgemm_("T", "N", &nsize, nrhs, &nsize, &c_b10, &rwork[vt + st1], 
1267                     n, &rwork[irwb], &nsize, &c_b35, &rwork[irwrb], &nsize);
1268             j = bxst - *n - 1;
1269             jimag = irwb - 1;
1270             i__2 = *nrhs;
1271             for (jcol = 1; jcol <= i__2; ++jcol) {
1272                 j += *n;
1273                 i__3 = nsize;
1274                 for (jrow = 1; jrow <= i__3; ++jrow) {
1275                     ++jimag;
1276                     rwork[jimag] = r_imag(&work[j + jrow]);
1277 /* L280: */
1278                 }
1279 /* L290: */
1280             }
1281             sgemm_("T", "N", &nsize, nrhs, &nsize, &c_b10, &rwork[vt + st1], 
1282                     n, &rwork[irwb], &nsize, &c_b35, &rwork[irwib], &nsize);
1283             jreal = irwrb - 1;
1284             jimag = irwib - 1;
1285             i__2 = *nrhs;
1286             for (jcol = 1; jcol <= i__2; ++jcol) {
1287                 i__3 = st + nsize - 1;
1288                 for (jrow = st; jrow <= i__3; ++jrow) {
1289                     ++jreal;
1290                     ++jimag;
1291                     i__4 = jrow + jcol * b_dim1;
1292                     i__5 = jreal;
1293                     i__6 = jimag;
1294                     q__1.r = rwork[i__5], q__1.i = rwork[i__6];
1295                     b[i__4].r = q__1.r, b[i__4].i = q__1.i;
1296 /* L300: */
1297                 }
1298 /* L310: */
1299             }
1300         } else {
1301             clalsa_(&icmpq2, smlsiz, &nsize, nrhs, &work[bxst], n, &b[st + 
1302                     b_dim1], ldb, &rwork[u + st1], n, &rwork[vt + st1], &
1303                     iwork[k + st1], &rwork[difl + st1], &rwork[difr + st1], &
1304                     rwork[z__ + st1], &rwork[poles + st1], &iwork[givptr + 
1305                     st1], &iwork[givcol + st1], n, &iwork[perm + st1], &rwork[
1306                     givnum + st1], &rwork[c__ + st1], &rwork[s + st1], &rwork[
1307                     nrwork], &iwork[iwk], info);
1308             if (*info != 0) {
1309                 return 0;
1310             }
1311         }
1312 /* L320: */
1313     }
1314
1315 /*     Unscale and sort the singular values. */
1316
1317     slascl_("G", &c__0, &c__0, &c_b10, &orgnrm, n, &c__1, &d__[1], n, info);
1318     slasrt_("D", n, &d__[1], info);
1319     clascl_("G", &c__0, &c__0, &orgnrm, &c_b10, n, nrhs, &b[b_offset], ldb, 
1320             info);
1321
1322     return 0;
1323
1324 /*     End of CLALSD */
1325
1326 } /* clalsd_ */
1327