C_LAPACK: Fixes to make it compile with MSVC (#3605)
[platform/upstream/openblas.git] / lapack-netlib / SRC / ztgsyl.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 = {0.,0.};
516 static integer c__2 = 2;
517 static integer c_n1 = -1;
518 static integer c__5 = 5;
519 static integer c__1 = 1;
520 static doublecomplex c_b44 = {-1.,0.};
521 static doublecomplex c_b45 = {1.,0.};
522
523 /* > \brief \b ZTGSYL */
524
525 /*  =========== DOCUMENTATION =========== */
526
527 /* Online html documentation available at */
528 /*            http://www.netlib.org/lapack/explore-html/ */
529
530 /* > \htmlonly */
531 /* > Download ZTGSYL + dependencies */
532 /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/ztgsyl.
533 f"> */
534 /* > [TGZ]</a> */
535 /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/ztgsyl.
536 f"> */
537 /* > [ZIP]</a> */
538 /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/ztgsyl.
539 f"> */
540 /* > [TXT]</a> */
541 /* > \endhtmlonly */
542
543 /*  Definition: */
544 /*  =========== */
545
546 /*       SUBROUTINE ZTGSYL( TRANS, IJOB, M, N, A, LDA, B, LDB, C, LDC, D, */
547 /*                          LDD, E, LDE, F, LDF, SCALE, DIF, WORK, LWORK, */
548 /*                          IWORK, INFO ) */
549
550 /*       CHARACTER          TRANS */
551 /*       INTEGER            IJOB, INFO, LDA, LDB, LDC, LDD, LDE, LDF, */
552 /*      $                   LWORK, M, N */
553 /*       DOUBLE PRECISION   DIF, SCALE */
554 /*       INTEGER            IWORK( * ) */
555 /*       COMPLEX*16         A( LDA, * ), B( LDB, * ), C( LDC, * ), */
556 /*      $                   D( LDD, * ), E( LDE, * ), F( LDF, * ), */
557 /*      $                   WORK( * ) */
558
559
560 /* > \par Purpose: */
561 /*  ============= */
562 /* > */
563 /* > \verbatim */
564 /* > */
565 /* > ZTGSYL solves the generalized Sylvester equation: */
566 /* > */
567 /* >             A * R - L * B = scale * C            (1) */
568 /* >             D * R - L * E = scale * F */
569 /* > */
570 /* > where R and L are unknown m-by-n matrices, (A, D), (B, E) and */
571 /* > (C, F) are given matrix pairs of size m-by-m, n-by-n and m-by-n, */
572 /* > respectively, with complex entries. A, B, D and E are upper */
573 /* > triangular (i.e., (A,D) and (B,E) in generalized Schur form). */
574 /* > */
575 /* > The solution (R, L) overwrites (C, F). 0 <= SCALE <= 1 */
576 /* > is an output scaling factor chosen to avoid overflow. */
577 /* > */
578 /* > In matrix notation (1) is equivalent to solve Zx = scale*b, where Z */
579 /* > is defined as */
580 /* > */
581 /* >        Z = [ kron(In, A)  -kron(B**H, Im) ]        (2) */
582 /* >            [ kron(In, D)  -kron(E**H, Im) ], */
583 /* > */
584 /* > Here Ix is the identity matrix of size x and X**H is the conjugate */
585 /* > transpose of X. Kron(X, Y) is the Kronecker product between the */
586 /* > matrices X and Y. */
587 /* > */
588 /* > If TRANS = 'C', y in the conjugate transposed system Z**H *y = scale*b */
589 /* > is solved for, which is equivalent to solve for R and L in */
590 /* > */
591 /* >             A**H * R + D**H * L = scale * C           (3) */
592 /* >             R * B**H + L * E**H = scale * -F */
593 /* > */
594 /* > This case (TRANS = 'C') is used to compute an one-norm-based estimate */
595 /* > of Dif[(A,D), (B,E)], the separation between the matrix pairs (A,D) */
596 /* > and (B,E), using ZLACON. */
597 /* > */
598 /* > If IJOB >= 1, ZTGSYL computes a Frobenius norm-based estimate of */
599 /* > Dif[(A,D),(B,E)]. That is, the reciprocal of a lower bound on the */
600 /* > reciprocal of the smallest singular value of Z. */
601 /* > */
602 /* > This is a level-3 BLAS algorithm. */
603 /* > \endverbatim */
604
605 /*  Arguments: */
606 /*  ========== */
607
608 /* > \param[in] TRANS */
609 /* > \verbatim */
610 /* >          TRANS is CHARACTER*1 */
611 /* >          = 'N': solve the generalized sylvester equation (1). */
612 /* >          = 'C': solve the "conjugate transposed" system (3). */
613 /* > \endverbatim */
614 /* > */
615 /* > \param[in] IJOB */
616 /* > \verbatim */
617 /* >          IJOB is INTEGER */
618 /* >          Specifies what kind of functionality to be performed. */
619 /* >          =0: solve (1) only. */
620 /* >          =1: The functionality of 0 and 3. */
621 /* >          =2: The functionality of 0 and 4. */
622 /* >          =3: Only an estimate of Dif[(A,D), (B,E)] is computed. */
623 /* >              (look ahead strategy is used). */
624 /* >          =4: Only an estimate of Dif[(A,D), (B,E)] is computed. */
625 /* >              (ZGECON on sub-systems is used). */
626 /* >          Not referenced if TRANS = 'C'. */
627 /* > \endverbatim */
628 /* > */
629 /* > \param[in] M */
630 /* > \verbatim */
631 /* >          M is INTEGER */
632 /* >          The order of the matrices A and D, and the row dimension of */
633 /* >          the matrices C, F, R and L. */
634 /* > \endverbatim */
635 /* > */
636 /* > \param[in] N */
637 /* > \verbatim */
638 /* >          N is INTEGER */
639 /* >          The order of the matrices B and E, and the column dimension */
640 /* >          of the matrices C, F, R and L. */
641 /* > \endverbatim */
642 /* > */
643 /* > \param[in] A */
644 /* > \verbatim */
645 /* >          A is COMPLEX*16 array, dimension (LDA, M) */
646 /* >          The upper triangular matrix A. */
647 /* > \endverbatim */
648 /* > */
649 /* > \param[in] LDA */
650 /* > \verbatim */
651 /* >          LDA is INTEGER */
652 /* >          The leading dimension of the array A. LDA >= f2cmax(1, M). */
653 /* > \endverbatim */
654 /* > */
655 /* > \param[in] B */
656 /* > \verbatim */
657 /* >          B is COMPLEX*16 array, dimension (LDB, N) */
658 /* >          The upper triangular matrix B. */
659 /* > \endverbatim */
660 /* > */
661 /* > \param[in] LDB */
662 /* > \verbatim */
663 /* >          LDB is INTEGER */
664 /* >          The leading dimension of the array B. LDB >= f2cmax(1, N). */
665 /* > \endverbatim */
666 /* > */
667 /* > \param[in,out] C */
668 /* > \verbatim */
669 /* >          C is COMPLEX*16 array, dimension (LDC, N) */
670 /* >          On entry, C contains the right-hand-side of the first matrix */
671 /* >          equation in (1) or (3). */
672 /* >          On exit, if IJOB = 0, 1 or 2, C has been overwritten by */
673 /* >          the solution R. If IJOB = 3 or 4 and TRANS = 'N', C holds R, */
674 /* >          the solution achieved during the computation of the */
675 /* >          Dif-estimate. */
676 /* > \endverbatim */
677 /* > */
678 /* > \param[in] LDC */
679 /* > \verbatim */
680 /* >          LDC is INTEGER */
681 /* >          The leading dimension of the array C. LDC >= f2cmax(1, M). */
682 /* > \endverbatim */
683 /* > */
684 /* > \param[in] D */
685 /* > \verbatim */
686 /* >          D is COMPLEX*16 array, dimension (LDD, M) */
687 /* >          The upper triangular matrix D. */
688 /* > \endverbatim */
689 /* > */
690 /* > \param[in] LDD */
691 /* > \verbatim */
692 /* >          LDD is INTEGER */
693 /* >          The leading dimension of the array D. LDD >= f2cmax(1, M). */
694 /* > \endverbatim */
695 /* > */
696 /* > \param[in] E */
697 /* > \verbatim */
698 /* >          E is COMPLEX*16 array, dimension (LDE, N) */
699 /* >          The upper triangular matrix E. */
700 /* > \endverbatim */
701 /* > */
702 /* > \param[in] LDE */
703 /* > \verbatim */
704 /* >          LDE is INTEGER */
705 /* >          The leading dimension of the array E. LDE >= f2cmax(1, N). */
706 /* > \endverbatim */
707 /* > */
708 /* > \param[in,out] F */
709 /* > \verbatim */
710 /* >          F is COMPLEX*16 array, dimension (LDF, N) */
711 /* >          On entry, F contains the right-hand-side of the second matrix */
712 /* >          equation in (1) or (3). */
713 /* >          On exit, if IJOB = 0, 1 or 2, F has been overwritten by */
714 /* >          the solution L. If IJOB = 3 or 4 and TRANS = 'N', F holds L, */
715 /* >          the solution achieved during the computation of the */
716 /* >          Dif-estimate. */
717 /* > \endverbatim */
718 /* > */
719 /* > \param[in] LDF */
720 /* > \verbatim */
721 /* >          LDF is INTEGER */
722 /* >          The leading dimension of the array F. LDF >= f2cmax(1, M). */
723 /* > \endverbatim */
724 /* > */
725 /* > \param[out] DIF */
726 /* > \verbatim */
727 /* >          DIF is DOUBLE PRECISION */
728 /* >          On exit DIF is the reciprocal of a lower bound of the */
729 /* >          reciprocal of the Dif-function, i.e. DIF is an upper bound of */
730 /* >          Dif[(A,D), (B,E)] = sigma-f2cmin(Z), where Z as in (2). */
731 /* >          IF IJOB = 0 or TRANS = 'C', DIF is not referenced. */
732 /* > \endverbatim */
733 /* > */
734 /* > \param[out] SCALE */
735 /* > \verbatim */
736 /* >          SCALE is DOUBLE PRECISION */
737 /* >          On exit SCALE is the scaling factor in (1) or (3). */
738 /* >          If 0 < SCALE < 1, C and F hold the solutions R and L, resp., */
739 /* >          to a slightly perturbed system but the input matrices A, B, */
740 /* >          D and E have not been changed. If SCALE = 0, R and L will */
741 /* >          hold the solutions to the homogenious system with C = F = 0. */
742 /* > \endverbatim */
743 /* > */
744 /* > \param[out] WORK */
745 /* > \verbatim */
746 /* >          WORK is COMPLEX*16 array, dimension (MAX(1,LWORK)) */
747 /* >          On exit, if INFO = 0, WORK(1) returns the optimal LWORK. */
748 /* > \endverbatim */
749 /* > */
750 /* > \param[in] LWORK */
751 /* > \verbatim */
752 /* >          LWORK is INTEGER */
753 /* >          The dimension of the array WORK. LWORK > = 1. */
754 /* >          If IJOB = 1 or 2 and TRANS = 'N', LWORK >= f2cmax(1,2*M*N). */
755 /* > */
756 /* >          If LWORK = -1, then a workspace query is assumed; the routine */
757 /* >          only calculates the optimal size of the WORK array, returns */
758 /* >          this value as the first entry of the WORK array, and no error */
759 /* >          message related to LWORK is issued by XERBLA. */
760 /* > \endverbatim */
761 /* > */
762 /* > \param[out] IWORK */
763 /* > \verbatim */
764 /* >          IWORK is INTEGER array, dimension (M+N+2) */
765 /* > \endverbatim */
766 /* > */
767 /* > \param[out] INFO */
768 /* > \verbatim */
769 /* >          INFO is INTEGER */
770 /* >            =0: successful exit */
771 /* >            <0: If INFO = -i, the i-th argument had an illegal value. */
772 /* >            >0: (A, D) and (B, E) have common or very close */
773 /* >                eigenvalues. */
774 /* > \endverbatim */
775
776 /*  Authors: */
777 /*  ======== */
778
779 /* > \author Univ. of Tennessee */
780 /* > \author Univ. of California Berkeley */
781 /* > \author Univ. of Colorado Denver */
782 /* > \author NAG Ltd. */
783
784 /* > \date December 2016 */
785
786 /* > \ingroup complex16SYcomputational */
787
788 /* > \par Contributors: */
789 /*  ================== */
790 /* > */
791 /* >     Bo Kagstrom and Peter Poromaa, Department of Computing Science, */
792 /* >     Umea University, S-901 87 Umea, Sweden. */
793
794 /* > \par References: */
795 /*  ================ */
796 /* > */
797 /* >  [1] B. Kagstrom and P. Poromaa, LAPACK-Style Algorithms and Software */
798 /* >      for Solving the Generalized Sylvester Equation and Estimating the */
799 /* >      Separation between Regular Matrix Pairs, Report UMINF - 93.23, */
800 /* >      Department of Computing Science, Umea University, S-901 87 Umea, */
801 /* >      Sweden, December 1993, Revised April 1994, Also as LAPACK Working */
802 /* >      Note 75.  To appear in ACM Trans. on Math. Software, Vol 22, */
803 /* >      No 1, 1996. */
804 /* > \n */
805 /* >  [2] B. Kagstrom, A Perturbation Analysis of the Generalized Sylvester */
806 /* >      Equation (AR - LB, DR - LE ) = (C, F), SIAM J. Matrix Anal. */
807 /* >      Appl., 15(4):1045-1060, 1994. */
808 /* > \n */
809 /* >  [3] B. Kagstrom and L. Westin, Generalized Schur Methods with */
810 /* >      Condition Estimators for Solving the Generalized Sylvester */
811 /* >      Equation, IEEE Transactions on Automatic Control, Vol. 34, No. 7, */
812 /* >      July 1989, pp 745-751. */
813 /* > */
814 /*  ===================================================================== */
815 /* Subroutine */ int ztgsyl_(char *trans, integer *ijob, integer *m, integer *
816         n, doublecomplex *a, integer *lda, doublecomplex *b, integer *ldb, 
817         doublecomplex *c__, integer *ldc, doublecomplex *d__, integer *ldd, 
818         doublecomplex *e, integer *lde, doublecomplex *f, integer *ldf, 
819         doublereal *scale, doublereal *dif, doublecomplex *work, integer *
820         lwork, integer *iwork, integer *info)
821 {
822     /* System generated locals */
823     integer a_dim1, a_offset, b_dim1, b_offset, c_dim1, c_offset, d_dim1, 
824             d_offset, e_dim1, e_offset, f_dim1, f_offset, i__1, i__2, i__3, 
825             i__4;
826     doublecomplex z__1;
827
828     /* Local variables */
829     doublereal dsum;
830     integer i__, j, k, p, q;
831     extern logical lsame_(char *, char *);
832     integer ifunc, linfo;
833     extern /* Subroutine */ int zscal_(integer *, doublecomplex *, 
834             doublecomplex *, integer *), zgemm_(char *, char *, integer *, 
835             integer *, integer *, doublecomplex *, doublecomplex *, integer *,
836              doublecomplex *, integer *, doublecomplex *, doublecomplex *, 
837             integer *);
838     integer lwmin;
839     doublereal scale2;
840     integer ie, je, mb, nb;
841     doublereal dscale;
842     integer is, js, pq;
843     extern /* Subroutine */ int ztgsy2_(char *, integer *, integer *, integer 
844             *, doublecomplex *, integer *, doublecomplex *, integer *, 
845             doublecomplex *, integer *, doublecomplex *, integer *, 
846             doublecomplex *, integer *, doublecomplex *, integer *, 
847             doublereal *, doublereal *, doublereal *, integer *);
848     doublereal scaloc;
849     extern /* Subroutine */ int xerbla_(char *, integer *, ftnlen);
850     extern integer ilaenv_(integer *, char *, char *, integer *, integer *, 
851             integer *, integer *, ftnlen, ftnlen);
852     integer iround;
853     logical notran;
854     integer isolve;
855     extern /* Subroutine */ int zlacpy_(char *, integer *, integer *, 
856             doublecomplex *, integer *, doublecomplex *, integer *), 
857             zlaset_(char *, integer *, integer *, doublecomplex *, 
858             doublecomplex *, doublecomplex *, integer *);
859     logical lquery;
860
861
862 /*  -- LAPACK computational routine (version 3.7.0) -- */
863 /*  -- LAPACK is a software package provided by Univ. of Tennessee,    -- */
864 /*  -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- */
865 /*     December 2016 */
866
867
868 /*  ===================================================================== */
869 /*  Replaced various illegal calls to CCOPY by calls to CLASET. */
870 /*  Sven Hammarling, 1/5/02. */
871
872
873 /*     Decode and test input parameters */
874
875     /* Parameter adjustments */
876     a_dim1 = *lda;
877     a_offset = 1 + a_dim1 * 1;
878     a -= a_offset;
879     b_dim1 = *ldb;
880     b_offset = 1 + b_dim1 * 1;
881     b -= b_offset;
882     c_dim1 = *ldc;
883     c_offset = 1 + c_dim1 * 1;
884     c__ -= c_offset;
885     d_dim1 = *ldd;
886     d_offset = 1 + d_dim1 * 1;
887     d__ -= d_offset;
888     e_dim1 = *lde;
889     e_offset = 1 + e_dim1 * 1;
890     e -= e_offset;
891     f_dim1 = *ldf;
892     f_offset = 1 + f_dim1 * 1;
893     f -= f_offset;
894     --work;
895     --iwork;
896
897     /* Function Body */
898     *info = 0;
899     notran = lsame_(trans, "N");
900     lquery = *lwork == -1;
901
902     if (! notran && ! lsame_(trans, "C")) {
903         *info = -1;
904     } else if (notran) {
905         if (*ijob < 0 || *ijob > 4) {
906             *info = -2;
907         }
908     }
909     if (*info == 0) {
910         if (*m <= 0) {
911             *info = -3;
912         } else if (*n <= 0) {
913             *info = -4;
914         } else if (*lda < f2cmax(1,*m)) {
915             *info = -6;
916         } else if (*ldb < f2cmax(1,*n)) {
917             *info = -8;
918         } else if (*ldc < f2cmax(1,*m)) {
919             *info = -10;
920         } else if (*ldd < f2cmax(1,*m)) {
921             *info = -12;
922         } else if (*lde < f2cmax(1,*n)) {
923             *info = -14;
924         } else if (*ldf < f2cmax(1,*m)) {
925             *info = -16;
926         }
927     }
928
929     if (*info == 0) {
930         if (notran) {
931             if (*ijob == 1 || *ijob == 2) {
932 /* Computing MAX */
933                 i__1 = 1, i__2 = (*m << 1) * *n;
934                 lwmin = f2cmax(i__1,i__2);
935             } else {
936                 lwmin = 1;
937             }
938         } else {
939             lwmin = 1;
940         }
941         work[1].r = (doublereal) lwmin, work[1].i = 0.;
942
943         if (*lwork < lwmin && ! lquery) {
944             *info = -20;
945         }
946     }
947
948     if (*info != 0) {
949         i__1 = -(*info);
950         xerbla_("ZTGSYL", &i__1, (ftnlen)6);
951         return 0;
952     } else if (lquery) {
953         return 0;
954     }
955
956 /*     Quick return if possible */
957
958     if (*m == 0 || *n == 0) {
959         *scale = 1.;
960         if (notran) {
961             if (*ijob != 0) {
962                 *dif = 0.;
963             }
964         }
965         return 0;
966     }
967
968 /*     Determine  optimal block sizes MB and NB */
969
970     mb = ilaenv_(&c__2, "ZTGSYL", trans, m, n, &c_n1, &c_n1, (ftnlen)6, (
971             ftnlen)1);
972     nb = ilaenv_(&c__5, "ZTGSYL", trans, m, n, &c_n1, &c_n1, (ftnlen)6, (
973             ftnlen)1);
974
975     isolve = 1;
976     ifunc = 0;
977     if (notran) {
978         if (*ijob >= 3) {
979             ifunc = *ijob - 2;
980             zlaset_("F", m, n, &c_b1, &c_b1, &c__[c_offset], ldc);
981             zlaset_("F", m, n, &c_b1, &c_b1, &f[f_offset], ldf);
982         } else if (*ijob >= 1 && notran) {
983             isolve = 2;
984         }
985     }
986
987     if (mb <= 1 && nb <= 1 || mb >= *m && nb >= *n) {
988
989 /*        Use unblocked Level 2 solver */
990
991         i__1 = isolve;
992         for (iround = 1; iround <= i__1; ++iround) {
993
994             *scale = 1.;
995             dscale = 0.;
996             dsum = 1.;
997             pq = *m * *n;
998             ztgsy2_(trans, &ifunc, m, n, &a[a_offset], lda, &b[b_offset], ldb,
999                      &c__[c_offset], ldc, &d__[d_offset], ldd, &e[e_offset], 
1000                     lde, &f[f_offset], ldf, scale, &dsum, &dscale, info);
1001             if (dscale != 0.) {
1002                 if (*ijob == 1 || *ijob == 3) {
1003                     *dif = sqrt((doublereal) ((*m << 1) * *n)) / (dscale * 
1004                             sqrt(dsum));
1005                 } else {
1006                     *dif = sqrt((doublereal) pq) / (dscale * sqrt(dsum));
1007                 }
1008             }
1009             if (isolve == 2 && iround == 1) {
1010                 if (notran) {
1011                     ifunc = *ijob;
1012                 }
1013                 scale2 = *scale;
1014                 zlacpy_("F", m, n, &c__[c_offset], ldc, &work[1], m);
1015                 zlacpy_("F", m, n, &f[f_offset], ldf, &work[*m * *n + 1], m);
1016                 zlaset_("F", m, n, &c_b1, &c_b1, &c__[c_offset], ldc);
1017                 zlaset_("F", m, n, &c_b1, &c_b1, &f[f_offset], ldf)
1018                         ;
1019             } else if (isolve == 2 && iround == 2) {
1020                 zlacpy_("F", m, n, &work[1], m, &c__[c_offset], ldc);
1021                 zlacpy_("F", m, n, &work[*m * *n + 1], m, &f[f_offset], ldf);
1022                 *scale = scale2;
1023             }
1024 /* L30: */
1025         }
1026
1027         return 0;
1028
1029     }
1030
1031 /*     Determine block structure of A */
1032
1033     p = 0;
1034     i__ = 1;
1035 L40:
1036     if (i__ > *m) {
1037         goto L50;
1038     }
1039     ++p;
1040     iwork[p] = i__;
1041     i__ += mb;
1042     if (i__ >= *m) {
1043         goto L50;
1044     }
1045     goto L40;
1046 L50:
1047     iwork[p + 1] = *m + 1;
1048     if (iwork[p] == iwork[p + 1]) {
1049         --p;
1050     }
1051
1052 /*     Determine block structure of B */
1053
1054     q = p + 1;
1055     j = 1;
1056 L60:
1057     if (j > *n) {
1058         goto L70;
1059     }
1060
1061     ++q;
1062     iwork[q] = j;
1063     j += nb;
1064     if (j >= *n) {
1065         goto L70;
1066     }
1067     goto L60;
1068
1069 L70:
1070     iwork[q + 1] = *n + 1;
1071     if (iwork[q] == iwork[q + 1]) {
1072         --q;
1073     }
1074
1075     if (notran) {
1076         i__1 = isolve;
1077         for (iround = 1; iround <= i__1; ++iround) {
1078
1079 /*           Solve (I, J) - subsystem */
1080 /*               A(I, I) * R(I, J) - L(I, J) * B(J, J) = C(I, J) */
1081 /*               D(I, I) * R(I, J) - L(I, J) * E(J, J) = F(I, J) */
1082 /*           for I = P, P - 1, ..., 1; J = 1, 2, ..., Q */
1083
1084             pq = 0;
1085             *scale = 1.;
1086             dscale = 0.;
1087             dsum = 1.;
1088             i__2 = q;
1089             for (j = p + 2; j <= i__2; ++j) {
1090                 js = iwork[j];
1091                 je = iwork[j + 1] - 1;
1092                 nb = je - js + 1;
1093                 for (i__ = p; i__ >= 1; --i__) {
1094                     is = iwork[i__];
1095                     ie = iwork[i__ + 1] - 1;
1096                     mb = ie - is + 1;
1097                     ztgsy2_(trans, &ifunc, &mb, &nb, &a[is + is * a_dim1], 
1098                             lda, &b[js + js * b_dim1], ldb, &c__[is + js * 
1099                             c_dim1], ldc, &d__[is + is * d_dim1], ldd, &e[js 
1100                             + js * e_dim1], lde, &f[is + js * f_dim1], ldf, &
1101                             scaloc, &dsum, &dscale, &linfo);
1102                     if (linfo > 0) {
1103                         *info = linfo;
1104                     }
1105                     pq += mb * nb;
1106                     if (scaloc != 1.) {
1107                         i__3 = js - 1;
1108                         for (k = 1; k <= i__3; ++k) {
1109                             z__1.r = scaloc, z__1.i = 0.;
1110                             zscal_(m, &z__1, &c__[k * c_dim1 + 1], &c__1);
1111                             z__1.r = scaloc, z__1.i = 0.;
1112                             zscal_(m, &z__1, &f[k * f_dim1 + 1], &c__1);
1113 /* L80: */
1114                         }
1115                         i__3 = je;
1116                         for (k = js; k <= i__3; ++k) {
1117                             i__4 = is - 1;
1118                             z__1.r = scaloc, z__1.i = 0.;
1119                             zscal_(&i__4, &z__1, &c__[k * c_dim1 + 1], &c__1);
1120                             i__4 = is - 1;
1121                             z__1.r = scaloc, z__1.i = 0.;
1122                             zscal_(&i__4, &z__1, &f[k * f_dim1 + 1], &c__1);
1123 /* L90: */
1124                         }
1125                         i__3 = je;
1126                         for (k = js; k <= i__3; ++k) {
1127                             i__4 = *m - ie;
1128                             z__1.r = scaloc, z__1.i = 0.;
1129                             zscal_(&i__4, &z__1, &c__[ie + 1 + k * c_dim1], &
1130                                     c__1);
1131                             i__4 = *m - ie;
1132                             z__1.r = scaloc, z__1.i = 0.;
1133                             zscal_(&i__4, &z__1, &f[ie + 1 + k * f_dim1], &
1134                                     c__1);
1135 /* L100: */
1136                         }
1137                         i__3 = *n;
1138                         for (k = je + 1; k <= i__3; ++k) {
1139                             z__1.r = scaloc, z__1.i = 0.;
1140                             zscal_(m, &z__1, &c__[k * c_dim1 + 1], &c__1);
1141                             z__1.r = scaloc, z__1.i = 0.;
1142                             zscal_(m, &z__1, &f[k * f_dim1 + 1], &c__1);
1143 /* L110: */
1144                         }
1145                         *scale *= scaloc;
1146                     }
1147
1148 /*                 Substitute R(I,J) and L(I,J) into remaining equation. */
1149
1150                     if (i__ > 1) {
1151                         i__3 = is - 1;
1152                         zgemm_("N", "N", &i__3, &nb, &mb, &c_b44, &a[is * 
1153                                 a_dim1 + 1], lda, &c__[is + js * c_dim1], ldc,
1154                                  &c_b45, &c__[js * c_dim1 + 1], ldc);
1155                         i__3 = is - 1;
1156                         zgemm_("N", "N", &i__3, &nb, &mb, &c_b44, &d__[is * 
1157                                 d_dim1 + 1], ldd, &c__[is + js * c_dim1], ldc,
1158                                  &c_b45, &f[js * f_dim1 + 1], ldf);
1159                     }
1160                     if (j < q) {
1161                         i__3 = *n - je;
1162                         zgemm_("N", "N", &mb, &i__3, &nb, &c_b45, &f[is + js *
1163                                  f_dim1], ldf, &b[js + (je + 1) * b_dim1], 
1164                                 ldb, &c_b45, &c__[is + (je + 1) * c_dim1], 
1165                                 ldc);
1166                         i__3 = *n - je;
1167                         zgemm_("N", "N", &mb, &i__3, &nb, &c_b45, &f[is + js *
1168                                  f_dim1], ldf, &e[js + (je + 1) * e_dim1], 
1169                                 lde, &c_b45, &f[is + (je + 1) * f_dim1], ldf);
1170                     }
1171 /* L120: */
1172                 }
1173 /* L130: */
1174             }
1175             if (dscale != 0.) {
1176                 if (*ijob == 1 || *ijob == 3) {
1177                     *dif = sqrt((doublereal) ((*m << 1) * *n)) / (dscale * 
1178                             sqrt(dsum));
1179                 } else {
1180                     *dif = sqrt((doublereal) pq) / (dscale * sqrt(dsum));
1181                 }
1182             }
1183             if (isolve == 2 && iround == 1) {
1184                 if (notran) {
1185                     ifunc = *ijob;
1186                 }
1187                 scale2 = *scale;
1188                 zlacpy_("F", m, n, &c__[c_offset], ldc, &work[1], m);
1189                 zlacpy_("F", m, n, &f[f_offset], ldf, &work[*m * *n + 1], m);
1190                 zlaset_("F", m, n, &c_b1, &c_b1, &c__[c_offset], ldc);
1191                 zlaset_("F", m, n, &c_b1, &c_b1, &f[f_offset], ldf)
1192                         ;
1193             } else if (isolve == 2 && iround == 2) {
1194                 zlacpy_("F", m, n, &work[1], m, &c__[c_offset], ldc);
1195                 zlacpy_("F", m, n, &work[*m * *n + 1], m, &f[f_offset], ldf);
1196                 *scale = scale2;
1197             }
1198 /* L150: */
1199         }
1200     } else {
1201
1202 /*        Solve transposed (I, J)-subsystem */
1203 /*            A(I, I)**H * R(I, J) + D(I, I)**H * L(I, J) = C(I, J) */
1204 /*            R(I, J) * B(J, J)  + L(I, J) * E(J, J) = -F(I, J) */
1205 /*        for I = 1,2,..., P; J = Q, Q-1,..., 1 */
1206
1207         *scale = 1.;
1208         i__1 = p;
1209         for (i__ = 1; i__ <= i__1; ++i__) {
1210             is = iwork[i__];
1211             ie = iwork[i__ + 1] - 1;
1212             mb = ie - is + 1;
1213             i__2 = p + 2;
1214             for (j = q; j >= i__2; --j) {
1215                 js = iwork[j];
1216                 je = iwork[j + 1] - 1;
1217                 nb = je - js + 1;
1218                 ztgsy2_(trans, &ifunc, &mb, &nb, &a[is + is * a_dim1], lda, &
1219                         b[js + js * b_dim1], ldb, &c__[is + js * c_dim1], ldc,
1220                          &d__[is + is * d_dim1], ldd, &e[js + js * e_dim1], 
1221                         lde, &f[is + js * f_dim1], ldf, &scaloc, &dsum, &
1222                         dscale, &linfo);
1223                 if (linfo > 0) {
1224                     *info = linfo;
1225                 }
1226                 if (scaloc != 1.) {
1227                     i__3 = js - 1;
1228                     for (k = 1; k <= i__3; ++k) {
1229                         z__1.r = scaloc, z__1.i = 0.;
1230                         zscal_(m, &z__1, &c__[k * c_dim1 + 1], &c__1);
1231                         z__1.r = scaloc, z__1.i = 0.;
1232                         zscal_(m, &z__1, &f[k * f_dim1 + 1], &c__1);
1233 /* L160: */
1234                     }
1235                     i__3 = je;
1236                     for (k = js; k <= i__3; ++k) {
1237                         i__4 = is - 1;
1238                         z__1.r = scaloc, z__1.i = 0.;
1239                         zscal_(&i__4, &z__1, &c__[k * c_dim1 + 1], &c__1);
1240                         i__4 = is - 1;
1241                         z__1.r = scaloc, z__1.i = 0.;
1242                         zscal_(&i__4, &z__1, &f[k * f_dim1 + 1], &c__1);
1243 /* L170: */
1244                     }
1245                     i__3 = je;
1246                     for (k = js; k <= i__3; ++k) {
1247                         i__4 = *m - ie;
1248                         z__1.r = scaloc, z__1.i = 0.;
1249                         zscal_(&i__4, &z__1, &c__[ie + 1 + k * c_dim1], &c__1)
1250                                 ;
1251                         i__4 = *m - ie;
1252                         z__1.r = scaloc, z__1.i = 0.;
1253                         zscal_(&i__4, &z__1, &f[ie + 1 + k * f_dim1], &c__1);
1254 /* L180: */
1255                     }
1256                     i__3 = *n;
1257                     for (k = je + 1; k <= i__3; ++k) {
1258                         z__1.r = scaloc, z__1.i = 0.;
1259                         zscal_(m, &z__1, &c__[k * c_dim1 + 1], &c__1);
1260                         z__1.r = scaloc, z__1.i = 0.;
1261                         zscal_(m, &z__1, &f[k * f_dim1 + 1], &c__1);
1262 /* L190: */
1263                     }
1264                     *scale *= scaloc;
1265                 }
1266
1267 /*              Substitute R(I,J) and L(I,J) into remaining equation. */
1268
1269                 if (j > p + 2) {
1270                     i__3 = js - 1;
1271                     zgemm_("N", "C", &mb, &i__3, &nb, &c_b45, &c__[is + js * 
1272                             c_dim1], ldc, &b[js * b_dim1 + 1], ldb, &c_b45, &
1273                             f[is + f_dim1], ldf);
1274                     i__3 = js - 1;
1275                     zgemm_("N", "C", &mb, &i__3, &nb, &c_b45, &f[is + js * 
1276                             f_dim1], ldf, &e[js * e_dim1 + 1], lde, &c_b45, &
1277                             f[is + f_dim1], ldf);
1278                 }
1279                 if (i__ < p) {
1280                     i__3 = *m - ie;
1281                     zgemm_("C", "N", &i__3, &nb, &mb, &c_b44, &a[is + (ie + 1)
1282                              * a_dim1], lda, &c__[is + js * c_dim1], ldc, &
1283                             c_b45, &c__[ie + 1 + js * c_dim1], ldc);
1284                     i__3 = *m - ie;
1285                     zgemm_("C", "N", &i__3, &nb, &mb, &c_b44, &d__[is + (ie + 
1286                             1) * d_dim1], ldd, &f[is + js * f_dim1], ldf, &
1287                             c_b45, &c__[ie + 1 + js * c_dim1], ldc);
1288                 }
1289 /* L200: */
1290             }
1291 /* L210: */
1292         }
1293     }
1294
1295     work[1].r = (doublereal) lwmin, work[1].i = 0.;
1296
1297     return 0;
1298
1299 /*     End of ZTGSYL */
1300
1301 } /* ztgsyl_ */
1302