Lots of trailing whitespaces in the files of Syd. Cleaning this. No big deal.
[platform/upstream/lapack.git] / SRC / slamtsqr.f
1 *
2 *  Definition:
3 *  ===========
4 *
5 *      SUBROUTINE SLAMTSQR( SIDE, TRANS, M, N, K, MB, NB, A, LDA, T,
6 *     $                     LDT, C, LDC, WORK, LWORK, INFO )
7 *
8 *
9 *     .. Scalar Arguments ..
10 *      CHARACTER         SIDE, TRANS
11 *      INTEGER           INFO, LDA, M, N, K, MB, NB, LDT, LWORK, LDC
12 *     ..
13 *     .. Array Arguments ..
14 *      DOUBLE        A( LDA, * ), WORK( * ), C(LDC, * ),
15 *     $                  T( LDT, * )
16 *> \par Purpose:
17 *  =============
18 *>
19 *> \verbatim
20 *>
21 *>      SLAMTSQR overwrites the general real M-by-N matrix C with
22 *>
23 *>
24 *>                 SIDE = 'L'     SIDE = 'R'
25 *> TRANS = 'N':      Q * C          C * Q
26 *> TRANS = 'T':      Q**T * C       C * Q**T
27 *>      where Q is a real orthogonal matrix defined as the product
28 *>      of blocked elementary reflectors computed by tall skinny
29 *>      QR factorization (DLATSQR)
30 *> \endverbatim
31 *
32 *  Arguments:
33 *  ==========
34 *
35 *> \param[in] SIDE
36 *>          SIDE is CHARACTER*1
37 *>          = 'L': apply Q or Q**T from the Left;
38 *>          = 'R': apply Q or Q**T from the Right.
39 *>
40 *> \param[in] TRANS
41 *>          TRANS is CHARACTER*1
42 *>          = 'N':  No transpose, apply Q;
43 *>          = 'T':  Transpose, apply Q**T.
44 *> \param[in] M
45 *> \verbatim
46 *>          M is INTEGER
47 *>          The number of rows of the matrix A.  M >=0.
48 *> \endverbatim
49 *>
50 *> \param[in] N
51 *> \verbatim
52 *>          N is INTEGER
53 *>          The number of columns of the matrix C. M >= N >= 0.
54 *> \endverbatim
55 *>
56 *> \param[in] K
57 *> \verbatim
58 *>          K is INTEGER
59 *>          The number of elementary reflectors whose product defines
60 *>          the matrix Q.
61 *>          N >= K >= 0;
62 *>
63 *> \endverbatim
64 *>
65 *> \param[in] MB
66 *> \verbatim
67 *>          MB is INTEGER
68 *>          The block size to be used in the blocked QR.
69 *>          MB > N. (must be the same as DLATSQR)
70 *> \endverbatim
71 *>
72 *> \param[in] NB
73 *> \verbatim
74 *>          NB is INTEGER
75 *>          The column block size to be used in the blocked QR.
76 *>          N >= NB >= 1.
77 *> \endverbatim
78 *>
79 *> \param[in,out] A
80 *> \verbatim
81 *>          A is REAL array, dimension (LDA,K)
82 *>          The i-th column must contain the vector which defines the
83 *>          blockedelementary reflector H(i), for i = 1,2,...,k, as
84 *>          returned by DLATSQR in the first k columns of
85 *>          its array argument A.
86 *> \endverbatim
87 *>
88 *> \param[in] LDA
89 *> \verbatim
90 *>          LDA is INTEGER
91 *>          The leading dimension of the array A.
92 *>          If SIDE = 'L', LDA >= max(1,M);
93 *>          if SIDE = 'R', LDA >= max(1,N).
94 *> \endverbatim
95 *>
96 *> \param[in] T
97 *> \verbatim
98 *>          T is REAL array, dimension
99 *>          ( N * Number of blocks(CEIL(M-K/MB-K)),
100 *>          The blocked upper triangular block reflectors stored in compact form
101 *>          as a sequence of upper triangular blocks.  See below
102 *>          for further details.
103 *> \endverbatim
104 *>
105 *> \param[in] LDT
106 *> \verbatim
107 *>          LDT is INTEGER
108 *>          The leading dimension of the array T.  LDT >= NB.
109 *> \endverbatim
110 *>
111 *> \param[in,out] C
112 *>          C is REAL array, dimension (LDC,N)
113 *>          On entry, the M-by-N matrix C.
114 *>          On exit, C is overwritten by Q*C or Q**T*C or C*Q**T or C*Q.
115 *> \param[in] LDC
116 *>          LDC is INTEGER
117 *>          The leading dimension of the array C. LDC >= max(1,M).
118 *>
119 *> \param[out] WORK
120 *> \verbatim
121 *>         (workspace) REAL array, dimension (MAX(1,LWORK))
122 *>
123 *> \endverbatim
124 *> \param[in] LWORK
125 *> \verbatim
126 *>          LWORK is INTEGER
127 *>          The dimension of the array WORK.
128 *>
129 *>          If SIDE = 'L', LWORK >= max(1,N)*NB;
130 *>          if SIDE = 'R', LWORK >= max(1,MB)*NB.
131 *>          If LWORK = -1, then a workspace query is assumed; the routine
132 *>          only calculates the optimal size of the WORK array, returns
133 *>          this value as the first entry of the WORK array, and no error
134 *>          message related to LWORK is issued by XERBLA.
135 *>
136 *> \endverbatim
137 *> \param[out] INFO
138 *> \verbatim
139 *>          INFO is INTEGER
140 *>          = 0:  successful exit
141 *>          < 0:  if INFO = -i, the i-th argument had an illegal value
142 *> \endverbatim
143 *
144 *  Authors:
145 *  ========
146 *
147 *> \author Univ. of Tennessee
148 *> \author Univ. of California Berkeley
149 *> \author Univ. of Colorado Denver
150 *> \author NAG Ltd.
151 *
152 *> \par Further Details:
153 *  =====================
154 *>
155 *> \verbatim
156 *> Tall-Skinny QR (TSQR) performs QR by a sequence of orthogonal transformations,
157 *> representing Q as a product of other orthogonal matrices
158 *>   Q = Q(1) * Q(2) * . . . * Q(k)
159 *> where each Q(i) zeros out subdiagonal entries of a block of MB rows of A:
160 *>   Q(1) zeros out the subdiagonal entries of rows 1:MB of A
161 *>   Q(2) zeros out the bottom MB-N rows of rows [1:N,MB+1:2*MB-N] of A
162 *>   Q(3) zeros out the bottom MB-N rows of rows [1:N,2*MB-N+1:3*MB-2*N] of A
163 *>   . . .
164 *>
165 *> Q(1) is computed by GEQRT, which represents Q(1) by Householder vectors
166 *> stored under the diagonal of rows 1:MB of A, and by upper triangular
167 *> block reflectors, stored in array T(1:LDT,1:N).
168 *> For more information see Further Details in GEQRT.
169 *>
170 *> Q(i) for i>1 is computed by TPQRT, which represents Q(i) by Householder vectors
171 *> stored in rows [(i-1)*(MB-N)+N+1:i*(MB-N)+N] of A, and by upper triangular
172 *> block reflectors, stored in array T(1:LDT,(i-1)*N+1:i*N).
173 *> The last Q(k) may use fewer rows.
174 *> For more information see Further Details in TPQRT.
175 *>
176 *> For more details of the overall algorithm, see the description of
177 *> Sequential TSQR in Section 2.2 of [1].
178 *>
179 *> [1] “Communication-Optimal Parallel and Sequential QR and LU Factorizations,”
180 *>     J. Demmel, L. Grigori, M. Hoemmen, J. Langou,
181 *>     SIAM J. Sci. Comput, vol. 34, no. 1, 2012
182 *> \endverbatim
183 *>
184 *  =====================================================================
185       SUBROUTINE SLAMTSQR( SIDE, TRANS, M, N, K, MB, NB, A, LDA, T,
186      $        LDT, C, LDC, WORK, LWORK, INFO )
187 *
188 *  -- LAPACK computational routine (version 3.5.0) --
189 *  -- LAPACK is a software package provided by Univ. of Tennessee,    --
190 *  -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
191 *     November 2013
192 *
193 *     .. Scalar Arguments ..
194       CHARACTER         SIDE, TRANS
195       INTEGER           INFO, LDA, M, N, K, MB, NB, LDT, LWORK, LDC
196 *     ..
197 *     .. Array Arguments ..
198       REAL              A( LDA, * ), WORK( * ), C(LDC, * ),
199      $                T( LDT, * )
200 *     ..
201 *
202 * =====================================================================
203 *
204 *     ..
205 *     .. Local Scalars ..
206       LOGICAL    LEFT, RIGHT, TRAN, NOTRAN, LQUERY
207       INTEGER    I, II, KK, LW, CTR
208 *     ..
209 *     .. External Functions ..
210       LOGICAL            LSAME
211       EXTERNAL           LSAME
212 *     .. External Subroutines ..
213       EXTERNAL           SGEMQRT, STPMQRT, XERBLA
214 *     ..
215 *     .. Executable Statements ..
216 *
217 *     Test the input arguments
218 *
219       LQUERY  = LWORK.LT.0
220       NOTRAN  = LSAME( TRANS, 'N' )
221       TRAN    = LSAME( TRANS, 'T' )
222       LEFT    = LSAME( SIDE, 'L' )
223       RIGHT   = LSAME( SIDE, 'R' )
224       IF (LEFT) THEN
225         LW = N * NB
226       ELSE
227         LW = MB * NB
228       END IF
229 *
230       INFO = 0
231       IF( .NOT.LEFT .AND. .NOT.RIGHT ) THEN
232          INFO = -1
233       ELSE IF( .NOT.TRAN .AND. .NOT.NOTRAN ) THEN
234          INFO = -2
235       ELSE IF( M.LT.0 ) THEN
236         INFO = -3
237       ELSE IF( N.LT.0 ) THEN
238         INFO = -4
239       ELSE IF( K.LT.0 ) THEN
240         INFO = -5
241       ELSE IF( LDA.LT.MAX( 1, K ) ) THEN
242         INFO = -9
243       ELSE IF( LDT.LT.MAX( 1, NB) ) THEN
244         INFO = -11
245       ELSE IF( LDC.LT.MAX( 1, M ) ) THEN
246          INFO = -13
247       ELSE IF(( LWORK.LT.MAX(1,LW)).AND.(.NOT.LQUERY)) THEN
248         INFO = -15
249       END IF
250       IF( INFO.EQ.0)  THEN
251 *
252 *     Determine the block size if it is tall skinny or short and wide
253 *
254       IF( INFO.EQ.0)  THEN
255           WORK(1) = LW
256       END IF
257       END IF
258       IF( INFO.NE.0 ) THEN
259         CALL XERBLA( 'SLAMTSQR', -INFO )
260         RETURN
261       ELSE IF (LQUERY) THEN
262        RETURN
263       END IF
264 *
265 *     Quick return if possible
266 *
267       IF( MIN(M,N,K).EQ.0 ) THEN
268         RETURN
269       END IF
270 *
271       IF((MB.LE.K).OR.(MB.GE.MAX(M,N,K))) THEN
272         CALL SGEMQRT( SIDE, TRANS, M, N, K, NB, A, LDA,
273      $        T, LDT, C, LDC, WORK, INFO)
274         RETURN
275        END IF
276 *
277       IF(LEFT.AND.NOTRAN) THEN
278 *
279 *         Multiply Q to the last block of C
280 *
281          KK = MOD((M-K),(MB-K))
282          CTR = (M-K)/(MB-K)
283          IF (KK.GT.0) THEN
284            II=M-KK+1
285            CALL STPMQRT('L','N',KK , N, K, 0, NB, A(II,1), LDA,
286      $       T(1,CTR*K+1),LDT , C(1,1), LDC,
287      $       C(II,1), LDC, WORK, INFO )
288          ELSE
289            II=M+1
290          END IF
291 *
292          DO I=II-(MB-K),MB+1,-(MB-K)
293 *
294 *         Multiply Q to the current block of C (I:I+MB,1:N)
295 *
296            CTR = CTR - 1
297            CALL STPMQRT('L','N',MB-K , N, K, 0,NB, A(I,1), LDA,
298      $         T(1, CTR * K + 1), LDT, C(1,1), LDC,
299      $         C(I,1), LDC, WORK, INFO )
300 *
301          END DO
302 *
303 *         Multiply Q to the first block of C (1:MB,1:N)
304 *
305          CALL SGEMQRT('L','N',MB , N, K, NB, A(1,1), LDA, T
306      $            ,LDT ,C(1,1), LDC, WORK, INFO )
307 *
308       ELSE IF (LEFT.AND.TRAN) THEN
309 *
310 *         Multiply Q to the first block of C
311 *
312          KK = MOD((M-K),(MB-K))
313          II=M-KK+1
314          CTR = 1
315          CALL SGEMQRT('L','T',MB , N, K, NB, A(1,1), LDA, T
316      $            ,LDT ,C(1,1), LDC, WORK, INFO )
317 *
318          DO I=MB+1,II-MB+K,(MB-K)
319 *
320 *         Multiply Q to the current block of C (I:I+MB,1:N)
321 *
322           CALL STPMQRT('L','T',MB-K , N, K, 0,NB, A(I,1), LDA,
323      $       T(1,CTR * K + 1),LDT, C(1,1), LDC,
324      $       C(I,1), LDC, WORK, INFO )
325           CTR = CTR + 1
326 *
327          END DO
328          IF(II.LE.M) THEN
329 *
330 *         Multiply Q to the last block of C
331 *
332           CALL STPMQRT('L','T',KK , N, K, 0,NB, A(II,1), LDA,
333      $      T(1, CTR * K + 1), LDT, C(1,1), LDC,
334      $      C(II,1), LDC, WORK, INFO )
335 *
336          END IF
337 *
338       ELSE IF(RIGHT.AND.TRAN) THEN
339 *
340 *         Multiply Q to the last block of C
341 *
342           KK = MOD((N-K),(MB-K))
343           CTR = (N-K)/(MB-K)
344           IF (KK.GT.0) THEN
345             II=N-KK+1
346             CALL STPMQRT('R','T',M , KK, K, 0, NB, A(II,1), LDA,
347      $        T(1, CTR * K + 1), LDT, C(1,1), LDC,
348      $        C(1,II), LDC, WORK, INFO )
349           ELSE
350             II=N+1
351           END IF
352 *
353           DO I=II-(MB-K),MB+1,-(MB-K)
354 *
355 *         Multiply Q to the current block of C (1:M,I:I+MB)
356 *
357               CTR = CTR - 1
358               CALL STPMQRT('R','T',M , MB-K, K, 0,NB, A(I,1), LDA,
359      $          T(1, CTR * K + 1), LDT, C(1,1), LDC,
360      $          C(1,I), LDC, WORK, INFO )
361           END DO
362 *
363 *         Multiply Q to the first block of C (1:M,1:MB)
364 *
365           CALL SGEMQRT('R','T',M , MB, K, NB, A(1,1), LDA, T
366      $              ,LDT ,C(1,1), LDC, WORK, INFO )
367 *
368       ELSE IF (RIGHT.AND.NOTRAN) THEN
369 *
370 *         Multiply Q to the first block of C
371 *
372          KK = MOD((N-K),(MB-K))
373          II=N-KK+1
374          CTR = 1
375          CALL SGEMQRT('R','N', M, MB , K, NB, A(1,1), LDA, T
376      $              ,LDT ,C(1,1), LDC, WORK, INFO )
377 *
378          DO I=MB+1,II-MB+K,(MB-K)
379 *
380 *         Multiply Q to the current block of C (1:M,I:I+MB)
381 *
382           CALL STPMQRT('R','N', M, MB-K, K, 0,NB, A(I,1), LDA,
383      $         T(1, CTR * K + 1),LDT, C(1,1), LDC,
384      $         C(1,I), LDC, WORK, INFO )
385           CTR = CTR + 1
386 *
387          END DO
388          IF(II.LE.N) THEN
389 *
390 *         Multiply Q to the last block of C
391 *
392           CALL STPMQRT('R','N', M, KK , K, 0,NB, A(II,1), LDA,
393      $        T(1, CTR * K + 1),LDT, C(1,1), LDC,
394      $        C(1,II), LDC, WORK, INFO )
395 *
396          END IF
397 *
398       END IF
399 *
400       WORK(1) = LW
401       RETURN
402 *
403 *     End of SLAMTSQR
404 *
405       END