LAPACK 3.12.1
LAPACK: Linear Algebra PACKage
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages

◆ zungql()

subroutine zungql ( integer m,
integer n,
integer k,
complex*16, dimension( lda, * ) a,
integer lda,
complex*16, dimension( * ) tau,
complex*16, dimension( * ) work,
integer lwork,
integer info )

ZUNGQL

Download ZUNGQL + dependencies [TGZ] [ZIP] [TXT]

Purpose:
!> !> ZUNGQL generates an M-by-N complex matrix Q with orthonormal columns, !> which is defined as the last N columns of a product of K elementary !> reflectors of order M !> !> Q = H(k) . . . H(2) H(1) !> !> as returned by ZGEQLF. !>
Parameters
[in]M
!> M is INTEGER !> The number of rows of the matrix Q. M >= 0. !>
[in]N
!> N is INTEGER !> The number of columns of the matrix Q. M >= N >= 0. !>
[in]K
!> K is INTEGER !> The number of elementary reflectors whose product defines the !> matrix Q. N >= K >= 0. !>
[in,out]A
!> A is COMPLEX*16 array, dimension (LDA,N) !> On entry, the (n-k+i)-th column must contain the vector which !> defines the elementary reflector H(i), for i = 1,2,...,k, as !> returned by ZGEQLF in the last k columns of its array !> argument A. !> On exit, the M-by-N matrix Q. !>
[in]LDA
!> LDA is INTEGER !> The first dimension of the array A. LDA >= max(1,M). !>
[in]TAU
!> TAU is COMPLEX*16 array, dimension (K) !> TAU(i) must contain the scalar factor of the elementary !> reflector H(i), as returned by ZGEQLF. !>
[out]WORK
!> WORK is COMPLEX*16 array, dimension (MAX(1,LWORK)) !> On exit, if INFO = 0, WORK(1) returns the optimal LWORK. !>
[in]LWORK
!> LWORK is INTEGER !> The dimension of the array WORK. LWORK >= max(1,N). !> For optimum performance LWORK >= N*NB, where NB is the !> optimal blocksize. !> !> If LWORK = -1, then a workspace query is assumed; the routine !> only calculates the optimal size of the WORK array, returns !> this value as the first entry of the WORK array, and no error !> message related to LWORK is issued by XERBLA. !>
[out]INFO
!> INFO is INTEGER !> = 0: successful exit !> < 0: if INFO = -i, the i-th argument has an illegal value !>
Author
Univ. of Tennessee
Univ. of California Berkeley
Univ. of Colorado Denver
NAG Ltd.

Definition at line 125 of file zungql.f.

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, IINFO, IWS, J, KK, L, LDWORK, LWKOPT,
147 $ NB, NBMIN, NX
148* ..
149* .. External Subroutines ..
150 EXTERNAL xerbla, zlarfb, zlarft, zung2l
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.0 .OR. n.GT.m ) THEN
168 info = -2
169 ELSE IF( k.LT.0 .OR. k.GT.n ) 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( n.EQ.0 ) THEN
177 lwkopt = 1
178 ELSE
179 nb = ilaenv( 1, 'ZUNGQL', ' ', m, n, k, -1 )
180 lwkopt = n*nb
181 END IF
182 work( 1 ) = lwkopt
183*
184 IF( lwork.LT.max( 1, n ) .AND. .NOT.lquery ) THEN
185 info = -8
186 END IF
187 END IF
188*
189 IF( info.NE.0 ) THEN
190 CALL xerbla( 'ZUNGQL', -info )
191 RETURN
192 ELSE IF( lquery ) THEN
193 RETURN
194 END IF
195*
196* Quick return if possible
197*
198 IF( n.LE.0 ) THEN
199 RETURN
200 END IF
201*
202 nbmin = 2
203 nx = 0
204 iws = n
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, 'ZUNGQL', ' ', m, n, k, -1 ) )
210 IF( nx.LT.k ) THEN
211*
212* Determine if workspace is large enough for blocked code.
213*
214 ldwork = n
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, 'ZUNGQL', ' ', 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 columns are handled by the block method.
232*
233 kk = min( k, ( ( k-nx+nb-1 ) / nb )*nb )
234*
235* Set A(m-kk+1:m,1:n-kk) to zero.
236*
237 DO 20 j = 1, n - kk
238 DO 10 i = m - kk + 1, m
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 zung2l( 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 IF( n-k+i.GT.1 ) THEN
257*
258* Form the triangular factor of the block reflector
259* H = H(i+ib-1) . . . H(i+1) H(i)
260*
261 CALL zlarft( 'Backward', 'Columnwise', m-k+i+ib-1, ib,
262 $ a( 1, n-k+i ), lda, tau( i ), work, ldwork )
263*
264* Apply H to A(1:m-k+i+ib-1,1:n-k+i-1) from the left
265*
266 CALL zlarfb( 'Left', 'No transpose', 'Backward',
267 $ 'Columnwise', m-k+i+ib-1, n-k+i-1, ib,
268 $ a( 1, n-k+i ), lda, work, ldwork, a, lda,
269 $ work( ib+1 ), ldwork )
270 END IF
271*
272* Apply H to rows 1:m-k+i+ib-1 of current block
273*
274 CALL zung2l( m-k+i+ib-1, ib, ib, a( 1, n-k+i ), lda,
275 $ tau( i ), work, iinfo )
276*
277* Set rows m-k+i+ib:m of current block to zero
278*
279 DO 40 j = n - k + i, n - k + i + ib - 1
280 DO 30 l = m - k + i + ib, m
281 a( l, j ) = zero
282 30 CONTINUE
283 40 CONTINUE
284 50 CONTINUE
285 END IF
286*
287 work( 1 ) = iws
288 RETURN
289*
290* End of ZUNGQL
291*
subroutine xerbla(srname, info)
Definition cblat2.f:3285
integer function ilaenv(ispec, name, opts, n1, n2, n3, n4)
ILAENV
Definition ilaenv.f:160
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 zung2l(m, n, k, a, lda, tau, work, info)
ZUNG2L generates all or part of the unitary matrix Q from a QL factorization determined by cgeqlf (un...
Definition zung2l.f:112
Here is the call graph for this function:
Here is the caller graph for this function: