C_LAPACK: Fixes to make it compile with MSVC (#3605)
[platform/upstream/openblas.git] / lapack-netlib / SRC / dlasyf_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]/df(b)._Val[1]);}
195 #else
196 #define c_div(c, a, b) {pCf(c) = Cf(a)/Cf(b);}
197 #define z_div(c, a, b) {pCd(c) = Cd(a)/Cd(b);}
198 #endif
199 #define c_exp(R, Z) {pCf(R) = cexpf(Cf(Z));}
200 #define c_log(R, Z) {pCf(R) = clogf(Cf(Z));}
201 #define c_sin(R, Z) {pCf(R) = csinf(Cf(Z));}
202 //#define c_sqrt(R, Z) {*(R) = csqrtf(Cf(Z));}
203 #define c_sqrt(R, Z) {pCf(R) = csqrtf(Cf(Z));}
204 #define d_abs(x) (fabs(*(x)))
205 #define d_acos(x) (acos(*(x)))
206 #define d_asin(x) (asin(*(x)))
207 #define d_atan(x) (atan(*(x)))
208 #define d_atn2(x, y) (atan2(*(x),*(y)))
209 #define d_cnjg(R, Z) { pCd(R) = conj(Cd(Z)); }
210 #define r_cnjg(R, Z) { pCf(R) = conjf(Cf(Z)); }
211 #define d_cos(x) (cos(*(x)))
212 #define d_cosh(x) (cosh(*(x)))
213 #define d_dim(__a, __b) ( *(__a) > *(__b) ? *(__a) - *(__b) : 0.0 )
214 #define d_exp(x) (exp(*(x)))
215 #define d_imag(z) (cimag(Cd(z)))
216 #define r_imag(z) (cimagf(Cf(z)))
217 #define d_int(__x) (*(__x)>0 ? floor(*(__x)) : -floor(- *(__x)))
218 #define r_int(__x) (*(__x)>0 ? floor(*(__x)) : -floor(- *(__x)))
219 #define d_lg10(x) ( 0.43429448190325182765 * log(*(x)) )
220 #define r_lg10(x) ( 0.43429448190325182765 * log(*(x)) )
221 #define d_log(x) (log(*(x)))
222 #define d_mod(x, y) (fmod(*(x), *(y)))
223 #define u_nint(__x) ((__x)>=0 ? floor((__x) + .5) : -floor(.5 - (__x)))
224 #define d_nint(x) u_nint(*(x))
225 #define u_sign(__a,__b) ((__b) >= 0 ? ((__a) >= 0 ? (__a) : -(__a)) : -((__a) >= 0 ? (__a) : -(__a)))
226 #define d_sign(a,b) u_sign(*(a),*(b))
227 #define r_sign(a,b) u_sign(*(a),*(b))
228 #define d_sin(x) (sin(*(x)))
229 #define d_sinh(x) (sinh(*(x)))
230 #define d_sqrt(x) (sqrt(*(x)))
231 #define d_tan(x) (tan(*(x)))
232 #define d_tanh(x) (tanh(*(x)))
233 #define i_abs(x) abs(*(x))
234 #define i_dnnt(x) ((integer)u_nint(*(x)))
235 #define i_len(s, n) (n)
236 #define i_nint(x) ((integer)u_nint(*(x)))
237 #define i_sign(a,b) ((integer)u_sign((integer)*(a),(integer)*(b)))
238 #define pow_dd(ap, bp) ( pow(*(ap), *(bp)))
239 #define pow_si(B,E) spow_ui(*(B),*(E))
240 #define pow_ri(B,E) spow_ui(*(B),*(E))
241 #define pow_di(B,E) dpow_ui(*(B),*(E))
242 #define pow_zi(p, a, b) {pCd(p) = zpow_ui(Cd(a), *(b));}
243 #define pow_ci(p, a, b) {pCf(p) = cpow_ui(Cf(a), *(b));}
244 #define pow_zz(R,A,B) {pCd(R) = cpow(Cd(A),*(B));}
245 #define s_cat(lpp, rpp, rnp, np, llp) {         ftnlen i, nc, ll; char *f__rp, *lp;     ll = (llp); lp = (lpp);         for(i=0; i < (int)*(np); ++i) {                 nc = ll;                if((rnp)[i] < nc) nc = (rnp)[i];                ll -= nc;               f__rp = (rpp)[i];               while(--nc >= 0) *lp++ = *(f__rp)++;         }  while(--ll >= 0) *lp++ = ' '; }
246 #define s_cmp(a,b,c,d) ((integer)strncmp((a),(b),f2cmin((c),(d))))
247 #define s_copy(A,B,C,D) { int __i,__m; for (__i=0, __m=f2cmin((C),(D)); __i<__m && (B)[__i] != 0; ++__i) (A)[__i] = (B)[__i]; }
248 #define sig_die(s, kill) { exit(1); }
249 #define s_stop(s, n) {exit(0);}
250 static char junk[] = "\n@(#)LIBF77 VERSION 19990503\n";
251 #define z_abs(z) (cabs(Cd(z)))
252 #define z_exp(R, Z) {pCd(R) = cexp(Cd(Z));}
253 #define z_sqrt(R, Z) {pCd(R) = csqrt(Cd(Z));}
254 #define myexit_() break;
255 #define mycycle() continue;
256 #define myceiling(w) {ceil(w)}
257 #define myhuge(w) {HUGE_VAL}
258 //#define mymaxloc_(w,s,e,n) {if (sizeof(*(w)) == sizeof(double)) dmaxloc_((w),*(s),*(e),n); else dmaxloc_((w),*(s),*(e),n);}
259 #define mymaxloc(w,s,e,n) {dmaxloc_(w,*(s),*(e),n)}
260
261 /* procedure parameter types for -A and -C++ */
262
263 #define F2C_proc_par_types 1
264 #ifdef __cplusplus
265 typedef logical (*L_fp)(...);
266 #else
267 typedef logical (*L_fp)();
268 #endif
269
270 static float spow_ui(float x, integer n) {
271         float pow=1.0; unsigned long int u;
272         if(n != 0) {
273                 if(n < 0) n = -n, x = 1/x;
274                 for(u = n; ; ) {
275                         if(u & 01) pow *= x;
276                         if(u >>= 1) x *= x;
277                         else break;
278                 }
279         }
280         return pow;
281 }
282 static double dpow_ui(double x, integer n) {
283         double pow=1.0; unsigned long int u;
284         if(n != 0) {
285                 if(n < 0) n = -n, x = 1/x;
286                 for(u = n; ; ) {
287                         if(u & 01) pow *= x;
288                         if(u >>= 1) x *= x;
289                         else break;
290                 }
291         }
292         return pow;
293 }
294 #ifdef _MSC_VER
295 static _Fcomplex cpow_ui(complex x, integer n) {
296         complex pow={1.0,0.0}; unsigned long int u;
297                 if(n != 0) {
298                 if(n < 0) n = -n, x.r = 1/x.r, x.i=1/x.i;
299                 for(u = n; ; ) {
300                         if(u & 01) pow.r *= x.r, pow.i *= x.i;
301                         if(u >>= 1) x.r *= x.r, x.i *= x.i;
302                         else break;
303                 }
304         }
305         _Fcomplex p={pow.r, pow.i};
306         return p;
307 }
308 #else
309 static _Complex float cpow_ui(_Complex float x, integer n) {
310         _Complex float pow=1.0; unsigned long int u;
311         if(n != 0) {
312                 if(n < 0) n = -n, x = 1/x;
313                 for(u = n; ; ) {
314                         if(u & 01) pow *= x;
315                         if(u >>= 1) x *= x;
316                         else break;
317                 }
318         }
319         return pow;
320 }
321 #endif
322 #ifdef _MSC_VER
323 static _Dcomplex zpow_ui(_Dcomplex x, integer n) {
324         _Dcomplex pow={1.0,0.0}; unsigned long int u;
325         if(n != 0) {
326                 if(n < 0) n = -n, x._Val[0] = 1/x._Val[0], x._Val[1] =1/x._Val[1];
327                 for(u = n; ; ) {
328                         if(u & 01) pow._Val[0] *= x._Val[0], pow._Val[1] *= x._Val[1];
329                         if(u >>= 1) x._Val[0] *= x._Val[0], x._Val[1] *= x._Val[1];
330                         else break;
331                 }
332         }
333         _Dcomplex p = {pow._Val[0], pow._Val[1]};
334         return p;
335 }
336 #else
337 static _Complex double zpow_ui(_Complex double x, integer n) {
338         _Complex double pow=1.0; unsigned long int u;
339         if(n != 0) {
340                 if(n < 0) n = -n, x = 1/x;
341                 for(u = n; ; ) {
342                         if(u & 01) pow *= x;
343                         if(u >>= 1) x *= x;
344                         else break;
345                 }
346         }
347         return pow;
348 }
349 #endif
350 static integer pow_ii(integer x, integer n) {
351         integer pow; unsigned long int u;
352         if (n <= 0) {
353                 if (n == 0 || x == 1) pow = 1;
354                 else if (x != -1) pow = x == 0 ? 1/x : 0;
355                 else n = -n;
356         }
357         if ((n > 0) || !(n == 0 || x == 1 || x != -1)) {
358                 u = n;
359                 for(pow = 1; ; ) {
360                         if(u & 01) pow *= x;
361                         if(u >>= 1) x *= x;
362                         else break;
363                 }
364         }
365         return pow;
366 }
367 static integer dmaxloc_(double *w, integer s, integer e, integer *n)
368 {
369         double m; integer i, mi;
370         for(m=w[s-1], mi=s, i=s+1; i<=e; i++)
371                 if (w[i-1]>m) mi=i ,m=w[i-1];
372         return mi-s+1;
373 }
374 static integer smaxloc_(float *w, integer s, integer e, integer *n)
375 {
376         float m; integer i, mi;
377         for(m=w[s-1], mi=s, i=s+1; i<=e; i++)
378                 if (w[i-1]>m) mi=i ,m=w[i-1];
379         return mi-s+1;
380 }
381 static inline void cdotc_(complex *z, integer *n_, complex *x, integer *incx_, complex *y, integer *incy_) {
382         integer n = *n_, incx = *incx_, incy = *incy_, i;
383 #ifdef _MSC_VER
384         _Fcomplex zdotc = {0.0, 0.0};
385         if (incx == 1 && incy == 1) {
386                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
387                         zdotc._Val[0] += conjf(Cf(&x[i]))._Val[0] * Cf(&y[i])._Val[0];
388                         zdotc._Val[1] += conjf(Cf(&x[i]))._Val[1] * Cf(&y[i])._Val[1];
389                 }
390         } else {
391                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
392                         zdotc._Val[0] += conjf(Cf(&x[i*incx]))._Val[0] * Cf(&y[i*incy])._Val[0];
393                         zdotc._Val[1] += conjf(Cf(&x[i*incx]))._Val[1] * Cf(&y[i*incy])._Val[1];
394                 }
395         }
396         pCf(z) = zdotc;
397 }
398 #else
399         _Complex float zdotc = 0.0;
400         if (incx == 1 && incy == 1) {
401                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
402                         zdotc += conjf(Cf(&x[i])) * Cf(&y[i]);
403                 }
404         } else {
405                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
406                         zdotc += conjf(Cf(&x[i*incx])) * Cf(&y[i*incy]);
407                 }
408         }
409         pCf(z) = zdotc;
410 }
411 #endif
412 static inline void zdotc_(doublecomplex *z, integer *n_, doublecomplex *x, integer *incx_, doublecomplex *y, integer *incy_) {
413         integer n = *n_, incx = *incx_, incy = *incy_, i;
414 #ifdef _MSC_VER
415         _Dcomplex zdotc = {0.0, 0.0};
416         if (incx == 1 && incy == 1) {
417                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
418                         zdotc._Val[0] += conj(Cd(&x[i]))._Val[0] * Cd(&y[i])._Val[0];
419                         zdotc._Val[1] += conj(Cd(&x[i]))._Val[1] * Cd(&y[i])._Val[1];
420                 }
421         } else {
422                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
423                         zdotc._Val[0] += conj(Cd(&x[i*incx]))._Val[0] * Cd(&y[i*incy])._Val[0];
424                         zdotc._Val[1] += conj(Cd(&x[i*incx]))._Val[1] * Cd(&y[i*incy])._Val[1];
425                 }
426         }
427         pCd(z) = zdotc;
428 }
429 #else
430         _Complex double zdotc = 0.0;
431         if (incx == 1 && incy == 1) {
432                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
433                         zdotc += conj(Cd(&x[i])) * Cd(&y[i]);
434                 }
435         } else {
436                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
437                         zdotc += conj(Cd(&x[i*incx])) * Cd(&y[i*incy]);
438                 }
439         }
440         pCd(z) = zdotc;
441 }
442 #endif  
443 static inline void cdotu_(complex *z, integer *n_, complex *x, integer *incx_, complex *y, integer *incy_) {
444         integer n = *n_, incx = *incx_, incy = *incy_, i;
445 #ifdef _MSC_VER
446         _Fcomplex zdotc = {0.0, 0.0};
447         if (incx == 1 && incy == 1) {
448                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
449                         zdotc._Val[0] += Cf(&x[i])._Val[0] * Cf(&y[i])._Val[0];
450                         zdotc._Val[1] += Cf(&x[i])._Val[1] * Cf(&y[i])._Val[1];
451                 }
452         } else {
453                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
454                         zdotc._Val[0] += Cf(&x[i*incx])._Val[0] * Cf(&y[i*incy])._Val[0];
455                         zdotc._Val[1] += Cf(&x[i*incx])._Val[1] * Cf(&y[i*incy])._Val[1];
456                 }
457         }
458         pCf(z) = zdotc;
459 }
460 #else
461         _Complex float zdotc = 0.0;
462         if (incx == 1 && incy == 1) {
463                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
464                         zdotc += Cf(&x[i]) * Cf(&y[i]);
465                 }
466         } else {
467                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
468                         zdotc += Cf(&x[i*incx]) * Cf(&y[i*incy]);
469                 }
470         }
471         pCf(z) = zdotc;
472 }
473 #endif
474 static inline void zdotu_(doublecomplex *z, integer *n_, doublecomplex *x, integer *incx_, doublecomplex *y, integer *incy_) {
475         integer n = *n_, incx = *incx_, incy = *incy_, i;
476 #ifdef _MSC_VER
477         _Dcomplex zdotc = {0.0, 0.0};
478         if (incx == 1 && incy == 1) {
479                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
480                         zdotc._Val[0] += Cd(&x[i])._Val[0] * Cd(&y[i])._Val[0];
481                         zdotc._Val[1] += Cd(&x[i])._Val[1] * Cd(&y[i])._Val[1];
482                 }
483         } else {
484                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
485                         zdotc._Val[0] += Cd(&x[i*incx])._Val[0] * Cd(&y[i*incy])._Val[0];
486                         zdotc._Val[1] += Cd(&x[i*incx])._Val[1] * Cd(&y[i*incy])._Val[1];
487                 }
488         }
489         pCd(z) = zdotc;
490 }
491 #else
492         _Complex double zdotc = 0.0;
493         if (incx == 1 && incy == 1) {
494                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
495                         zdotc += Cd(&x[i]) * Cd(&y[i]);
496                 }
497         } else {
498                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
499                         zdotc += Cd(&x[i*incx]) * Cd(&y[i*incy]);
500                 }
501         }
502         pCd(z) = zdotc;
503 }
504 #endif
505 /*  -- translated by f2c (version 20000121).
506    You must link the resulting object file with the libraries:
507         -lf2c -lm   (in that order)
508 */
509
510
511
512
513 /* Table of constant values */
514
515 static integer c__1 = 1;
516 static doublereal c_b9 = -1.;
517 static doublereal c_b10 = 1.;
518
519 /* > \brief \b DLASYF_RK computes a partial factorization of a real symmetric indefinite matrix using bounded 
520 Bunch-Kaufman (rook) diagonal pivoting method. */
521
522 /*  =========== DOCUMENTATION =========== */
523
524 /* Online html documentation available at */
525 /*            http://www.netlib.org/lapack/explore-html/ */
526
527 /* > \htmlonly */
528 /* > Download DLASYF_RK + dependencies */
529 /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/dlasyf_
530 rk.f"> */
531 /* > [TGZ]</a> */
532 /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/dlasyf_
533 rk.f"> */
534 /* > [ZIP]</a> */
535 /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/dlasyf_
536 rk.f"> */
537 /* > [TXT]</a> */
538 /* > \endhtmlonly */
539
540 /*  Definition: */
541 /*  =========== */
542
543 /*       SUBROUTINE DLASYF_RK( UPLO, N, NB, KB, A, LDA, E, IPIV, W, LDW, */
544 /*                             INFO ) */
545
546 /*       CHARACTER          UPLO */
547 /*       INTEGER            INFO, KB, LDA, LDW, N, NB */
548 /*       INTEGER            IPIV( * ) */
549 /*       DOUBLE PRECISION   A( LDA, * ), E( * ), W( LDW, * ) */
550
551
552 /* > \par Purpose: */
553 /*  ============= */
554 /* > */
555 /* > \verbatim */
556 /* > DLASYF_RK computes a partial factorization of a real symmetric */
557 /* > matrix A using the bounded Bunch-Kaufman (rook) diagonal */
558 /* > pivoting method. The partial factorization has the form: */
559 /* > */
560 /* > A  =  ( I  U12 ) ( A11  0  ) (  I       0    )  if UPLO = 'U', or: */
561 /* >       ( 0  U22 ) (  0   D  ) ( U12**T U22**T ) */
562 /* > */
563 /* > A  =  ( L11  0 ) (  D   0  ) ( L11**T L21**T )  if UPLO = 'L', */
564 /* >       ( L21  I ) (  0  A22 ) (  0       I    ) */
565 /* > */
566 /* > where the order of D is at most NB. The actual order is returned in */
567 /* > the argument KB, and is either NB or NB-1, or N if N <= NB. */
568 /* > */
569 /* > DLASYF_RK is an auxiliary routine called by DSYTRF_RK. It uses */
570 /* > blocked code (calling Level 3 BLAS) to update the submatrix */
571 /* > A11 (if UPLO = 'U') or A22 (if UPLO = 'L'). */
572 /* > \endverbatim */
573
574 /*  Arguments: */
575 /*  ========== */
576
577 /* > \param[in] UPLO */
578 /* > \verbatim */
579 /* >          UPLO is CHARACTER*1 */
580 /* >          Specifies whether the upper or lower triangular part of the */
581 /* >          symmetric matrix A is stored: */
582 /* >          = 'U':  Upper triangular */
583 /* >          = 'L':  Lower triangular */
584 /* > \endverbatim */
585 /* > */
586 /* > \param[in] N */
587 /* > \verbatim */
588 /* >          N is INTEGER */
589 /* >          The order of the matrix A.  N >= 0. */
590 /* > \endverbatim */
591 /* > */
592 /* > \param[in] NB */
593 /* > \verbatim */
594 /* >          NB is INTEGER */
595 /* >          The maximum number of columns of the matrix A that should be */
596 /* >          factored.  NB should be at least 2 to allow for 2-by-2 pivot */
597 /* >          blocks. */
598 /* > \endverbatim */
599 /* > */
600 /* > \param[out] KB */
601 /* > \verbatim */
602 /* >          KB is INTEGER */
603 /* >          The number of columns of A that were actually factored. */
604 /* >          KB is either NB-1 or NB, or N if N <= NB. */
605 /* > \endverbatim */
606 /* > */
607 /* > \param[in,out] A */
608 /* > \verbatim */
609 /* >          A is DOUBLE PRECISION array, dimension (LDA,N) */
610 /* >          On entry, the symmetric matrix A. */
611 /* >            If UPLO = 'U': the leading N-by-N upper triangular part */
612 /* >            of A contains the upper triangular part of the matrix A, */
613 /* >            and the strictly lower triangular part of A is not */
614 /* >            referenced. */
615 /* > */
616 /* >            If UPLO = 'L': the leading N-by-N lower triangular part */
617 /* >            of A contains the lower triangular part of the matrix A, */
618 /* >            and the strictly upper triangular part of A is not */
619 /* >            referenced. */
620 /* > */
621 /* >          On exit, contains: */
622 /* >            a) ONLY diagonal elements of the symmetric block diagonal */
623 /* >               matrix D on the diagonal of A, i.e. D(k,k) = A(k,k); */
624 /* >               (superdiagonal (or subdiagonal) elements of D */
625 /* >                are stored on exit in array E), and */
626 /* >            b) If UPLO = 'U': factor U in the superdiagonal part of A. */
627 /* >               If UPLO = 'L': factor L in the subdiagonal part of A. */
628 /* > \endverbatim */
629 /* > */
630 /* > \param[in] LDA */
631 /* > \verbatim */
632 /* >          LDA is INTEGER */
633 /* >          The leading dimension of the array A.  LDA >= f2cmax(1,N). */
634 /* > \endverbatim */
635 /* > */
636 /* > \param[out] E */
637 /* > \verbatim */
638 /* >          E is DOUBLE PRECISION array, dimension (N) */
639 /* >          On exit, contains the superdiagonal (or subdiagonal) */
640 /* >          elements of the symmetric block diagonal matrix D */
641 /* >          with 1-by-1 or 2-by-2 diagonal blocks, where */
642 /* >          If UPLO = 'U': E(i) = D(i-1,i), i=2:N, E(1) is set to 0; */
643 /* >          If UPLO = 'L': E(i) = D(i+1,i), i=1:N-1, E(N) is set to 0. */
644 /* > */
645 /* >          NOTE: For 1-by-1 diagonal block D(k), where */
646 /* >          1 <= k <= N, the element E(k) is set to 0 in both */
647 /* >          UPLO = 'U' or UPLO = 'L' cases. */
648 /* > \endverbatim */
649 /* > */
650 /* > \param[out] IPIV */
651 /* > \verbatim */
652 /* >          IPIV is INTEGER array, dimension (N) */
653 /* >          IPIV describes the permutation matrix P in the factorization */
654 /* >          of matrix A as follows. The absolute value of IPIV(k) */
655 /* >          represents the index of row and column that were */
656 /* >          interchanged with the k-th row and column. The value of UPLO */
657 /* >          describes the order in which the interchanges were applied. */
658 /* >          Also, the sign of IPIV represents the block structure of */
659 /* >          the symmetric block diagonal matrix D with 1-by-1 or 2-by-2 */
660 /* >          diagonal blocks which correspond to 1 or 2 interchanges */
661 /* >          at each factorization step. */
662 /* > */
663 /* >          If UPLO = 'U', */
664 /* >          ( in factorization order, k decreases from N to 1 ): */
665 /* >            a) A single positive entry IPIV(k) > 0 means: */
666 /* >               D(k,k) is a 1-by-1 diagonal block. */
667 /* >               If IPIV(k) != k, rows and columns k and IPIV(k) were */
668 /* >               interchanged in the submatrix A(1:N,N-KB+1:N); */
669 /* >               If IPIV(k) = k, no interchange occurred. */
670 /* > */
671 /* > */
672 /* >            b) A pair of consecutive negative entries */
673 /* >               IPIV(k) < 0 and IPIV(k-1) < 0 means: */
674 /* >               D(k-1:k,k-1:k) is a 2-by-2 diagonal block. */
675 /* >               (NOTE: negative entries in IPIV appear ONLY in pairs). */
676 /* >               1) If -IPIV(k) != k, rows and columns */
677 /* >                  k and -IPIV(k) were interchanged */
678 /* >                  in the matrix A(1:N,N-KB+1:N). */
679 /* >                  If -IPIV(k) = k, no interchange occurred. */
680 /* >               2) If -IPIV(k-1) != k-1, rows and columns */
681 /* >                  k-1 and -IPIV(k-1) were interchanged */
682 /* >                  in the submatrix A(1:N,N-KB+1:N). */
683 /* >                  If -IPIV(k-1) = k-1, no interchange occurred. */
684 /* > */
685 /* >            c) In both cases a) and b) is always ABS( IPIV(k) ) <= k. */
686 /* > */
687 /* >            d) NOTE: Any entry IPIV(k) is always NONZERO on output. */
688 /* > */
689 /* >          If UPLO = 'L', */
690 /* >          ( in factorization order, k increases from 1 to N ): */
691 /* >            a) A single positive entry IPIV(k) > 0 means: */
692 /* >               D(k,k) is a 1-by-1 diagonal block. */
693 /* >               If IPIV(k) != k, rows and columns k and IPIV(k) were */
694 /* >               interchanged in the submatrix A(1:N,1:KB). */
695 /* >               If IPIV(k) = k, no interchange occurred. */
696 /* > */
697 /* >            b) A pair of consecutive negative entries */
698 /* >               IPIV(k) < 0 and IPIV(k+1) < 0 means: */
699 /* >               D(k:k+1,k:k+1) is a 2-by-2 diagonal block. */
700 /* >               (NOTE: negative entries in IPIV appear ONLY in pairs). */
701 /* >               1) If -IPIV(k) != k, rows and columns */
702 /* >                  k and -IPIV(k) were interchanged */
703 /* >                  in the submatrix A(1:N,1:KB). */
704 /* >                  If -IPIV(k) = k, no interchange occurred. */
705 /* >               2) If -IPIV(k+1) != k+1, rows and columns */
706 /* >                  k-1 and -IPIV(k-1) were interchanged */
707 /* >                  in the submatrix A(1:N,1:KB). */
708 /* >                  If -IPIV(k+1) = k+1, no interchange occurred. */
709 /* > */
710 /* >            c) In both cases a) and b) is always ABS( IPIV(k) ) >= k. */
711 /* > */
712 /* >            d) NOTE: Any entry IPIV(k) is always NONZERO on output. */
713 /* > \endverbatim */
714 /* > */
715 /* > \param[out] W */
716 /* > \verbatim */
717 /* >          W is DOUBLE PRECISION array, dimension (LDW,NB) */
718 /* > \endverbatim */
719 /* > */
720 /* > \param[in] LDW */
721 /* > \verbatim */
722 /* >          LDW is INTEGER */
723 /* >          The leading dimension of the array W.  LDW >= f2cmax(1,N). */
724 /* > \endverbatim */
725 /* > */
726 /* > \param[out] INFO */
727 /* > \verbatim */
728 /* >          INFO is INTEGER */
729 /* >          = 0: successful exit */
730 /* > */
731 /* >          < 0: If INFO = -k, the k-th argument had an illegal value */
732 /* > */
733 /* >          > 0: If INFO = k, the matrix A is singular, because: */
734 /* >                 If UPLO = 'U': column k in the upper */
735 /* >                 triangular part of A contains all zeros. */
736 /* >                 If UPLO = 'L': column k in the lower */
737 /* >                 triangular part of A contains all zeros. */
738 /* > */
739 /* >               Therefore D(k,k) is exactly zero, and superdiagonal */
740 /* >               elements of column k of U (or subdiagonal elements of */
741 /* >               column k of L ) are all zeros. The factorization has */
742 /* >               been completed, but the block diagonal matrix D is */
743 /* >               exactly singular, and division by zero will occur if */
744 /* >               it is used to solve a system of equations. */
745 /* > */
746 /* >               NOTE: INFO only stores the first occurrence of */
747 /* >               a singularity, any subsequent occurrence of singularity */
748 /* >               is not stored in INFO even though the factorization */
749 /* >               always completes. */
750 /* > \endverbatim */
751
752 /*  Authors: */
753 /*  ======== */
754
755 /* > \author Univ. of Tennessee */
756 /* > \author Univ. of California Berkeley */
757 /* > \author Univ. of Colorado Denver */
758 /* > \author NAG Ltd. */
759
760 /* > \date December 2016 */
761
762 /* > \ingroup doubleSYcomputational */
763
764 /* > \par Contributors: */
765 /*  ================== */
766 /* > */
767 /* > \verbatim */
768 /* > */
769 /* >  December 2016,  Igor Kozachenko, */
770 /* >                  Computer Science Division, */
771 /* >                  University of California, Berkeley */
772 /* > */
773 /* >  September 2007, Sven Hammarling, Nicholas J. Higham, Craig Lucas, */
774 /* >                  School of Mathematics, */
775 /* >                  University of Manchester */
776 /* > */
777 /* > \endverbatim */
778
779 /*  ===================================================================== */
780 /* Subroutine */ int dlasyf_rk_(char *uplo, integer *n, integer *nb, integer 
781         *kb, doublereal *a, integer *lda, doublereal *e, integer *ipiv, 
782         doublereal *w, integer *ldw, integer *info)
783 {
784     /* System generated locals */
785     integer a_dim1, a_offset, w_dim1, w_offset, i__1, i__2, i__3, i__4, i__5;
786     doublereal d__1;
787
788     /* Local variables */
789     logical done;
790     integer imax, jmax, j, k, p;
791     doublereal t, alpha;
792     extern /* Subroutine */ int dscal_(integer *, doublereal *, doublereal *, 
793             integer *), dgemm_(char *, char *, integer *, integer *, integer *
794             , doublereal *, doublereal *, integer *, doublereal *, integer *, 
795             doublereal *, doublereal *, integer *);
796     extern logical lsame_(char *, char *);
797     extern /* Subroutine */ int dgemv_(char *, integer *, integer *, 
798             doublereal *, doublereal *, integer *, doublereal *, integer *, 
799             doublereal *, doublereal *, integer *);
800     doublereal dtemp, sfmin;
801     integer itemp;
802     extern /* Subroutine */ int dcopy_(integer *, doublereal *, integer *, 
803             doublereal *, integer *), dswap_(integer *, doublereal *, integer 
804             *, doublereal *, integer *);
805     integer kstep;
806     doublereal r1, d11, d12, d21, d22;
807     integer jb, ii, jj, kk;
808     extern doublereal dlamch_(char *);
809     integer kp;
810     doublereal absakk;
811     integer kw;
812     extern integer idamax_(integer *, doublereal *, integer *);
813     doublereal colmax, rowmax;
814     integer kkw;
815
816
817 /*  -- LAPACK computational routine (version 3.7.0) -- */
818 /*  -- LAPACK is a software package provided by Univ. of Tennessee,    -- */
819 /*  -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- */
820 /*     December 2016 */
821
822
823 /*  ===================================================================== */
824
825
826     /* Parameter adjustments */
827     a_dim1 = *lda;
828     a_offset = 1 + a_dim1 * 1;
829     a -= a_offset;
830     --e;
831     --ipiv;
832     w_dim1 = *ldw;
833     w_offset = 1 + w_dim1 * 1;
834     w -= w_offset;
835
836     /* Function Body */
837     *info = 0;
838
839 /*     Initialize ALPHA for use in choosing pivot block size. */
840
841     alpha = (sqrt(17.) + 1.) / 8.;
842
843 /*     Compute machine safe minimum */
844
845     sfmin = dlamch_("S");
846
847     if (lsame_(uplo, "U")) {
848
849 /*        Factorize the trailing columns of A using the upper triangle */
850 /*        of A and working backwards, and compute the matrix W = U12*D */
851 /*        for use in updating A11 */
852
853 /*        Initialize the first entry of array E, where superdiagonal */
854 /*        elements of D are stored */
855
856         e[1] = 0.;
857
858 /*        K is the main loop index, decreasing from N in steps of 1 or 2 */
859
860         k = *n;
861 L10:
862
863 /*        KW is the column of W which corresponds to column K of A */
864
865         kw = *nb + k - *n;
866
867 /*        Exit from loop */
868
869         if (k <= *n - *nb + 1 && *nb < *n || k < 1) {
870             goto L30;
871         }
872
873         kstep = 1;
874         p = k;
875
876 /*        Copy column K of A to column KW of W and update it */
877
878         dcopy_(&k, &a[k * a_dim1 + 1], &c__1, &w[kw * w_dim1 + 1], &c__1);
879         if (k < *n) {
880             i__1 = *n - k;
881             dgemv_("No transpose", &k, &i__1, &c_b9, &a[(k + 1) * a_dim1 + 1],
882                      lda, &w[k + (kw + 1) * w_dim1], ldw, &c_b10, &w[kw * 
883                     w_dim1 + 1], &c__1);
884         }
885
886 /*        Determine rows and columns to be interchanged and whether */
887 /*        a 1-by-1 or 2-by-2 pivot block will be used */
888
889         absakk = (d__1 = w[k + kw * w_dim1], abs(d__1));
890
891 /*        IMAX is the row-index of the largest off-diagonal element in */
892 /*        column K, and COLMAX is its absolute value. */
893 /*        Determine both COLMAX and IMAX. */
894
895         if (k > 1) {
896             i__1 = k - 1;
897             imax = idamax_(&i__1, &w[kw * w_dim1 + 1], &c__1);
898             colmax = (d__1 = w[imax + kw * w_dim1], abs(d__1));
899         } else {
900             colmax = 0.;
901         }
902
903         if (f2cmax(absakk,colmax) == 0.) {
904
905 /*           Column K is zero or underflow: set INFO and continue */
906
907             if (*info == 0) {
908                 *info = k;
909             }
910             kp = k;
911             dcopy_(&k, &w[kw * w_dim1 + 1], &c__1, &a[k * a_dim1 + 1], &c__1);
912
913 /*           Set E( K ) to zero */
914
915             if (k > 1) {
916                 e[k] = 0.;
917             }
918
919         } else {
920
921 /*           ============================================================ */
922
923 /*           Test for interchange */
924
925 /*           Equivalent to testing for ABSAKK.GE.ALPHA*COLMAX */
926 /*           (used to handle NaN and Inf) */
927
928             if (! (absakk < alpha * colmax)) {
929
930 /*              no interchange, use 1-by-1 pivot block */
931
932                 kp = k;
933
934             } else {
935
936                 done = FALSE_;
937
938 /*              Loop until pivot found */
939
940 L12:
941
942 /*                 Begin pivot search loop body */
943
944
945 /*                 Copy column IMAX to column KW-1 of W and update it */
946
947                 dcopy_(&imax, &a[imax * a_dim1 + 1], &c__1, &w[(kw - 1) * 
948                         w_dim1 + 1], &c__1);
949                 i__1 = k - imax;
950                 dcopy_(&i__1, &a[imax + (imax + 1) * a_dim1], lda, &w[imax + 
951                         1 + (kw - 1) * w_dim1], &c__1);
952
953                 if (k < *n) {
954                     i__1 = *n - k;
955                     dgemv_("No transpose", &k, &i__1, &c_b9, &a[(k + 1) * 
956                             a_dim1 + 1], lda, &w[imax + (kw + 1) * w_dim1], 
957                             ldw, &c_b10, &w[(kw - 1) * w_dim1 + 1], &c__1);
958                 }
959
960 /*                 JMAX is the column-index of the largest off-diagonal */
961 /*                 element in row IMAX, and ROWMAX is its absolute value. */
962 /*                 Determine both ROWMAX and JMAX. */
963
964                 if (imax != k) {
965                     i__1 = k - imax;
966                     jmax = imax + idamax_(&i__1, &w[imax + 1 + (kw - 1) * 
967                             w_dim1], &c__1);
968                     rowmax = (d__1 = w[jmax + (kw - 1) * w_dim1], abs(d__1));
969                 } else {
970                     rowmax = 0.;
971                 }
972
973                 if (imax > 1) {
974                     i__1 = imax - 1;
975                     itemp = idamax_(&i__1, &w[(kw - 1) * w_dim1 + 1], &c__1);
976                     dtemp = (d__1 = w[itemp + (kw - 1) * w_dim1], abs(d__1));
977                     if (dtemp > rowmax) {
978                         rowmax = dtemp;
979                         jmax = itemp;
980                     }
981                 }
982
983 /*                 Equivalent to testing for */
984 /*                 ABS( W( IMAX, KW-1 ) ).GE.ALPHA*ROWMAX */
985 /*                 (used to handle NaN and Inf) */
986
987                 if (! ((d__1 = w[imax + (kw - 1) * w_dim1], abs(d__1)) < 
988                         alpha * rowmax)) {
989
990 /*                    interchange rows and columns K and IMAX, */
991 /*                    use 1-by-1 pivot block */
992
993                     kp = imax;
994
995 /*                    copy column KW-1 of W to column KW of W */
996
997                     dcopy_(&k, &w[(kw - 1) * w_dim1 + 1], &c__1, &w[kw * 
998                             w_dim1 + 1], &c__1);
999
1000                     done = TRUE_;
1001
1002 /*                 Equivalent to testing for ROWMAX.EQ.COLMAX, */
1003 /*                 (used to handle NaN and Inf) */
1004
1005                 } else if (p == jmax || rowmax <= colmax) {
1006
1007 /*                    interchange rows and columns K-1 and IMAX, */
1008 /*                    use 2-by-2 pivot block */
1009
1010                     kp = imax;
1011                     kstep = 2;
1012                     done = TRUE_;
1013                 } else {
1014
1015 /*                    Pivot not found: set params and repeat */
1016
1017                     p = imax;
1018                     colmax = rowmax;
1019                     imax = jmax;
1020
1021 /*                    Copy updated JMAXth (next IMAXth) column to Kth of W */
1022
1023                     dcopy_(&k, &w[(kw - 1) * w_dim1 + 1], &c__1, &w[kw * 
1024                             w_dim1 + 1], &c__1);
1025
1026                 }
1027
1028 /*                 End pivot search loop body */
1029
1030                 if (! done) {
1031                     goto L12;
1032                 }
1033
1034             }
1035
1036 /*           ============================================================ */
1037
1038             kk = k - kstep + 1;
1039
1040 /*           KKW is the column of W which corresponds to column KK of A */
1041
1042             kkw = *nb + kk - *n;
1043
1044             if (kstep == 2 && p != k) {
1045
1046 /*              Copy non-updated column K to column P */
1047
1048                 i__1 = k - p;
1049                 dcopy_(&i__1, &a[p + 1 + k * a_dim1], &c__1, &a[p + (p + 1) * 
1050                         a_dim1], lda);
1051                 dcopy_(&p, &a[k * a_dim1 + 1], &c__1, &a[p * a_dim1 + 1], &
1052                         c__1);
1053
1054 /*              Interchange rows K and P in last N-K+1 columns of A */
1055 /*              and last N-K+2 columns of W */
1056
1057                 i__1 = *n - k + 1;
1058                 dswap_(&i__1, &a[k + k * a_dim1], lda, &a[p + k * a_dim1], 
1059                         lda);
1060                 i__1 = *n - kk + 1;
1061                 dswap_(&i__1, &w[k + kkw * w_dim1], ldw, &w[p + kkw * w_dim1],
1062                          ldw);
1063             }
1064
1065 /*           Updated column KP is already stored in column KKW of W */
1066
1067             if (kp != kk) {
1068
1069 /*              Copy non-updated column KK to column KP */
1070
1071                 a[kp + k * a_dim1] = a[kk + k * a_dim1];
1072                 i__1 = k - 1 - kp;
1073                 dcopy_(&i__1, &a[kp + 1 + kk * a_dim1], &c__1, &a[kp + (kp + 
1074                         1) * a_dim1], lda);
1075                 dcopy_(&kp, &a[kk * a_dim1 + 1], &c__1, &a[kp * a_dim1 + 1], &
1076                         c__1);
1077
1078 /*              Interchange rows KK and KP in last N-KK+1 columns */
1079 /*              of A and W */
1080
1081                 i__1 = *n - kk + 1;
1082                 dswap_(&i__1, &a[kk + kk * a_dim1], lda, &a[kp + kk * a_dim1],
1083                          lda);
1084                 i__1 = *n - kk + 1;
1085                 dswap_(&i__1, &w[kk + kkw * w_dim1], ldw, &w[kp + kkw * 
1086                         w_dim1], ldw);
1087             }
1088
1089             if (kstep == 1) {
1090
1091 /*              1-by-1 pivot block D(k): column KW of W now holds */
1092
1093 /*              W(k) = U(k)*D(k) */
1094
1095 /*              where U(k) is the k-th column of U */
1096
1097 /*              Store U(k) in column k of A */
1098
1099                 dcopy_(&k, &w[kw * w_dim1 + 1], &c__1, &a[k * a_dim1 + 1], &
1100                         c__1);
1101                 if (k > 1) {
1102                     if ((d__1 = a[k + k * a_dim1], abs(d__1)) >= sfmin) {
1103                         r1 = 1. / a[k + k * a_dim1];
1104                         i__1 = k - 1;
1105                         dscal_(&i__1, &r1, &a[k * a_dim1 + 1], &c__1);
1106                     } else if (a[k + k * a_dim1] != 0.) {
1107                         i__1 = k - 1;
1108                         for (ii = 1; ii <= i__1; ++ii) {
1109                             a[ii + k * a_dim1] /= a[k + k * a_dim1];
1110 /* L14: */
1111                         }
1112                     }
1113
1114 /*                 Store the superdiagonal element of D in array E */
1115
1116                     e[k] = 0.;
1117
1118                 }
1119
1120             } else {
1121
1122 /*              2-by-2 pivot block D(k): columns KW and KW-1 of W now */
1123 /*              hold */
1124
1125 /*              ( W(k-1) W(k) ) = ( U(k-1) U(k) )*D(k) */
1126
1127 /*              where U(k) and U(k-1) are the k-th and (k-1)-th columns */
1128 /*              of U */
1129
1130                 if (k > 2) {
1131
1132 /*                 Store U(k) and U(k-1) in columns k and k-1 of A */
1133
1134                     d12 = w[k - 1 + kw * w_dim1];
1135                     d11 = w[k + kw * w_dim1] / d12;
1136                     d22 = w[k - 1 + (kw - 1) * w_dim1] / d12;
1137                     t = 1. / (d11 * d22 - 1.);
1138                     i__1 = k - 2;
1139                     for (j = 1; j <= i__1; ++j) {
1140                         a[j + (k - 1) * a_dim1] = t * ((d11 * w[j + (kw - 1) *
1141                                  w_dim1] - w[j + kw * w_dim1]) / d12);
1142                         a[j + k * a_dim1] = t * ((d22 * w[j + kw * w_dim1] - 
1143                                 w[j + (kw - 1) * w_dim1]) / d12);
1144 /* L20: */
1145                     }
1146                 }
1147
1148 /*              Copy diagonal elements of D(K) to A, */
1149 /*              copy superdiagonal element of D(K) to E(K) and */
1150 /*              ZERO out superdiagonal entry of A */
1151
1152                 a[k - 1 + (k - 1) * a_dim1] = w[k - 1 + (kw - 1) * w_dim1];
1153                 a[k - 1 + k * a_dim1] = 0.;
1154                 a[k + k * a_dim1] = w[k + kw * w_dim1];
1155                 e[k] = w[k - 1 + kw * w_dim1];
1156                 e[k - 1] = 0.;
1157
1158             }
1159
1160 /*           End column K is nonsingular */
1161
1162         }
1163
1164 /*        Store details of the interchanges in IPIV */
1165
1166         if (kstep == 1) {
1167             ipiv[k] = kp;
1168         } else {
1169             ipiv[k] = -p;
1170             ipiv[k - 1] = -kp;
1171         }
1172
1173 /*        Decrease K and return to the start of the main loop */
1174
1175         k -= kstep;
1176         goto L10;
1177
1178 L30:
1179
1180 /*        Update the upper triangle of A11 (= A(1:k,1:k)) as */
1181
1182 /*        A11 := A11 - U12*D*U12**T = A11 - U12*W**T */
1183
1184 /*        computing blocks of NB columns at a time */
1185
1186         i__1 = -(*nb);
1187         for (j = (k - 1) / *nb * *nb + 1; i__1 < 0 ? j >= 1 : j <= 1; j += 
1188                 i__1) {
1189 /* Computing MIN */
1190             i__2 = *nb, i__3 = k - j + 1;
1191             jb = f2cmin(i__2,i__3);
1192
1193 /*           Update the upper triangle of the diagonal block */
1194
1195             i__2 = j + jb - 1;
1196             for (jj = j; jj <= i__2; ++jj) {
1197                 i__3 = jj - j + 1;
1198                 i__4 = *n - k;
1199                 dgemv_("No transpose", &i__3, &i__4, &c_b9, &a[j + (k + 1) * 
1200                         a_dim1], lda, &w[jj + (kw + 1) * w_dim1], ldw, &c_b10,
1201                          &a[j + jj * a_dim1], &c__1);
1202 /* L40: */
1203             }
1204
1205 /*           Update the rectangular superdiagonal block */
1206
1207             if (j >= 2) {
1208                 i__2 = j - 1;
1209                 i__3 = *n - k;
1210                 dgemm_("No transpose", "Transpose", &i__2, &jb, &i__3, &c_b9, 
1211                         &a[(k + 1) * a_dim1 + 1], lda, &w[j + (kw + 1) * 
1212                         w_dim1], ldw, &c_b10, &a[j * a_dim1 + 1], lda);
1213             }
1214 /* L50: */
1215         }
1216
1217 /*        Set KB to the number of columns factorized */
1218
1219         *kb = *n - k;
1220
1221     } else {
1222
1223 /*        Factorize the leading columns of A using the lower triangle */
1224 /*        of A and working forwards, and compute the matrix W = L21*D */
1225 /*        for use in updating A22 */
1226
1227 /*        Initialize the unused last entry of the subdiagonal array E. */
1228
1229         e[*n] = 0.;
1230
1231 /*        K is the main loop index, increasing from 1 in steps of 1 or 2 */
1232
1233         k = 1;
1234 L70:
1235
1236 /*        Exit from loop */
1237
1238         if (k >= *nb && *nb < *n || k > *n) {
1239             goto L90;
1240         }
1241
1242         kstep = 1;
1243         p = k;
1244
1245 /*        Copy column K of A to column K of W and update it */
1246
1247         i__1 = *n - k + 1;
1248         dcopy_(&i__1, &a[k + k * a_dim1], &c__1, &w[k + k * w_dim1], &c__1);
1249         if (k > 1) {
1250             i__1 = *n - k + 1;
1251             i__2 = k - 1;
1252             dgemv_("No transpose", &i__1, &i__2, &c_b9, &a[k + a_dim1], lda, &
1253                     w[k + w_dim1], ldw, &c_b10, &w[k + k * w_dim1], &c__1);
1254         }
1255
1256 /*        Determine rows and columns to be interchanged and whether */
1257 /*        a 1-by-1 or 2-by-2 pivot block will be used */
1258
1259         absakk = (d__1 = w[k + k * w_dim1], abs(d__1));
1260
1261 /*        IMAX is the row-index of the largest off-diagonal element in */
1262 /*        column K, and COLMAX is its absolute value. */
1263 /*        Determine both COLMAX and IMAX. */
1264
1265         if (k < *n) {
1266             i__1 = *n - k;
1267             imax = k + idamax_(&i__1, &w[k + 1 + k * w_dim1], &c__1);
1268             colmax = (d__1 = w[imax + k * w_dim1], abs(d__1));
1269         } else {
1270             colmax = 0.;
1271         }
1272
1273         if (f2cmax(absakk,colmax) == 0.) {
1274
1275 /*           Column K is zero or underflow: set INFO and continue */
1276
1277             if (*info == 0) {
1278                 *info = k;
1279             }
1280             kp = k;
1281             i__1 = *n - k + 1;
1282             dcopy_(&i__1, &w[k + k * w_dim1], &c__1, &a[k + k * a_dim1], &
1283                     c__1);
1284
1285 /*           Set E( K ) to zero */
1286
1287             if (k < *n) {
1288                 e[k] = 0.;
1289             }
1290
1291         } else {
1292
1293 /*           ============================================================ */
1294
1295 /*           Test for interchange */
1296
1297 /*           Equivalent to testing for ABSAKK.GE.ALPHA*COLMAX */
1298 /*           (used to handle NaN and Inf) */
1299
1300             if (! (absakk < alpha * colmax)) {
1301
1302 /*              no interchange, use 1-by-1 pivot block */
1303
1304                 kp = k;
1305
1306             } else {
1307
1308                 done = FALSE_;
1309
1310 /*              Loop until pivot found */
1311
1312 L72:
1313
1314 /*                 Begin pivot search loop body */
1315
1316
1317 /*                 Copy column IMAX to column K+1 of W and update it */
1318
1319                 i__1 = imax - k;
1320                 dcopy_(&i__1, &a[imax + k * a_dim1], lda, &w[k + (k + 1) * 
1321                         w_dim1], &c__1);
1322                 i__1 = *n - imax + 1;
1323                 dcopy_(&i__1, &a[imax + imax * a_dim1], &c__1, &w[imax + (k + 
1324                         1) * w_dim1], &c__1);
1325                 if (k > 1) {
1326                     i__1 = *n - k + 1;
1327                     i__2 = k - 1;
1328                     dgemv_("No transpose", &i__1, &i__2, &c_b9, &a[k + a_dim1]
1329                             , lda, &w[imax + w_dim1], ldw, &c_b10, &w[k + (k 
1330                             + 1) * w_dim1], &c__1);
1331                 }
1332
1333 /*                 JMAX is the column-index of the largest off-diagonal */
1334 /*                 element in row IMAX, and ROWMAX is its absolute value. */
1335 /*                 Determine both ROWMAX and JMAX. */
1336
1337                 if (imax != k) {
1338                     i__1 = imax - k;
1339                     jmax = k - 1 + idamax_(&i__1, &w[k + (k + 1) * w_dim1], &
1340                             c__1);
1341                     rowmax = (d__1 = w[jmax + (k + 1) * w_dim1], abs(d__1));
1342                 } else {
1343                     rowmax = 0.;
1344                 }
1345
1346                 if (imax < *n) {
1347                     i__1 = *n - imax;
1348                     itemp = imax + idamax_(&i__1, &w[imax + 1 + (k + 1) * 
1349                             w_dim1], &c__1);
1350                     dtemp = (d__1 = w[itemp + (k + 1) * w_dim1], abs(d__1));
1351                     if (dtemp > rowmax) {
1352                         rowmax = dtemp;
1353                         jmax = itemp;
1354                     }
1355                 }
1356
1357 /*                 Equivalent to testing for */
1358 /*                 ABS( W( IMAX, K+1 ) ).GE.ALPHA*ROWMAX */
1359 /*                 (used to handle NaN and Inf) */
1360
1361                 if (! ((d__1 = w[imax + (k + 1) * w_dim1], abs(d__1)) < alpha 
1362                         * rowmax)) {
1363
1364 /*                    interchange rows and columns K and IMAX, */
1365 /*                    use 1-by-1 pivot block */
1366
1367                     kp = imax;
1368
1369 /*                    copy column K+1 of W to column K of W */
1370
1371                     i__1 = *n - k + 1;
1372                     dcopy_(&i__1, &w[k + (k + 1) * w_dim1], &c__1, &w[k + k * 
1373                             w_dim1], &c__1);
1374
1375                     done = TRUE_;
1376
1377 /*                 Equivalent to testing for ROWMAX.EQ.COLMAX, */
1378 /*                 (used to handle NaN and Inf) */
1379
1380                 } else if (p == jmax || rowmax <= colmax) {
1381
1382 /*                    interchange rows and columns K+1 and IMAX, */
1383 /*                    use 2-by-2 pivot block */
1384
1385                     kp = imax;
1386                     kstep = 2;
1387                     done = TRUE_;
1388                 } else {
1389
1390 /*                    Pivot not found: set params and repeat */
1391
1392                     p = imax;
1393                     colmax = rowmax;
1394                     imax = jmax;
1395
1396 /*                    Copy updated JMAXth (next IMAXth) column to Kth of W */
1397
1398                     i__1 = *n - k + 1;
1399                     dcopy_(&i__1, &w[k + (k + 1) * w_dim1], &c__1, &w[k + k * 
1400                             w_dim1], &c__1);
1401
1402                 }
1403
1404 /*                 End pivot search loop body */
1405
1406                 if (! done) {
1407                     goto L72;
1408                 }
1409
1410             }
1411
1412 /*           ============================================================ */
1413
1414             kk = k + kstep - 1;
1415
1416             if (kstep == 2 && p != k) {
1417
1418 /*              Copy non-updated column K to column P */
1419
1420                 i__1 = p - k;
1421                 dcopy_(&i__1, &a[k + k * a_dim1], &c__1, &a[p + k * a_dim1], 
1422                         lda);
1423                 i__1 = *n - p + 1;
1424                 dcopy_(&i__1, &a[p + k * a_dim1], &c__1, &a[p + p * a_dim1], &
1425                         c__1);
1426
1427 /*              Interchange rows K and P in first K columns of A */
1428 /*              and first K+1 columns of W */
1429
1430                 dswap_(&k, &a[k + a_dim1], lda, &a[p + a_dim1], lda);
1431                 dswap_(&kk, &w[k + w_dim1], ldw, &w[p + w_dim1], ldw);
1432             }
1433
1434 /*           Updated column KP is already stored in column KK of W */
1435
1436             if (kp != kk) {
1437
1438 /*              Copy non-updated column KK to column KP */
1439
1440                 a[kp + k * a_dim1] = a[kk + k * a_dim1];
1441                 i__1 = kp - k - 1;
1442                 dcopy_(&i__1, &a[k + 1 + kk * a_dim1], &c__1, &a[kp + (k + 1) 
1443                         * a_dim1], lda);
1444                 i__1 = *n - kp + 1;
1445                 dcopy_(&i__1, &a[kp + kk * a_dim1], &c__1, &a[kp + kp * 
1446                         a_dim1], &c__1);
1447
1448 /*              Interchange rows KK and KP in first KK columns of A and W */
1449
1450                 dswap_(&kk, &a[kk + a_dim1], lda, &a[kp + a_dim1], lda);
1451                 dswap_(&kk, &w[kk + w_dim1], ldw, &w[kp + w_dim1], ldw);
1452             }
1453
1454             if (kstep == 1) {
1455
1456 /*              1-by-1 pivot block D(k): column k of W now holds */
1457
1458 /*              W(k) = L(k)*D(k) */
1459
1460 /*              where L(k) is the k-th column of L */
1461
1462 /*              Store L(k) in column k of A */
1463
1464                 i__1 = *n - k + 1;
1465                 dcopy_(&i__1, &w[k + k * w_dim1], &c__1, &a[k + k * a_dim1], &
1466                         c__1);
1467                 if (k < *n) {
1468                     if ((d__1 = a[k + k * a_dim1], abs(d__1)) >= sfmin) {
1469                         r1 = 1. / a[k + k * a_dim1];
1470                         i__1 = *n - k;
1471                         dscal_(&i__1, &r1, &a[k + 1 + k * a_dim1], &c__1);
1472                     } else if (a[k + k * a_dim1] != 0.) {
1473                         i__1 = *n;
1474                         for (ii = k + 1; ii <= i__1; ++ii) {
1475                             a[ii + k * a_dim1] /= a[k + k * a_dim1];
1476 /* L74: */
1477                         }
1478                     }
1479
1480 /*                 Store the subdiagonal element of D in array E */
1481
1482                     e[k] = 0.;
1483
1484                 }
1485
1486             } else {
1487
1488 /*              2-by-2 pivot block D(k): columns k and k+1 of W now hold */
1489
1490 /*              ( W(k) W(k+1) ) = ( L(k) L(k+1) )*D(k) */
1491
1492 /*              where L(k) and L(k+1) are the k-th and (k+1)-th columns */
1493 /*              of L */
1494
1495                 if (k < *n - 1) {
1496
1497 /*                 Store L(k) and L(k+1) in columns k and k+1 of A */
1498
1499                     d21 = w[k + 1 + k * w_dim1];
1500                     d11 = w[k + 1 + (k + 1) * w_dim1] / d21;
1501                     d22 = w[k + k * w_dim1] / d21;
1502                     t = 1. / (d11 * d22 - 1.);
1503                     i__1 = *n;
1504                     for (j = k + 2; j <= i__1; ++j) {
1505                         a[j + k * a_dim1] = t * ((d11 * w[j + k * w_dim1] - w[
1506                                 j + (k + 1) * w_dim1]) / d21);
1507                         a[j + (k + 1) * a_dim1] = t * ((d22 * w[j + (k + 1) * 
1508                                 w_dim1] - w[j + k * w_dim1]) / d21);
1509 /* L80: */
1510                     }
1511                 }
1512
1513 /*              Copy diagonal elements of D(K) to A, */
1514 /*              copy subdiagonal element of D(K) to E(K) and */
1515 /*              ZERO out subdiagonal entry of A */
1516
1517                 a[k + k * a_dim1] = w[k + k * w_dim1];
1518                 a[k + 1 + k * a_dim1] = 0.;
1519                 a[k + 1 + (k + 1) * a_dim1] = w[k + 1 + (k + 1) * w_dim1];
1520                 e[k] = w[k + 1 + k * w_dim1];
1521                 e[k + 1] = 0.;
1522
1523             }
1524
1525 /*           End column K is nonsingular */
1526
1527         }
1528
1529 /*        Store details of the interchanges in IPIV */
1530
1531         if (kstep == 1) {
1532             ipiv[k] = kp;
1533         } else {
1534             ipiv[k] = -p;
1535             ipiv[k + 1] = -kp;
1536         }
1537
1538 /*        Increase K and return to the start of the main loop */
1539
1540         k += kstep;
1541         goto L70;
1542
1543 L90:
1544
1545 /*        Update the lower triangle of A22 (= A(k:n,k:n)) as */
1546
1547 /*        A22 := A22 - L21*D*L21**T = A22 - L21*W**T */
1548
1549 /*        computing blocks of NB columns at a time */
1550
1551         i__1 = *n;
1552         i__2 = *nb;
1553         for (j = k; i__2 < 0 ? j >= i__1 : j <= i__1; j += i__2) {
1554 /* Computing MIN */
1555             i__3 = *nb, i__4 = *n - j + 1;
1556             jb = f2cmin(i__3,i__4);
1557
1558 /*           Update the lower triangle of the diagonal block */
1559
1560             i__3 = j + jb - 1;
1561             for (jj = j; jj <= i__3; ++jj) {
1562                 i__4 = j + jb - jj;
1563                 i__5 = k - 1;
1564                 dgemv_("No transpose", &i__4, &i__5, &c_b9, &a[jj + a_dim1], 
1565                         lda, &w[jj + w_dim1], ldw, &c_b10, &a[jj + jj * 
1566                         a_dim1], &c__1);
1567 /* L100: */
1568             }
1569
1570 /*           Update the rectangular subdiagonal block */
1571
1572             if (j + jb <= *n) {
1573                 i__3 = *n - j - jb + 1;
1574                 i__4 = k - 1;
1575                 dgemm_("No transpose", "Transpose", &i__3, &jb, &i__4, &c_b9, 
1576                         &a[j + jb + a_dim1], lda, &w[j + w_dim1], ldw, &c_b10,
1577                          &a[j + jb + j * a_dim1], lda);
1578             }
1579 /* L110: */
1580         }
1581
1582 /*        Set KB to the number of columns factorized */
1583
1584         *kb = k - 1;
1585
1586     }
1587
1588     return 0;
1589
1590 /*     End of DLASYF_RK */
1591
1592 } /* dlasyf_rk__ */
1593