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