LAPACK 3.12.1
LAPACK: Linear Algebra PACKage
Loading...
Searching...
No Matches
zungrq.f
Go to the documentation of this file.
1*> \brief \b ZUNGRQ
2*
3* =========== DOCUMENTATION ===========
4*
5* Online html documentation available at
6* http://www.netlib.org/lapack/explore-html/
7*
8*> Download ZUNGRQ + dependencies
9*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/zungrq.f">
10*> [TGZ]</a>
11*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/zungrq.f">
12*> [ZIP]</a>
13*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/zungrq.f">
14*> [TXT]</a>
15*
16* Definition:
17* ===========
18*
19* SUBROUTINE ZUNGRQ( M, N, K, A, LDA, TAU, WORK, LWORK, INFO )
20*
21* .. Scalar Arguments ..
22* INTEGER INFO, K, LDA, LWORK, M, N
23* ..
24* .. Array Arguments ..
25* COMPLEX*16 A( LDA, * ), TAU( * ), WORK( * )
26* ..
27*
28*
29*> \par Purpose:
30* =============
31*>
32*> \verbatim
33*>
34*> ZUNGRQ generates an M-by-N complex matrix Q with orthonormal rows,
35*> which is defined as the last M rows of a product of K elementary
36*> reflectors of order N
37*>
38*> Q = H(1)**H H(2)**H . . . H(k)**H
39*>
40*> as returned by ZGERQF.
41*> \endverbatim
42*
43* Arguments:
44* ==========
45*
46*> \param[in] M
47*> \verbatim
48*> M is INTEGER
49*> The number of rows of the matrix Q. M >= 0.
50*> \endverbatim
51*>
52*> \param[in] N
53*> \verbatim
54*> N is INTEGER
55*> The number of columns of the matrix Q. N >= M.
56*> \endverbatim
57*>
58*> \param[in] K
59*> \verbatim
60*> K is INTEGER
61*> The number of elementary reflectors whose product defines the
62*> matrix Q. M >= K >= 0.
63*> \endverbatim
64*>
65*> \param[in,out] A
66*> \verbatim
67*> A is COMPLEX*16 array, dimension (LDA,N)
68*> On entry, the (m-k+i)-th row must contain the vector which
69*> defines the elementary reflector H(i), for i = 1,2,...,k, as
70*> returned by ZGERQF in the last k rows of its array argument
71*> A.
72*> On exit, the M-by-N matrix Q.
73*> \endverbatim
74*>
75*> \param[in] LDA
76*> \verbatim
77*> LDA is INTEGER
78*> The first dimension of the array A. LDA >= max(1,M).
79*> \endverbatim
80*>
81*> \param[in] TAU
82*> \verbatim
83*> TAU is COMPLEX*16 array, dimension (K)
84*> TAU(i) must contain the scalar factor of the elementary
85*> reflector H(i), as returned by ZGERQF.
86*> \endverbatim
87*>
88*> \param[out] WORK
89*> \verbatim
90*> WORK is COMPLEX*16 array, dimension (MAX(1,LWORK))
91*> On exit, if INFO = 0, WORK(1) returns the optimal LWORK.
92*> \endverbatim
93*>
94*> \param[in] LWORK
95*> \verbatim
96*> LWORK is INTEGER
97*> The dimension of the array WORK. LWORK >= max(1,M).
98*> For optimum performance LWORK >= M*NB, where NB is the
99*> optimal blocksize.
100*>
101*> If LWORK = -1, then a workspace query is assumed; the routine
102*> only calculates the optimal size of the WORK array, returns
103*> this value as the first entry of the WORK array, and no error
104*> message related to LWORK is issued by XERBLA.
105*> \endverbatim
106*>
107*> \param[out] INFO
108*> \verbatim
109*> INFO is INTEGER
110*> = 0: successful exit
111*> < 0: if INFO = -i, the i-th argument has an illegal value
112*> \endverbatim
113*
114* Authors:
115* ========
116*
117*> \author Univ. of Tennessee
118*> \author Univ. of California Berkeley
119*> \author Univ. of Colorado Denver
120*> \author NAG Ltd.
121*
122*> \ingroup ungrq
123*
124* =====================================================================
125 SUBROUTINE zungrq( M, N, K, A, LDA, TAU, WORK, LWORK, INFO )
126*
127* -- LAPACK computational routine --
128* -- LAPACK is a software package provided by Univ. of Tennessee, --
129* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
130*
131* .. Scalar Arguments ..
132 INTEGER INFO, K, LDA, LWORK, M, N
133* ..
134* .. Array Arguments ..
135 COMPLEX*16 A( LDA, * ), TAU( * ), WORK( * )
136* ..
137*
138* =====================================================================
139*
140* .. Parameters ..
141 COMPLEX*16 ZERO
142 parameter( zero = ( 0.0d+0, 0.0d+0 ) )
143* ..
144* .. Local Scalars ..
145 LOGICAL LQUERY
146 INTEGER I, IB, II, IINFO, IWS, J, KK, L, LDWORK,
147 $ LWKOPT, NB, NBMIN, NX
148* ..
149* .. External Subroutines ..
150 EXTERNAL xerbla, zlarfb, zlarft, zungr2
151* ..
152* .. Intrinsic Functions ..
153 INTRINSIC max, min
154* ..
155* .. External Functions ..
156 INTEGER ILAENV
157 EXTERNAL ilaenv
158* ..
159* .. Executable Statements ..
160*
161* Test the input arguments
162*
163 info = 0
164 lquery = ( lwork.EQ.-1 )
165 IF( m.LT.0 ) THEN
166 info = -1
167 ELSE IF( n.LT.m ) THEN
168 info = -2
169 ELSE IF( k.LT.0 .OR. k.GT.m ) THEN
170 info = -3
171 ELSE IF( lda.LT.max( 1, m ) ) THEN
172 info = -5
173 END IF
174*
175 IF( info.EQ.0 ) THEN
176 IF( m.LE.0 ) THEN
177 lwkopt = 1
178 ELSE
179 nb = ilaenv( 1, 'ZUNGRQ', ' ', m, n, k, -1 )
180 lwkopt = m*nb
181 END IF
182 work( 1 ) = lwkopt
183*
184 IF( lwork.LT.max( 1, m ) .AND. .NOT.lquery ) THEN
185 info = -8
186 END IF
187 END IF
188*
189 IF( info.NE.0 ) THEN
190 CALL xerbla( 'ZUNGRQ', -info )
191 RETURN
192 ELSE IF( lquery ) THEN
193 RETURN
194 END IF
195*
196* Quick return if possible
197*
198 IF( m.LE.0 ) THEN
199 RETURN
200 END IF
201*
202 nbmin = 2
203 nx = 0
204 iws = m
205 IF( nb.GT.1 .AND. nb.LT.k ) THEN
206*
207* Determine when to cross over from blocked to unblocked code.
208*
209 nx = max( 0, ilaenv( 3, 'ZUNGRQ', ' ', m, n, k, -1 ) )
210 IF( nx.LT.k ) THEN
211*
212* Determine if workspace is large enough for blocked code.
213*
214 ldwork = m
215 iws = ldwork*nb
216 IF( lwork.LT.iws ) THEN
217*
218* Not enough workspace to use optimal NB: reduce NB and
219* determine the minimum value of NB.
220*
221 nb = lwork / ldwork
222 nbmin = max( 2, ilaenv( 2, 'ZUNGRQ', ' ', m, n, k,
223 $ -1 ) )
224 END IF
225 END IF
226 END IF
227*
228 IF( nb.GE.nbmin .AND. nb.LT.k .AND. nx.LT.k ) THEN
229*
230* Use blocked code after the first block.
231* The last kk rows are handled by the block method.
232*
233 kk = min( k, ( ( k-nx+nb-1 ) / nb )*nb )
234*
235* Set A(1:m-kk,n-kk+1:n) to zero.
236*
237 DO 20 j = n - kk + 1, n
238 DO 10 i = 1, m - kk
239 a( i, j ) = zero
240 10 CONTINUE
241 20 CONTINUE
242 ELSE
243 kk = 0
244 END IF
245*
246* Use unblocked code for the first or only block.
247*
248 CALL zungr2( m-kk, n-kk, k-kk, a, lda, tau, work, iinfo )
249*
250 IF( kk.GT.0 ) THEN
251*
252* Use blocked code
253*
254 DO 50 i = k - kk + 1, k, nb
255 ib = min( nb, k-i+1 )
256 ii = m - k + i
257 IF( ii.GT.1 ) THEN
258*
259* Form the triangular factor of the block reflector
260* H = H(i+ib-1) . . . H(i+1) H(i)
261*
262 CALL zlarft( 'Backward', 'Rowwise', n-k+i+ib-1, ib,
263 $ a( ii, 1 ), lda, tau( i ), work, ldwork )
264*
265* Apply H**H to A(1:m-k+i-1,1:n-k+i+ib-1) from the right
266*
267 CALL zlarfb( 'Right', 'Conjugate transpose',
268 $ 'Backward',
269 $ 'Rowwise', ii-1, n-k+i+ib-1, ib, a( ii, 1 ),
270 $ lda, work, ldwork, a, lda, work( ib+1 ),
271 $ ldwork )
272 END IF
273*
274* Apply H**H to columns 1:n-k+i+ib-1 of current block
275*
276 CALL zungr2( ib, n-k+i+ib-1, ib, a( ii, 1 ), lda,
277 $ tau( i ),
278 $ work, iinfo )
279*
280* Set columns n-k+i+ib:n of current block to zero
281*
282 DO 40 l = n - k + i + ib, n
283 DO 30 j = ii, ii + ib - 1
284 a( j, l ) = zero
285 30 CONTINUE
286 40 CONTINUE
287 50 CONTINUE
288 END IF
289*
290 work( 1 ) = iws
291 RETURN
292*
293* End of ZUNGRQ
294*
295 END
subroutine xerbla(srname, info)
Definition cblat2.f:3285
subroutine zlarfb(side, trans, direct, storev, m, n, k, v, ldv, t, ldt, c, ldc, work, ldwork)
ZLARFB applies a block reflector or its conjugate-transpose to a general rectangular matrix.
Definition zlarfb.f:195
recursive subroutine zlarft(direct, storev, n, k, v, ldv, tau, t, ldt)
ZLARFT forms the triangular factor T of a block reflector H = I - vtvH
Definition zlarft.f:162
subroutine zungr2(m, n, k, a, lda, tau, work, info)
ZUNGR2 generates all or part of the unitary matrix Q from an RQ factorization determined by cgerqf (u...
Definition zungr2.f:112
subroutine zungrq(m, n, k, a, lda, tau, work, lwork, info)
ZUNGRQ
Definition zungrq.f:126