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