C_LAPACK: Fixes to make it compile with MSVC (#3605)
[platform/upstream/openblas.git] / lapack-netlib / SRC / clasyf.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 = {1.f,0.f};
516 static integer c__1 = 1;
517
518 /* > \brief \b CLASYF computes a partial factorization of a complex symmetric matrix using the Bunch-Kaufman d
519 iagonal pivoting method. */
520
521 /*  =========== DOCUMENTATION =========== */
522
523 /* Online html documentation available at */
524 /*            http://www.netlib.org/lapack/explore-html/ */
525
526 /* > \htmlonly */
527 /* > Download CLASYF + dependencies */
528 /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/clasyf.
529 f"> */
530 /* > [TGZ]</a> */
531 /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/clasyf.
532 f"> */
533 /* > [ZIP]</a> */
534 /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/clasyf.
535 f"> */
536 /* > [TXT]</a> */
537 /* > \endhtmlonly */
538
539 /*  Definition: */
540 /*  =========== */
541
542 /*       SUBROUTINE CLASYF( UPLO, N, NB, KB, A, LDA, IPIV, W, LDW, INFO ) */
543
544 /*       CHARACTER          UPLO */
545 /*       INTEGER            INFO, KB, LDA, LDW, N, NB */
546 /*       INTEGER            IPIV( * ) */
547 /*       COMPLEX            A( LDA, * ), W( LDW, * ) */
548
549
550 /* > \par Purpose: */
551 /*  ============= */
552 /* > */
553 /* > \verbatim */
554 /* > */
555 /* > CLASYF computes a partial factorization of a complex symmetric matrix */
556 /* > A using the Bunch-Kaufman diagonal pivoting method. The partial */
557 /* > factorization has the form: */
558 /* > */
559 /* > A  =  ( I  U12 ) ( A11  0  ) (  I       0    )  if UPLO = 'U', or: */
560 /* >       ( 0  U22 ) (  0   D  ) ( U12**T U22**T ) */
561 /* > */
562 /* > A  =  ( L11  0 ) ( D    0  ) ( L11**T L21**T )  if UPLO = 'L' */
563 /* >       ( L21  I ) ( 0   A22 ) (  0       I    ) */
564 /* > */
565 /* > where the order of D is at most NB. The actual order is returned in */
566 /* > the argument KB, and is either NB or NB-1, or N if N <= NB. */
567 /* > Note that U**T denotes the transpose of U. */
568 /* > */
569 /* > CLASYF is an auxiliary routine called by CSYTRF. It uses blocked code */
570 /* > (calling Level 3 BLAS) to update the submatrix A11 (if UPLO = 'U') or */
571 /* > A22 (if UPLO = 'L'). */
572 /* > \endverbatim */
573
574 /*  Arguments: */
575 /*  ========== */
576
577 /* > \param[in] UPLO */
578 /* > \verbatim */
579 /* >          UPLO is CHARACTER*1 */
580 /* >          Specifies whether the upper or lower triangular part of the */
581 /* >          symmetric matrix A is stored: */
582 /* >          = 'U':  Upper triangular */
583 /* >          = 'L':  Lower triangular */
584 /* > \endverbatim */
585 /* > */
586 /* > \param[in] N */
587 /* > \verbatim */
588 /* >          N is INTEGER */
589 /* >          The order of the matrix A.  N >= 0. */
590 /* > \endverbatim */
591 /* > */
592 /* > \param[in] NB */
593 /* > \verbatim */
594 /* >          NB is INTEGER */
595 /* >          The maximum number of columns of the matrix A that should be */
596 /* >          factored.  NB should be at least 2 to allow for 2-by-2 pivot */
597 /* >          blocks. */
598 /* > \endverbatim */
599 /* > */
600 /* > \param[out] KB */
601 /* > \verbatim */
602 /* >          KB is INTEGER */
603 /* >          The number of columns of A that were actually factored. */
604 /* >          KB is either NB-1 or NB, or N if N <= NB. */
605 /* > \endverbatim */
606 /* > */
607 /* > \param[in,out] A */
608 /* > \verbatim */
609 /* >          A is COMPLEX array, dimension (LDA,N) */
610 /* >          On entry, the symmetric matrix A.  If UPLO = 'U', the leading */
611 /* >          n-by-n upper triangular part of A contains the upper */
612 /* >          triangular part of the matrix A, and the strictly lower */
613 /* >          triangular part of A is not referenced.  If UPLO = 'L', the */
614 /* >          leading n-by-n lower triangular part of A contains the lower */
615 /* >          triangular part of the matrix A, and the strictly upper */
616 /* >          triangular part of A is not referenced. */
617 /* >          On exit, A contains details of the partial factorization. */
618 /* > \endverbatim */
619 /* > */
620 /* > \param[in] LDA */
621 /* > \verbatim */
622 /* >          LDA is INTEGER */
623 /* >          The leading dimension of the array A.  LDA >= f2cmax(1,N). */
624 /* > \endverbatim */
625 /* > */
626 /* > \param[out] IPIV */
627 /* > \verbatim */
628 /* >          IPIV is INTEGER array, dimension (N) */
629 /* >          Details of the interchanges and the block structure of D. */
630 /* > */
631 /* >          If UPLO = 'U': */
632 /* >             Only the last KB elements of IPIV are set. */
633 /* > */
634 /* >             If IPIV(k) > 0, then rows and columns k and IPIV(k) were */
635 /* >             interchanged and D(k,k) is a 1-by-1 diagonal block. */
636 /* > */
637 /* >             If IPIV(k) = IPIV(k-1) < 0, then rows and columns */
638 /* >             k-1 and -IPIV(k) were interchanged and D(k-1:k,k-1:k) */
639 /* >             is a 2-by-2 diagonal block. */
640 /* > */
641 /* >          If UPLO = 'L': */
642 /* >             Only the first KB elements of IPIV are set. */
643 /* > */
644 /* >             If IPIV(k) > 0, then rows and columns k and IPIV(k) were */
645 /* >             interchanged and D(k,k) is a 1-by-1 diagonal block. */
646 /* > */
647 /* >             If IPIV(k) = IPIV(k+1) < 0, then rows and columns */
648 /* >             k+1 and -IPIV(k) were interchanged and D(k:k+1,k:k+1) */
649 /* >             is a 2-by-2 diagonal block. */
650 /* > \endverbatim */
651 /* > */
652 /* > \param[out] W */
653 /* > \verbatim */
654 /* >          W is COMPLEX array, dimension (LDW,NB) */
655 /* > \endverbatim */
656 /* > */
657 /* > \param[in] LDW */
658 /* > \verbatim */
659 /* >          LDW is INTEGER */
660 /* >          The leading dimension of the array W.  LDW >= f2cmax(1,N). */
661 /* > \endverbatim */
662 /* > */
663 /* > \param[out] INFO */
664 /* > \verbatim */
665 /* >          INFO is INTEGER */
666 /* >          = 0: successful exit */
667 /* >          > 0: if INFO = k, D(k,k) is exactly zero.  The factorization */
668 /* >               has been completed, but the block diagonal matrix D is */
669 /* >               exactly singular. */
670 /* > \endverbatim */
671
672 /*  Authors: */
673 /*  ======== */
674
675 /* > \author Univ. of Tennessee */
676 /* > \author Univ. of California Berkeley */
677 /* > \author Univ. of Colorado Denver */
678 /* > \author NAG Ltd. */
679
680 /* > \date November 2013 */
681
682 /* > \ingroup complexSYcomputational */
683
684 /* > \par Contributors: */
685 /*  ================== */
686 /* > */
687 /* > \verbatim */
688 /* > */
689 /* >  November 2013,  Igor Kozachenko, */
690 /* >                  Computer Science Division, */
691 /* >                  University of California, Berkeley */
692 /* > \endverbatim */
693
694 /*  ===================================================================== */
695 /* Subroutine */ int clasyf_(char *uplo, integer *n, integer *nb, integer *kb,
696          complex *a, integer *lda, integer *ipiv, complex *w, integer *ldw, 
697         integer *info)
698 {
699     /* System generated locals */
700     integer a_dim1, a_offset, w_dim1, w_offset, i__1, i__2, i__3, i__4, i__5;
701     real r__1, r__2, r__3, r__4;
702     complex q__1, q__2, q__3;
703
704     /* Local variables */
705     integer imax, jmax, j, k;
706     complex t;
707     real alpha;
708     extern /* Subroutine */ int cscal_(integer *, complex *, complex *, 
709             integer *), cgemm_(char *, char *, integer *, integer *, integer *
710             , complex *, complex *, integer *, complex *, integer *, complex *
711             , complex *, integer *);
712     extern logical lsame_(char *, char *);
713     extern /* Subroutine */ int cgemv_(char *, integer *, integer *, complex *
714             , complex *, integer *, complex *, integer *, complex *, complex *
715             , integer *), ccopy_(integer *, complex *, integer *, 
716             complex *, integer *), cswap_(integer *, complex *, integer *, 
717             complex *, integer *);
718     integer kstep;
719     complex r1, d11, d21, d22;
720     integer jb, jj, kk, jp, kp;
721     real absakk;
722     integer kw;
723     extern integer icamax_(integer *, complex *, integer *);
724     real colmax, rowmax;
725     integer kkw;
726
727
728 /*  -- LAPACK computational routine (version 3.5.0) -- */
729 /*  -- LAPACK is a software package provided by Univ. of Tennessee,    -- */
730 /*  -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- */
731 /*     November 2013 */
732
733
734 /*  ===================================================================== */
735
736
737     /* Parameter adjustments */
738     a_dim1 = *lda;
739     a_offset = 1 + a_dim1 * 1;
740     a -= a_offset;
741     --ipiv;
742     w_dim1 = *ldw;
743     w_offset = 1 + w_dim1 * 1;
744     w -= w_offset;
745
746     /* Function Body */
747     *info = 0;
748
749 /*     Initialize ALPHA for use in choosing pivot block size. */
750
751     alpha = (sqrt(17.f) + 1.f) / 8.f;
752
753     if (lsame_(uplo, "U")) {
754
755 /*        Factorize the trailing columns of A using the upper triangle */
756 /*        of A and working backwards, and compute the matrix W = U12*D */
757 /*        for use in updating A11 */
758
759 /*        K is the main loop index, decreasing from N in steps of 1 or 2 */
760
761 /*        KW is the column of W which corresponds to column K of A */
762
763         k = *n;
764 L10:
765         kw = *nb + k - *n;
766
767 /*        Exit from loop */
768
769         if (k <= *n - *nb + 1 && *nb < *n || k < 1) {
770             goto L30;
771         }
772
773 /*        Copy column K of A to column KW of W and update it */
774
775         ccopy_(&k, &a[k * a_dim1 + 1], &c__1, &w[kw * w_dim1 + 1], &c__1);
776         if (k < *n) {
777             i__1 = *n - k;
778             q__1.r = -1.f, q__1.i = 0.f;
779             cgemv_("No transpose", &k, &i__1, &q__1, &a[(k + 1) * a_dim1 + 1],
780                      lda, &w[k + (kw + 1) * w_dim1], ldw, &c_b1, &w[kw * 
781                     w_dim1 + 1], &c__1);
782         }
783
784         kstep = 1;
785
786 /*        Determine rows and columns to be interchanged and whether */
787 /*        a 1-by-1 or 2-by-2 pivot block will be used */
788
789         i__1 = k + kw * w_dim1;
790         absakk = (r__1 = w[i__1].r, abs(r__1)) + (r__2 = r_imag(&w[k + kw * 
791                 w_dim1]), abs(r__2));
792
793 /*        IMAX is the row-index of the largest off-diagonal element in */
794 /*        column K, and COLMAX is its absolute value. */
795 /*        Determine both COLMAX and IMAX. */
796
797         if (k > 1) {
798             i__1 = k - 1;
799             imax = icamax_(&i__1, &w[kw * w_dim1 + 1], &c__1);
800             i__1 = imax + kw * w_dim1;
801             colmax = (r__1 = w[i__1].r, abs(r__1)) + (r__2 = r_imag(&w[imax + 
802                     kw * w_dim1]), abs(r__2));
803         } else {
804             colmax = 0.f;
805         }
806
807         if (f2cmax(absakk,colmax) == 0.f) {
808
809 /*           Column K is zero or underflow: set INFO and continue */
810
811             if (*info == 0) {
812                 *info = k;
813             }
814             kp = k;
815         } else {
816             if (absakk >= alpha * colmax) {
817
818 /*              no interchange, use 1-by-1 pivot block */
819
820                 kp = k;
821             } else {
822
823 /*              Copy column IMAX to column KW-1 of W and update it */
824
825                 ccopy_(&imax, &a[imax * a_dim1 + 1], &c__1, &w[(kw - 1) * 
826                         w_dim1 + 1], &c__1);
827                 i__1 = k - imax;
828                 ccopy_(&i__1, &a[imax + (imax + 1) * a_dim1], lda, &w[imax + 
829                         1 + (kw - 1) * w_dim1], &c__1);
830                 if (k < *n) {
831                     i__1 = *n - k;
832                     q__1.r = -1.f, q__1.i = 0.f;
833                     cgemv_("No transpose", &k, &i__1, &q__1, &a[(k + 1) * 
834                             a_dim1 + 1], lda, &w[imax + (kw + 1) * w_dim1], 
835                             ldw, &c_b1, &w[(kw - 1) * w_dim1 + 1], &c__1);
836                 }
837
838 /*              JMAX is the column-index of the largest off-diagonal */
839 /*              element in row IMAX, and ROWMAX is its absolute value */
840
841                 i__1 = k - imax;
842                 jmax = imax + icamax_(&i__1, &w[imax + 1 + (kw - 1) * w_dim1],
843                          &c__1);
844                 i__1 = jmax + (kw - 1) * w_dim1;
845                 rowmax = (r__1 = w[i__1].r, abs(r__1)) + (r__2 = r_imag(&w[
846                         jmax + (kw - 1) * w_dim1]), abs(r__2));
847                 if (imax > 1) {
848                     i__1 = imax - 1;
849                     jmax = icamax_(&i__1, &w[(kw - 1) * w_dim1 + 1], &c__1);
850 /* Computing MAX */
851                     i__1 = jmax + (kw - 1) * w_dim1;
852                     r__3 = rowmax, r__4 = (r__1 = w[i__1].r, abs(r__1)) + (
853                             r__2 = r_imag(&w[jmax + (kw - 1) * w_dim1]), abs(
854                             r__2));
855                     rowmax = f2cmax(r__3,r__4);
856                 }
857
858                 if (absakk >= alpha * colmax * (colmax / rowmax)) {
859
860 /*                 no interchange, use 1-by-1 pivot block */
861
862                     kp = k;
863                 } else /* if(complicated condition) */ {
864                     i__1 = imax + (kw - 1) * w_dim1;
865                     if ((r__1 = w[i__1].r, abs(r__1)) + (r__2 = r_imag(&w[
866                             imax + (kw - 1) * w_dim1]), abs(r__2)) >= alpha * 
867                             rowmax) {
868
869 /*                 interchange rows and columns K and IMAX, use 1-by-1 */
870 /*                 pivot block */
871
872                         kp = imax;
873
874 /*                 copy column KW-1 of W to column KW of W */
875
876                         ccopy_(&k, &w[(kw - 1) * w_dim1 + 1], &c__1, &w[kw * 
877                                 w_dim1 + 1], &c__1);
878                     } else {
879
880 /*                 interchange rows and columns K-1 and IMAX, use 2-by-2 */
881 /*                 pivot block */
882
883                         kp = imax;
884                         kstep = 2;
885                     }
886                 }
887             }
888
889 /*           ============================================================ */
890
891 /*           KK is the column of A where pivoting step stopped */
892
893             kk = k - kstep + 1;
894
895 /*           KKW is the column of W which corresponds to column KK of A */
896
897             kkw = *nb + kk - *n;
898
899 /*           Interchange rows and columns KP and KK. */
900 /*           Updated column KP is already stored in column KKW of W. */
901
902             if (kp != kk) {
903
904 /*              Copy non-updated column KK to column KP of submatrix A */
905 /*              at step K. No need to copy element into column K */
906 /*              (or K and K-1 for 2-by-2 pivot) of A, since these columns */
907 /*              will be later overwritten. */
908
909                 i__1 = kp + kp * a_dim1;
910                 i__2 = kk + kk * a_dim1;
911                 a[i__1].r = a[i__2].r, a[i__1].i = a[i__2].i;
912                 i__1 = kk - 1 - kp;
913                 ccopy_(&i__1, &a[kp + 1 + kk * a_dim1], &c__1, &a[kp + (kp + 
914                         1) * a_dim1], lda);
915                 if (kp > 1) {
916                     i__1 = kp - 1;
917                     ccopy_(&i__1, &a[kk * a_dim1 + 1], &c__1, &a[kp * a_dim1 
918                             + 1], &c__1);
919                 }
920
921 /*              Interchange rows KK and KP in last K+1 to N columns of A */
922 /*              (columns K (or K and K-1 for 2-by-2 pivot) of A will be */
923 /*              later overwritten). Interchange rows KK and KP */
924 /*              in last KKW to NB columns of W. */
925
926                 if (k < *n) {
927                     i__1 = *n - k;
928                     cswap_(&i__1, &a[kk + (k + 1) * a_dim1], lda, &a[kp + (k 
929                             + 1) * a_dim1], lda);
930                 }
931                 i__1 = *n - kk + 1;
932                 cswap_(&i__1, &w[kk + kkw * w_dim1], ldw, &w[kp + kkw * 
933                         w_dim1], ldw);
934             }
935
936             if (kstep == 1) {
937
938 /*              1-by-1 pivot block D(k): column kw of W now holds */
939
940 /*              W(kw) = U(k)*D(k), */
941
942 /*              where U(k) is the k-th column of U */
943
944 /*              Store subdiag. elements of column U(k) */
945 /*              and 1-by-1 block D(k) in column k of A. */
946 /*              NOTE: Diagonal element U(k,k) is a UNIT element */
947 /*              and not stored. */
948 /*                 A(k,k) := D(k,k) = W(k,kw) */
949 /*                 A(1:k-1,k) := U(1:k-1,k) = W(1:k-1,kw)/D(k,k) */
950
951                 ccopy_(&k, &w[kw * w_dim1 + 1], &c__1, &a[k * a_dim1 + 1], &
952                         c__1);
953                 c_div(&q__1, &c_b1, &a[k + k * a_dim1]);
954                 r1.r = q__1.r, r1.i = q__1.i;
955                 i__1 = k - 1;
956                 cscal_(&i__1, &r1, &a[k * a_dim1 + 1], &c__1);
957
958             } else {
959
960 /*              2-by-2 pivot block D(k): columns kw and kw-1 of W now hold */
961
962 /*              ( W(kw-1) W(kw) ) = ( U(k-1) U(k) )*D(k) */
963
964 /*              where U(k) and U(k-1) are the k-th and (k-1)-th columns */
965 /*              of U */
966
967 /*              Store U(1:k-2,k-1) and U(1:k-2,k) and 2-by-2 */
968 /*              block D(k-1:k,k-1:k) in columns k-1 and k of A. */
969 /*              NOTE: 2-by-2 diagonal block U(k-1:k,k-1:k) is a UNIT */
970 /*              block and not stored. */
971 /*                 A(k-1:k,k-1:k) := D(k-1:k,k-1:k) = W(k-1:k,kw-1:kw) */
972 /*                 A(1:k-2,k-1:k) := U(1:k-2,k:k-1:k) = */
973 /*                 = W(1:k-2,kw-1:kw) * ( D(k-1:k,k-1:k)**(-1) ) */
974
975                 if (k > 2) {
976
977 /*                 Compose the columns of the inverse of 2-by-2 pivot */
978 /*                 block D in the following way to reduce the number */
979 /*                 of FLOPS when we myltiply panel ( W(kw-1) W(kw) ) by */
980 /*                 this inverse */
981
982 /*                 D**(-1) = ( d11 d21 )**(-1) = */
983 /*                           ( d21 d22 ) */
984
985 /*                 = 1/(d11*d22-d21**2) * ( ( d22 ) (-d21 ) ) = */
986 /*                                        ( (-d21 ) ( d11 ) ) */
987
988 /*                 = 1/d21 * 1/((d11/d21)*(d22/d21)-1) * */
989
990 /*                   * ( ( d22/d21 ) (      -1 ) ) = */
991 /*                     ( (      -1 ) ( d11/d21 ) ) */
992
993 /*                 = 1/d21 * 1/(D22*D11-1) * ( ( D11 ) (  -1 ) ) = */
994 /*                                           ( ( -1  ) ( D22 ) ) */
995
996 /*                 = 1/d21 * T * ( ( D11 ) (  -1 ) ) */
997 /*                               ( (  -1 ) ( D22 ) ) */
998
999 /*                 = D21 * ( ( D11 ) (  -1 ) ) */
1000 /*                         ( (  -1 ) ( D22 ) ) */
1001
1002                     i__1 = k - 1 + kw * w_dim1;
1003                     d21.r = w[i__1].r, d21.i = w[i__1].i;
1004                     c_div(&q__1, &w[k + kw * w_dim1], &d21);
1005                     d11.r = q__1.r, d11.i = q__1.i;
1006                     c_div(&q__1, &w[k - 1 + (kw - 1) * w_dim1], &d21);
1007                     d22.r = q__1.r, d22.i = q__1.i;
1008                     q__3.r = d11.r * d22.r - d11.i * d22.i, q__3.i = d11.r * 
1009                             d22.i + d11.i * d22.r;
1010                     q__2.r = q__3.r - 1.f, q__2.i = q__3.i + 0.f;
1011                     c_div(&q__1, &c_b1, &q__2);
1012                     t.r = q__1.r, t.i = q__1.i;
1013
1014 /*                 Update elements in columns A(k-1) and A(k) as */
1015 /*                 dot products of rows of ( W(kw-1) W(kw) ) and columns */
1016 /*                 of D**(-1) */
1017
1018                     c_div(&q__1, &t, &d21);
1019                     d21.r = q__1.r, d21.i = q__1.i;
1020                     i__1 = k - 2;
1021                     for (j = 1; j <= i__1; ++j) {
1022                         i__2 = j + (k - 1) * a_dim1;
1023                         i__3 = j + (kw - 1) * w_dim1;
1024                         q__3.r = d11.r * w[i__3].r - d11.i * w[i__3].i, 
1025                                 q__3.i = d11.r * w[i__3].i + d11.i * w[i__3]
1026                                 .r;
1027                         i__4 = j + kw * w_dim1;
1028                         q__2.r = q__3.r - w[i__4].r, q__2.i = q__3.i - w[i__4]
1029                                 .i;
1030                         q__1.r = d21.r * q__2.r - d21.i * q__2.i, q__1.i = 
1031                                 d21.r * q__2.i + d21.i * q__2.r;
1032                         a[i__2].r = q__1.r, a[i__2].i = q__1.i;
1033                         i__2 = j + k * a_dim1;
1034                         i__3 = j + kw * w_dim1;
1035                         q__3.r = d22.r * w[i__3].r - d22.i * w[i__3].i, 
1036                                 q__3.i = d22.r * w[i__3].i + d22.i * w[i__3]
1037                                 .r;
1038                         i__4 = j + (kw - 1) * w_dim1;
1039                         q__2.r = q__3.r - w[i__4].r, q__2.i = q__3.i - w[i__4]
1040                                 .i;
1041                         q__1.r = d21.r * q__2.r - d21.i * q__2.i, q__1.i = 
1042                                 d21.r * q__2.i + d21.i * q__2.r;
1043                         a[i__2].r = q__1.r, a[i__2].i = q__1.i;
1044 /* L20: */
1045                     }
1046                 }
1047
1048 /*              Copy D(k) to A */
1049
1050                 i__1 = k - 1 + (k - 1) * a_dim1;
1051                 i__2 = k - 1 + (kw - 1) * w_dim1;
1052                 a[i__1].r = w[i__2].r, a[i__1].i = w[i__2].i;
1053                 i__1 = k - 1 + k * a_dim1;
1054                 i__2 = k - 1 + kw * w_dim1;
1055                 a[i__1].r = w[i__2].r, a[i__1].i = w[i__2].i;
1056                 i__1 = k + k * a_dim1;
1057                 i__2 = k + kw * w_dim1;
1058                 a[i__1].r = w[i__2].r, a[i__1].i = w[i__2].i;
1059
1060             }
1061
1062         }
1063
1064 /*        Store details of the interchanges in IPIV */
1065
1066         if (kstep == 1) {
1067             ipiv[k] = kp;
1068         } else {
1069             ipiv[k] = -kp;
1070             ipiv[k - 1] = -kp;
1071         }
1072
1073 /*        Decrease K and return to the start of the main loop */
1074
1075         k -= kstep;
1076         goto L10;
1077
1078 L30:
1079
1080 /*        Update the upper triangle of A11 (= A(1:k,1:k)) as */
1081
1082 /*        A11 := A11 - U12*D*U12**T = A11 - U12*W**T */
1083
1084 /*        computing blocks of NB columns at a time */
1085
1086         i__1 = -(*nb);
1087         for (j = (k - 1) / *nb * *nb + 1; i__1 < 0 ? j >= 1 : j <= 1; j += 
1088                 i__1) {
1089 /* Computing MIN */
1090             i__2 = *nb, i__3 = k - j + 1;
1091             jb = f2cmin(i__2,i__3);
1092
1093 /*           Update the upper triangle of the diagonal block */
1094
1095             i__2 = j + jb - 1;
1096             for (jj = j; jj <= i__2; ++jj) {
1097                 i__3 = jj - j + 1;
1098                 i__4 = *n - k;
1099                 q__1.r = -1.f, q__1.i = 0.f;
1100                 cgemv_("No transpose", &i__3, &i__4, &q__1, &a[j + (k + 1) * 
1101                         a_dim1], lda, &w[jj + (kw + 1) * w_dim1], ldw, &c_b1, 
1102                         &a[j + jj * a_dim1], &c__1);
1103 /* L40: */
1104             }
1105
1106 /*           Update the rectangular superdiagonal block */
1107
1108             i__2 = j - 1;
1109             i__3 = *n - k;
1110             q__1.r = -1.f, q__1.i = 0.f;
1111             cgemm_("No transpose", "Transpose", &i__2, &jb, &i__3, &q__1, &a[(
1112                     k + 1) * a_dim1 + 1], lda, &w[j + (kw + 1) * w_dim1], ldw,
1113                      &c_b1, &a[j * a_dim1 + 1], lda);
1114 /* L50: */
1115         }
1116
1117 /*        Put U12 in standard form by partially undoing the interchanges */
1118 /*        in columns k+1:n looping backwards from k+1 to n */
1119
1120         j = k + 1;
1121 L60:
1122
1123 /*           Undo the interchanges (if any) of rows JJ and JP at each */
1124 /*           step J */
1125
1126 /*           (Here, J is a diagonal index) */
1127         jj = j;
1128         jp = ipiv[j];
1129         if (jp < 0) {
1130             jp = -jp;
1131 /*              (Here, J is a diagonal index) */
1132             ++j;
1133         }
1134 /*           (NOTE: Here, J is used to determine row length. Length N-J+1 */
1135 /*           of the rows to swap back doesn't include diagonal element) */
1136         ++j;
1137         if (jp != jj && j <= *n) {
1138             i__1 = *n - j + 1;
1139             cswap_(&i__1, &a[jp + j * a_dim1], lda, &a[jj + j * a_dim1], lda);
1140         }
1141         if (j < *n) {
1142             goto L60;
1143         }
1144
1145 /*        Set KB to the number of columns factorized */
1146
1147         *kb = *n - k;
1148
1149     } else {
1150
1151 /*        Factorize the leading columns of A using the lower triangle */
1152 /*        of A and working forwards, and compute the matrix W = L21*D */
1153 /*        for use in updating A22 */
1154
1155 /*        K is the main loop index, increasing from 1 in steps of 1 or 2 */
1156
1157         k = 1;
1158 L70:
1159
1160 /*        Exit from loop */
1161
1162         if (k >= *nb && *nb < *n || k > *n) {
1163             goto L90;
1164         }
1165
1166 /*        Copy column K of A to column K of W and update it */
1167
1168         i__1 = *n - k + 1;
1169         ccopy_(&i__1, &a[k + k * a_dim1], &c__1, &w[k + k * w_dim1], &c__1);
1170         i__1 = *n - k + 1;
1171         i__2 = k - 1;
1172         q__1.r = -1.f, q__1.i = 0.f;
1173         cgemv_("No transpose", &i__1, &i__2, &q__1, &a[k + a_dim1], lda, &w[k 
1174                 + w_dim1], ldw, &c_b1, &w[k + k * w_dim1], &c__1);
1175
1176         kstep = 1;
1177
1178 /*        Determine rows and columns to be interchanged and whether */
1179 /*        a 1-by-1 or 2-by-2 pivot block will be used */
1180
1181         i__1 = k + k * w_dim1;
1182         absakk = (r__1 = w[i__1].r, abs(r__1)) + (r__2 = r_imag(&w[k + k * 
1183                 w_dim1]), abs(r__2));
1184
1185 /*        IMAX is the row-index of the largest off-diagonal element in */
1186 /*        column K, and COLMAX is its absolute value. */
1187 /*        Determine both COLMAX and IMAX. */
1188
1189         if (k < *n) {
1190             i__1 = *n - k;
1191             imax = k + icamax_(&i__1, &w[k + 1 + k * w_dim1], &c__1);
1192             i__1 = imax + k * w_dim1;
1193             colmax = (r__1 = w[i__1].r, abs(r__1)) + (r__2 = r_imag(&w[imax + 
1194                     k * w_dim1]), abs(r__2));
1195         } else {
1196             colmax = 0.f;
1197         }
1198
1199         if (f2cmax(absakk,colmax) == 0.f) {
1200
1201 /*           Column K is zero or underflow: set INFO and continue */
1202
1203             if (*info == 0) {
1204                 *info = k;
1205             }
1206             kp = k;
1207         } else {
1208             if (absakk >= alpha * colmax) {
1209
1210 /*              no interchange, use 1-by-1 pivot block */
1211
1212                 kp = k;
1213             } else {
1214
1215 /*              Copy column IMAX to column K+1 of W and update it */
1216
1217                 i__1 = imax - k;
1218                 ccopy_(&i__1, &a[imax + k * a_dim1], lda, &w[k + (k + 1) * 
1219                         w_dim1], &c__1);
1220                 i__1 = *n - imax + 1;
1221                 ccopy_(&i__1, &a[imax + imax * a_dim1], &c__1, &w[imax + (k + 
1222                         1) * w_dim1], &c__1);
1223                 i__1 = *n - k + 1;
1224                 i__2 = k - 1;
1225                 q__1.r = -1.f, q__1.i = 0.f;
1226                 cgemv_("No transpose", &i__1, &i__2, &q__1, &a[k + a_dim1], 
1227                         lda, &w[imax + w_dim1], ldw, &c_b1, &w[k + (k + 1) * 
1228                         w_dim1], &c__1);
1229
1230 /*              JMAX is the column-index of the largest off-diagonal */
1231 /*              element in row IMAX, and ROWMAX is its absolute value */
1232
1233                 i__1 = imax - k;
1234                 jmax = k - 1 + icamax_(&i__1, &w[k + (k + 1) * w_dim1], &c__1)
1235                         ;
1236                 i__1 = jmax + (k + 1) * w_dim1;
1237                 rowmax = (r__1 = w[i__1].r, abs(r__1)) + (r__2 = r_imag(&w[
1238                         jmax + (k + 1) * w_dim1]), abs(r__2));
1239                 if (imax < *n) {
1240                     i__1 = *n - imax;
1241                     jmax = imax + icamax_(&i__1, &w[imax + 1 + (k + 1) * 
1242                             w_dim1], &c__1);
1243 /* Computing MAX */
1244                     i__1 = jmax + (k + 1) * w_dim1;
1245                     r__3 = rowmax, r__4 = (r__1 = w[i__1].r, abs(r__1)) + (
1246                             r__2 = r_imag(&w[jmax + (k + 1) * w_dim1]), abs(
1247                             r__2));
1248                     rowmax = f2cmax(r__3,r__4);
1249                 }
1250
1251                 if (absakk >= alpha * colmax * (colmax / rowmax)) {
1252
1253 /*                 no interchange, use 1-by-1 pivot block */
1254
1255                     kp = k;
1256                 } else /* if(complicated condition) */ {
1257                     i__1 = imax + (k + 1) * w_dim1;
1258                     if ((r__1 = w[i__1].r, abs(r__1)) + (r__2 = r_imag(&w[
1259                             imax + (k + 1) * w_dim1]), abs(r__2)) >= alpha * 
1260                             rowmax) {
1261
1262 /*                 interchange rows and columns K and IMAX, use 1-by-1 */
1263 /*                 pivot block */
1264
1265                         kp = imax;
1266
1267 /*                 copy column K+1 of W to column K of W */
1268
1269                         i__1 = *n - k + 1;
1270                         ccopy_(&i__1, &w[k + (k + 1) * w_dim1], &c__1, &w[k + 
1271                                 k * w_dim1], &c__1);
1272                     } else {
1273
1274 /*                 interchange rows and columns K+1 and IMAX, use 2-by-2 */
1275 /*                 pivot block */
1276
1277                         kp = imax;
1278                         kstep = 2;
1279                     }
1280                 }
1281             }
1282
1283 /*           ============================================================ */
1284
1285 /*           KK is the column of A where pivoting step stopped */
1286
1287             kk = k + kstep - 1;
1288
1289 /*           Interchange rows and columns KP and KK. */
1290 /*           Updated column KP is already stored in column KK of W. */
1291
1292             if (kp != kk) {
1293
1294 /*              Copy non-updated column KK to column KP of submatrix A */
1295 /*              at step K. No need to copy element into column K */
1296 /*              (or K and K+1 for 2-by-2 pivot) of A, since these columns */
1297 /*              will be later overwritten. */
1298
1299                 i__1 = kp + kp * a_dim1;
1300                 i__2 = kk + kk * a_dim1;
1301                 a[i__1].r = a[i__2].r, a[i__1].i = a[i__2].i;
1302                 i__1 = kp - kk - 1;
1303                 ccopy_(&i__1, &a[kk + 1 + kk * a_dim1], &c__1, &a[kp + (kk + 
1304                         1) * a_dim1], lda);
1305                 if (kp < *n) {
1306                     i__1 = *n - kp;
1307                     ccopy_(&i__1, &a[kp + 1 + kk * a_dim1], &c__1, &a[kp + 1 
1308                             + kp * a_dim1], &c__1);
1309                 }
1310
1311 /*              Interchange rows KK and KP in first K-1 columns of A */
1312 /*              (columns K (or K and K+1 for 2-by-2 pivot) of A will be */
1313 /*              later overwritten). Interchange rows KK and KP */
1314 /*              in first KK columns of W. */
1315
1316                 if (k > 1) {
1317                     i__1 = k - 1;
1318                     cswap_(&i__1, &a[kk + a_dim1], lda, &a[kp + a_dim1], lda);
1319                 }
1320                 cswap_(&kk, &w[kk + w_dim1], ldw, &w[kp + w_dim1], ldw);
1321             }
1322
1323             if (kstep == 1) {
1324
1325 /*              1-by-1 pivot block D(k): column k of W now holds */
1326
1327 /*              W(k) = L(k)*D(k), */
1328
1329 /*              where L(k) is the k-th column of L */
1330
1331 /*              Store subdiag. elements of column L(k) */
1332 /*              and 1-by-1 block D(k) in column k of A. */
1333 /*              (NOTE: Diagonal element L(k,k) is a UNIT element */
1334 /*              and not stored) */
1335 /*                 A(k,k) := D(k,k) = W(k,k) */
1336 /*                 A(k+1:N,k) := L(k+1:N,k) = W(k+1:N,k)/D(k,k) */
1337
1338                 i__1 = *n - k + 1;
1339                 ccopy_(&i__1, &w[k + k * w_dim1], &c__1, &a[k + k * a_dim1], &
1340                         c__1);
1341                 if (k < *n) {
1342                     c_div(&q__1, &c_b1, &a[k + k * a_dim1]);
1343                     r1.r = q__1.r, r1.i = q__1.i;
1344                     i__1 = *n - k;
1345                     cscal_(&i__1, &r1, &a[k + 1 + k * a_dim1], &c__1);
1346                 }
1347
1348             } else {
1349
1350 /*              2-by-2 pivot block D(k): columns k and k+1 of W now hold */
1351
1352 /*              ( W(k) W(k+1) ) = ( L(k) L(k+1) )*D(k) */
1353
1354 /*              where L(k) and L(k+1) are the k-th and (k+1)-th columns */
1355 /*              of L */
1356
1357 /*              Store L(k+2:N,k) and L(k+2:N,k+1) and 2-by-2 */
1358 /*              block D(k:k+1,k:k+1) in columns k and k+1 of A. */
1359 /*              (NOTE: 2-by-2 diagonal block L(k:k+1,k:k+1) is a UNIT */
1360 /*              block and not stored) */
1361 /*                 A(k:k+1,k:k+1) := D(k:k+1,k:k+1) = W(k:k+1,k:k+1) */
1362 /*                 A(k+2:N,k:k+1) := L(k+2:N,k:k+1) = */
1363 /*                 = W(k+2:N,k:k+1) * ( D(k:k+1,k:k+1)**(-1) ) */
1364
1365                 if (k < *n - 1) {
1366
1367 /*                 Compose the columns of the inverse of 2-by-2 pivot */
1368 /*                 block D in the following way to reduce the number */
1369 /*                 of FLOPS when we myltiply panel ( W(k) W(k+1) ) by */
1370 /*                 this inverse */
1371
1372 /*                 D**(-1) = ( d11 d21 )**(-1) = */
1373 /*                           ( d21 d22 ) */
1374
1375 /*                 = 1/(d11*d22-d21**2) * ( ( d22 ) (-d21 ) ) = */
1376 /*                                        ( (-d21 ) ( d11 ) ) */
1377
1378 /*                 = 1/d21 * 1/((d11/d21)*(d22/d21)-1) * */
1379
1380 /*                   * ( ( d22/d21 ) (      -1 ) ) = */
1381 /*                     ( (      -1 ) ( d11/d21 ) ) */
1382
1383 /*                 = 1/d21 * 1/(D22*D11-1) * ( ( D11 ) (  -1 ) ) = */
1384 /*                                           ( ( -1  ) ( D22 ) ) */
1385
1386 /*                 = 1/d21 * T * ( ( D11 ) (  -1 ) ) */
1387 /*                               ( (  -1 ) ( D22 ) ) */
1388
1389 /*                 = D21 * ( ( D11 ) (  -1 ) ) */
1390 /*                         ( (  -1 ) ( D22 ) ) */
1391
1392                     i__1 = k + 1 + k * w_dim1;
1393                     d21.r = w[i__1].r, d21.i = w[i__1].i;
1394                     c_div(&q__1, &w[k + 1 + (k + 1) * w_dim1], &d21);
1395                     d11.r = q__1.r, d11.i = q__1.i;
1396                     c_div(&q__1, &w[k + k * w_dim1], &d21);
1397                     d22.r = q__1.r, d22.i = q__1.i;
1398                     q__3.r = d11.r * d22.r - d11.i * d22.i, q__3.i = d11.r * 
1399                             d22.i + d11.i * d22.r;
1400                     q__2.r = q__3.r - 1.f, q__2.i = q__3.i + 0.f;
1401                     c_div(&q__1, &c_b1, &q__2);
1402                     t.r = q__1.r, t.i = q__1.i;
1403                     c_div(&q__1, &t, &d21);
1404                     d21.r = q__1.r, d21.i = q__1.i;
1405
1406 /*                 Update elements in columns A(k) and A(k+1) as */
1407 /*                 dot products of rows of ( W(k) W(k+1) ) and columns */
1408 /*                 of D**(-1) */
1409
1410                     i__1 = *n;
1411                     for (j = k + 2; j <= i__1; ++j) {
1412                         i__2 = j + k * a_dim1;
1413                         i__3 = j + k * w_dim1;
1414                         q__3.r = d11.r * w[i__3].r - d11.i * w[i__3].i, 
1415                                 q__3.i = d11.r * w[i__3].i + d11.i * w[i__3]
1416                                 .r;
1417                         i__4 = j + (k + 1) * w_dim1;
1418                         q__2.r = q__3.r - w[i__4].r, q__2.i = q__3.i - w[i__4]
1419                                 .i;
1420                         q__1.r = d21.r * q__2.r - d21.i * q__2.i, q__1.i = 
1421                                 d21.r * q__2.i + d21.i * q__2.r;
1422                         a[i__2].r = q__1.r, a[i__2].i = q__1.i;
1423                         i__2 = j + (k + 1) * a_dim1;
1424                         i__3 = j + (k + 1) * w_dim1;
1425                         q__3.r = d22.r * w[i__3].r - d22.i * w[i__3].i, 
1426                                 q__3.i = d22.r * w[i__3].i + d22.i * w[i__3]
1427                                 .r;
1428                         i__4 = j + k * w_dim1;
1429                         q__2.r = q__3.r - w[i__4].r, q__2.i = q__3.i - w[i__4]
1430                                 .i;
1431                         q__1.r = d21.r * q__2.r - d21.i * q__2.i, q__1.i = 
1432                                 d21.r * q__2.i + d21.i * q__2.r;
1433                         a[i__2].r = q__1.r, a[i__2].i = q__1.i;
1434 /* L80: */
1435                     }
1436                 }
1437
1438 /*              Copy D(k) to A */
1439
1440                 i__1 = k + k * a_dim1;
1441                 i__2 = k + k * w_dim1;
1442                 a[i__1].r = w[i__2].r, a[i__1].i = w[i__2].i;
1443                 i__1 = k + 1 + k * a_dim1;
1444                 i__2 = k + 1 + k * w_dim1;
1445                 a[i__1].r = w[i__2].r, a[i__1].i = w[i__2].i;
1446                 i__1 = k + 1 + (k + 1) * a_dim1;
1447                 i__2 = k + 1 + (k + 1) * w_dim1;
1448                 a[i__1].r = w[i__2].r, a[i__1].i = w[i__2].i;
1449
1450             }
1451
1452         }
1453
1454 /*        Store details of the interchanges in IPIV */
1455
1456         if (kstep == 1) {
1457             ipiv[k] = kp;
1458         } else {
1459             ipiv[k] = -kp;
1460             ipiv[k + 1] = -kp;
1461         }
1462
1463 /*        Increase K and return to the start of the main loop */
1464
1465         k += kstep;
1466         goto L70;
1467
1468 L90:
1469
1470 /*        Update the lower triangle of A22 (= A(k:n,k:n)) as */
1471
1472 /*        A22 := A22 - L21*D*L21**T = A22 - L21*W**T */
1473
1474 /*        computing blocks of NB columns at a time */
1475
1476         i__1 = *n;
1477         i__2 = *nb;
1478         for (j = k; i__2 < 0 ? j >= i__1 : j <= i__1; j += i__2) {
1479 /* Computing MIN */
1480             i__3 = *nb, i__4 = *n - j + 1;
1481             jb = f2cmin(i__3,i__4);
1482
1483 /*           Update the lower triangle of the diagonal block */
1484
1485             i__3 = j + jb - 1;
1486             for (jj = j; jj <= i__3; ++jj) {
1487                 i__4 = j + jb - jj;
1488                 i__5 = k - 1;
1489                 q__1.r = -1.f, q__1.i = 0.f;
1490                 cgemv_("No transpose", &i__4, &i__5, &q__1, &a[jj + a_dim1], 
1491                         lda, &w[jj + w_dim1], ldw, &c_b1, &a[jj + jj * a_dim1]
1492                         , &c__1);
1493 /* L100: */
1494             }
1495
1496 /*           Update the rectangular subdiagonal block */
1497
1498             if (j + jb <= *n) {
1499                 i__3 = *n - j - jb + 1;
1500                 i__4 = k - 1;
1501                 q__1.r = -1.f, q__1.i = 0.f;
1502                 cgemm_("No transpose", "Transpose", &i__3, &jb, &i__4, &q__1, 
1503                         &a[j + jb + a_dim1], lda, &w[j + w_dim1], ldw, &c_b1, 
1504                         &a[j + jb + j * a_dim1], lda);
1505             }
1506 /* L110: */
1507         }
1508
1509 /*        Put L21 in standard form by partially undoing the interchanges */
1510 /*        of rows in columns 1:k-1 looping backwards from k-1 to 1 */
1511
1512         j = k - 1;
1513 L120:
1514
1515 /*           Undo the interchanges (if any) of rows JJ and JP at each */
1516 /*           step J */
1517
1518 /*           (Here, J is a diagonal index) */
1519         jj = j;
1520         jp = ipiv[j];
1521         if (jp < 0) {
1522             jp = -jp;
1523 /*              (Here, J is a diagonal index) */
1524             --j;
1525         }
1526 /*           (NOTE: Here, J is used to determine row length. Length J */
1527 /*           of the rows to swap back doesn't include diagonal element) */
1528         --j;
1529         if (jp != jj && j >= 1) {
1530             cswap_(&j, &a[jp + a_dim1], lda, &a[jj + a_dim1], lda);
1531         }
1532         if (j > 1) {
1533             goto L120;
1534         }
1535
1536 /*        Set KB to the number of columns factorized */
1537
1538         *kb = k - 1;
1539
1540     }
1541     return 0;
1542
1543 /*     End of CLASYF */
1544
1545 } /* clasyf_ */
1546