dormrz.c
Go to the documentation of this file.
00001 /* dormrz.f -- translated by f2c (version 20061008).
00002    You must link the resulting object file with libf2c:
00003         on Microsoft Windows system, link with libf2c.lib;
00004         on Linux or Unix systems, link with .../path/to/libf2c.a -lm
00005         or, if you install libf2c.a in a standard place, with -lf2c -lm
00006         -- in that order, at the end of the command line, as in
00007                 cc *.o -lf2c -lm
00008         Source for libf2c is in /netlib/f2c/libf2c.zip, e.g.,
00009 
00010                 http://www.netlib.org/f2c/libf2c.zip
00011 */
00012 
00013 #include "f2c.h"
00014 #include "blaswrap.h"
00015 
00016 /* Table of constant values */
00017 
00018 static integer c__1 = 1;
00019 static integer c_n1 = -1;
00020 static integer c__2 = 2;
00021 static integer c__65 = 65;
00022 
00023 /* Subroutine */ int dormrz_(char *side, char *trans, integer *m, integer *n, 
00024         integer *k, integer *l, doublereal *a, integer *lda, doublereal *tau, 
00025         doublereal *c__, integer *ldc, doublereal *work, integer *lwork, 
00026         integer *info)
00027 {
00028     /* System generated locals */
00029     address a__1[2];
00030     integer a_dim1, a_offset, c_dim1, c_offset, i__1, i__2, i__3[2], i__4, 
00031             i__5;
00032     char ch__1[2];
00033 
00034     /* Builtin functions */
00035     /* Subroutine */ int s_cat(char *, char **, integer *, integer *, ftnlen);
00036 
00037     /* Local variables */
00038     integer i__;
00039     doublereal t[4160]  /* was [65][64] */;
00040     integer i1, i2, i3, ib, ic, ja, jc, nb, mi, ni, nq, nw, iws;
00041     logical left;
00042     extern logical lsame_(char *, char *);
00043     integer nbmin, iinfo;
00044     extern /* Subroutine */ int dormr3_(char *, char *, integer *, integer *, 
00045             integer *, integer *, doublereal *, integer *, doublereal *, 
00046             doublereal *, integer *, doublereal *, integer *),
00047              xerbla_(char *, integer *);
00048     extern integer ilaenv_(integer *, char *, char *, integer *, integer *, 
00049             integer *, integer *);
00050     extern /* Subroutine */ int dlarzb_(char *, char *, char *, char *, 
00051             integer *, integer *, integer *, integer *, doublereal *, integer 
00052             *, doublereal *, integer *, doublereal *, integer *, doublereal *, 
00053              integer *), dlarzt_(char *, char 
00054             *, integer *, integer *, doublereal *, integer *, doublereal *, 
00055             doublereal *, integer *);
00056     logical notran;
00057     integer ldwork;
00058     char transt[1];
00059     integer lwkopt;
00060     logical lquery;
00061 
00062 
00063 /*  -- LAPACK routine (version 3.2) -- */
00064 /*     Univ. of Tennessee, Univ. of California Berkeley and NAG Ltd.. */
00065 /*     January 2007 */
00066 
00067 /*     .. Scalar Arguments .. */
00068 /*     .. */
00069 /*     .. Array Arguments .. */
00070 /*     .. */
00071 
00072 /*  Purpose */
00073 /*  ======= */
00074 
00075 /*  DORMRZ overwrites the general real M-by-N matrix C with */
00076 
00077 /*                  SIDE = 'L'     SIDE = 'R' */
00078 /*  TRANS = 'N':      Q * C          C * Q */
00079 /*  TRANS = 'T':      Q**T * C       C * Q**T */
00080 
00081 /*  where Q is a real orthogonal matrix defined as the product of k */
00082 /*  elementary reflectors */
00083 
00084 /*        Q = H(1) H(2) . . . H(k) */
00085 
00086 /*  as returned by DTZRZF. Q is of order M if SIDE = 'L' and of order N */
00087 /*  if SIDE = 'R'. */
00088 
00089 /*  Arguments */
00090 /*  ========= */
00091 
00092 /*  SIDE    (input) CHARACTER*1 */
00093 /*          = 'L': apply Q or Q**T from the Left; */
00094 /*          = 'R': apply Q or Q**T from the Right. */
00095 
00096 /*  TRANS   (input) CHARACTER*1 */
00097 /*          = 'N':  No transpose, apply Q; */
00098 /*          = 'T':  Transpose, apply Q**T. */
00099 
00100 /*  M       (input) INTEGER */
00101 /*          The number of rows of the matrix C. M >= 0. */
00102 
00103 /*  N       (input) INTEGER */
00104 /*          The number of columns of the matrix C. N >= 0. */
00105 
00106 /*  K       (input) INTEGER */
00107 /*          The number of elementary reflectors whose product defines */
00108 /*          the matrix Q. */
00109 /*          If SIDE = 'L', M >= K >= 0; */
00110 /*          if SIDE = 'R', N >= K >= 0. */
00111 
00112 /*  L       (input) INTEGER */
00113 /*          The number of columns of the matrix A containing */
00114 /*          the meaningful part of the Householder reflectors. */
00115 /*          If SIDE = 'L', M >= L >= 0, if SIDE = 'R', N >= L >= 0. */
00116 
00117 /*  A       (input) DOUBLE PRECISION array, dimension */
00118 /*                               (LDA,M) if SIDE = 'L', */
00119 /*                               (LDA,N) if SIDE = 'R' */
00120 /*          The i-th row must contain the vector which defines the */
00121 /*          elementary reflector H(i), for i = 1,2,...,k, as returned by */
00122 /*          DTZRZF in the last k rows of its array argument A. */
00123 /*          A is modified by the routine but restored on exit. */
00124 
00125 /*  LDA     (input) INTEGER */
00126 /*          The leading dimension of the array A. LDA >= max(1,K). */
00127 
00128 /*  TAU     (input) DOUBLE PRECISION array, dimension (K) */
00129 /*          TAU(i) must contain the scalar factor of the elementary */
00130 /*          reflector H(i), as returned by DTZRZF. */
00131 
00132 /*  C       (input/output) DOUBLE PRECISION array, dimension (LDC,N) */
00133 /*          On entry, the M-by-N matrix C. */
00134 /*          On exit, C is overwritten by Q*C or Q**H*C or C*Q**H or C*Q. */
00135 
00136 /*  LDC     (input) INTEGER */
00137 /*          The leading dimension of the array C. LDC >= max(1,M). */
00138 
00139 /*  WORK    (workspace/output) DOUBLE PRECISION array, dimension (MAX(1,LWORK)) */
00140 /*          On exit, if INFO = 0, WORK(1) returns the optimal LWORK. */
00141 
00142 /*  LWORK   (input) INTEGER */
00143 /*          The dimension of the array WORK. */
00144 /*          If SIDE = 'L', LWORK >= max(1,N); */
00145 /*          if SIDE = 'R', LWORK >= max(1,M). */
00146 /*          For optimum performance LWORK >= N*NB if SIDE = 'L', and */
00147 /*          LWORK >= M*NB if SIDE = 'R', where NB is the optimal */
00148 /*          blocksize. */
00149 
00150 /*          If LWORK = -1, then a workspace query is assumed; the routine */
00151 /*          only calculates the optimal size of the WORK array, returns */
00152 /*          this value as the first entry of the WORK array, and no error */
00153 /*          message related to LWORK is issued by XERBLA. */
00154 
00155 /*  INFO    (output) INTEGER */
00156 /*          = 0:  successful exit */
00157 /*          < 0:  if INFO = -i, the i-th argument had an illegal value */
00158 
00159 /*  Further Details */
00160 /*  =============== */
00161 
00162 /*  Based on contributions by */
00163 /*    A. Petitet, Computer Science Dept., Univ. of Tenn., Knoxville, USA */
00164 
00165 /*  ===================================================================== */
00166 
00167 /*     .. Parameters .. */
00168 /*     .. */
00169 /*     .. Local Scalars .. */
00170 /*     .. */
00171 /*     .. Local Arrays .. */
00172 /*     .. */
00173 /*     .. External Functions .. */
00174 /*     .. */
00175 /*     .. External Subroutines .. */
00176 /*     .. */
00177 /*     .. Intrinsic Functions .. */
00178 /*     .. */
00179 /*     .. Executable Statements .. */
00180 
00181 /*     Test the input arguments */
00182 
00183     /* Parameter adjustments */
00184     a_dim1 = *lda;
00185     a_offset = 1 + a_dim1;
00186     a -= a_offset;
00187     --tau;
00188     c_dim1 = *ldc;
00189     c_offset = 1 + c_dim1;
00190     c__ -= c_offset;
00191     --work;
00192 
00193     /* Function Body */
00194     *info = 0;
00195     left = lsame_(side, "L");
00196     notran = lsame_(trans, "N");
00197     lquery = *lwork == -1;
00198 
00199 /*     NQ is the order of Q and NW is the minimum dimension of WORK */
00200 
00201     if (left) {
00202         nq = *m;
00203         nw = max(1,*n);
00204     } else {
00205         nq = *n;
00206         nw = max(1,*m);
00207     }
00208     if (! left && ! lsame_(side, "R")) {
00209         *info = -1;
00210     } else if (! notran && ! lsame_(trans, "T")) {
00211         *info = -2;
00212     } else if (*m < 0) {
00213         *info = -3;
00214     } else if (*n < 0) {
00215         *info = -4;
00216     } else if (*k < 0 || *k > nq) {
00217         *info = -5;
00218     } else if (*l < 0 || left && *l > *m || ! left && *l > *n) {
00219         *info = -6;
00220     } else if (*lda < max(1,*k)) {
00221         *info = -8;
00222     } else if (*ldc < max(1,*m)) {
00223         *info = -11;
00224     }
00225 
00226     if (*info == 0) {
00227         if (*m == 0 || *n == 0) {
00228             lwkopt = 1;
00229         } else {
00230 
00231 /*           Determine the block size.  NB may be at most NBMAX, where */
00232 /*           NBMAX is used to define the local array T. */
00233 
00234 /* Computing MIN */
00235 /* Writing concatenation */
00236             i__3[0] = 1, a__1[0] = side;
00237             i__3[1] = 1, a__1[1] = trans;
00238             s_cat(ch__1, a__1, i__3, &c__2, (ftnlen)2);
00239             i__1 = 64, i__2 = ilaenv_(&c__1, "DORMRQ", ch__1, m, n, k, &c_n1);
00240             nb = min(i__1,i__2);
00241             lwkopt = nw * nb;
00242         }
00243         work[1] = (doublereal) lwkopt;
00244 
00245         if (*lwork < max(1,nw) && ! lquery) {
00246             *info = -13;
00247         }
00248     }
00249 
00250     if (*info != 0) {
00251         i__1 = -(*info);
00252         xerbla_("DORMRZ", &i__1);
00253         return 0;
00254     } else if (lquery) {
00255         return 0;
00256     }
00257 
00258 /*     Quick return if possible */
00259 
00260     if (*m == 0 || *n == 0) {
00261         work[1] = 1.;
00262         return 0;
00263     }
00264 
00265     nbmin = 2;
00266     ldwork = nw;
00267     if (nb > 1 && nb < *k) {
00268         iws = nw * nb;
00269         if (*lwork < iws) {
00270             nb = *lwork / ldwork;
00271 /* Computing MAX */
00272 /* Writing concatenation */
00273             i__3[0] = 1, a__1[0] = side;
00274             i__3[1] = 1, a__1[1] = trans;
00275             s_cat(ch__1, a__1, i__3, &c__2, (ftnlen)2);
00276             i__1 = 2, i__2 = ilaenv_(&c__2, "DORMRQ", ch__1, m, n, k, &c_n1);
00277             nbmin = max(i__1,i__2);
00278         }
00279     } else {
00280         iws = nw;
00281     }
00282 
00283     if (nb < nbmin || nb >= *k) {
00284 
00285 /*        Use unblocked code */
00286 
00287         dormr3_(side, trans, m, n, k, l, &a[a_offset], lda, &tau[1], &c__[
00288                 c_offset], ldc, &work[1], &iinfo);
00289     } else {
00290 
00291 /*        Use blocked code */
00292 
00293         if (left && ! notran || ! left && notran) {
00294             i1 = 1;
00295             i2 = *k;
00296             i3 = nb;
00297         } else {
00298             i1 = (*k - 1) / nb * nb + 1;
00299             i2 = 1;
00300             i3 = -nb;
00301         }
00302 
00303         if (left) {
00304             ni = *n;
00305             jc = 1;
00306             ja = *m - *l + 1;
00307         } else {
00308             mi = *m;
00309             ic = 1;
00310             ja = *n - *l + 1;
00311         }
00312 
00313         if (notran) {
00314             *(unsigned char *)transt = 'T';
00315         } else {
00316             *(unsigned char *)transt = 'N';
00317         }
00318 
00319         i__1 = i2;
00320         i__2 = i3;
00321         for (i__ = i1; i__2 < 0 ? i__ >= i__1 : i__ <= i__1; i__ += i__2) {
00322 /* Computing MIN */
00323             i__4 = nb, i__5 = *k - i__ + 1;
00324             ib = min(i__4,i__5);
00325 
00326 /*           Form the triangular factor of the block reflector */
00327 /*           H = H(i+ib-1) . . . H(i+1) H(i) */
00328 
00329             dlarzt_("Backward", "Rowwise", l, &ib, &a[i__ + ja * a_dim1], lda, 
00330                      &tau[i__], t, &c__65);
00331 
00332             if (left) {
00333 
00334 /*              H or H' is applied to C(i:m,1:n) */
00335 
00336                 mi = *m - i__ + 1;
00337                 ic = i__;
00338             } else {
00339 
00340 /*              H or H' is applied to C(1:m,i:n) */
00341 
00342                 ni = *n - i__ + 1;
00343                 jc = i__;
00344             }
00345 
00346 /*           Apply H or H' */
00347 
00348             dlarzb_(side, transt, "Backward", "Rowwise", &mi, &ni, &ib, l, &a[
00349                     i__ + ja * a_dim1], lda, t, &c__65, &c__[ic + jc * c_dim1]
00350 , ldc, &work[1], &ldwork);
00351 /* L10: */
00352         }
00353 
00354     }
00355 
00356     work[1] = (doublereal) lwkopt;
00357 
00358     return 0;
00359 
00360 /*     End of DORMRZ */
00361 
00362 } /* dormrz_ */


swiftnav
Author(s):
autogenerated on Sat Jun 8 2019 18:55:47