LAPACK 3.12.1
LAPACK: Linear Algebra PACKage
Loading...
Searching...
No Matches

◆ zsytrf()

subroutine zsytrf ( character uplo,
integer n,
complex*16, dimension( lda, * ) a,
integer lda,
integer, dimension( * ) ipiv,
complex*16, dimension( * ) work,
integer lwork,
integer info )

ZSYTRF

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

Purpose:
!>
!> ZSYTRF computes the factorization of a complex symmetric matrix A
!> using the Bunch-Kaufman diagonal pivoting method.  The form of the
!> factorization is
!>
!>    A = U*D*U**T  or  A = L*D*L**T
!>
!> where U (or L) is a product of permutation and unit upper (lower)
!> triangular matrices, and D is symmetric and block diagonal with
!> 1-by-1 and 2-by-2 diagonal blocks.
!>
!> This is the blocked version of the algorithm, calling Level 3 BLAS.
!> 
Parameters
[in]UPLO
!>          UPLO is CHARACTER*1
!>          = 'U':  Upper triangle of A is stored;
!>          = 'L':  Lower triangle of A is stored.
!> 
[in]N
!>          N is INTEGER
!>          The order of the matrix A.  N >= 0.
!> 
[in,out]A
!>          A is COMPLEX*16 array, dimension (LDA,N)
!>          On entry, the symmetric matrix A.  If UPLO = 'U', the leading
!>          N-by-N upper triangular part of A contains the upper
!>          triangular part of the matrix A, and the strictly lower
!>          triangular part of A is not referenced.  If UPLO = 'L', the
!>          leading N-by-N lower triangular part of A contains the lower
!>          triangular part of the matrix A, and the strictly upper
!>          triangular part of A is not referenced.
!>
!>          On exit, the block diagonal matrix D and the multipliers used
!>          to obtain the factor U or L (see below for further details).
!> 
[in]LDA
!>          LDA is INTEGER
!>          The leading dimension of the array A.  LDA >= max(1,N).
!> 
[out]IPIV
!>          IPIV is INTEGER array, dimension (N)
!>          Details of the interchanges and the block structure of D.
!>          If IPIV(k) > 0, then rows and columns k and IPIV(k) were
!>          interchanged and D(k,k) is a 1-by-1 diagonal block.
!>          If UPLO = 'U' and IPIV(k) = IPIV(k-1) < 0, then rows and
!>          columns k-1 and -IPIV(k) were interchanged and D(k-1:k,k-1:k)
!>          is a 2-by-2 diagonal block.  If UPLO = 'L' and IPIV(k) =
!>          IPIV(k+1) < 0, then rows and columns k+1 and -IPIV(k) were
!>          interchanged and D(k:k+1,k:k+1) is a 2-by-2 diagonal block.
!> 
[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 length of WORK.  LWORK >=1.  For best performance
!>          LWORK >= N*NB, where NB is the block size returned by ILAENV.
!>
!>          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 had an illegal value
!>          > 0:  if INFO = i, D(i,i) is exactly zero.  The factorization
!>                has been completed, but the block diagonal matrix D is
!>                exactly singular, and division by zero will occur if it
!>                is used to solve a system of equations.
!> 
Author
Univ. of Tennessee
Univ. of California Berkeley
Univ. of Colorado Denver
NAG Ltd.
Further Details:
!>
!>  If UPLO = 'U', then A = U*D*U**T, where
!>     U = P(n)*U(n)* ... *P(k)U(k)* ...,
!>  i.e., U is a product of terms P(k)*U(k), where k decreases from n to
!>  1 in steps of 1 or 2, and D is a block diagonal matrix with 1-by-1
!>  and 2-by-2 diagonal blocks D(k).  P(k) is a permutation matrix as
!>  defined by IPIV(k), and U(k) is a unit upper triangular matrix, such
!>  that if the diagonal block D(k) is of order s (s = 1 or 2), then
!>
!>             (   I    v    0   )   k-s
!>     U(k) =  (   0    I    0   )   s
!>             (   0    0    I   )   n-k
!>                k-s   s   n-k
!>
!>  If s = 1, D(k) overwrites A(k,k), and v overwrites A(1:k-1,k).
!>  If s = 2, the upper triangle of D(k) overwrites A(k-1,k-1), A(k-1,k),
!>  and A(k,k), and v overwrites A(1:k-2,k-1:k).
!>
!>  If UPLO = 'L', then A = L*D*L**T, where
!>     L = P(1)*L(1)* ... *P(k)*L(k)* ...,
!>  i.e., L is a product of terms P(k)*L(k), where k increases from 1 to
!>  n in steps of 1 or 2, and D is a block diagonal matrix with 1-by-1
!>  and 2-by-2 diagonal blocks D(k).  P(k) is a permutation matrix as
!>  defined by IPIV(k), and L(k) is a unit lower triangular matrix, such
!>  that if the diagonal block D(k) is of order s (s = 1 or 2), then
!>
!>             (   I    0     0   )  k-1
!>     L(k) =  (   0    I     0   )  s
!>             (   0    v     I   )  n-k-s+1
!>                k-1   s  n-k-s+1
!>
!>  If s = 1, D(k) overwrites A(k,k), and v overwrites A(k+1:n,k).
!>  If s = 2, the lower triangle of D(k) overwrites A(k,k), A(k+1,k),
!>  and A(k+1,k+1), and v overwrites A(k+2:n,k:k+1).
!> 

Definition at line 179 of file zsytrf.f.

180*
181* -- LAPACK computational routine --
182* -- LAPACK is a software package provided by Univ. of Tennessee, --
183* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
184*
185* .. Scalar Arguments ..
186 CHARACTER UPLO
187 INTEGER INFO, LDA, LWORK, N
188* ..
189* .. Array Arguments ..
190 INTEGER IPIV( * )
191 COMPLEX*16 A( LDA, * ), WORK( * )
192* ..
193*
194* =====================================================================
195*
196* .. Local Scalars ..
197 LOGICAL LQUERY, UPPER
198 INTEGER IINFO, IWS, J, K, KB, LDWORK, LWKOPT, NB, NBMIN
199* ..
200* .. External Functions ..
201 LOGICAL LSAME
202 INTEGER ILAENV
203 EXTERNAL lsame, ilaenv
204* ..
205* .. External Subroutines ..
206 EXTERNAL xerbla, zlasyf, zsytf2
207* ..
208* .. Intrinsic Functions ..
209 INTRINSIC max
210* ..
211* .. Executable Statements ..
212*
213* Test the input parameters.
214*
215 info = 0
216 upper = lsame( uplo, 'U' )
217 lquery = ( lwork.EQ.-1 )
218 IF( .NOT.upper .AND. .NOT.lsame( uplo, 'L' ) ) THEN
219 info = -1
220 ELSE IF( n.LT.0 ) THEN
221 info = -2
222 ELSE IF( lda.LT.max( 1, n ) ) THEN
223 info = -4
224 ELSE IF( lwork.LT.1 .AND. .NOT.lquery ) THEN
225 info = -7
226 END IF
227*
228 IF( info.EQ.0 ) THEN
229*
230* Determine the block size
231*
232 nb = ilaenv( 1, 'ZSYTRF', uplo, n, -1, -1, -1 )
233 lwkopt = max( 1, n*nb )
234 work( 1 ) = lwkopt
235 END IF
236*
237 IF( info.NE.0 ) THEN
238 CALL xerbla( 'ZSYTRF', -info )
239 RETURN
240 ELSE IF( lquery ) THEN
241 RETURN
242 END IF
243*
244 nbmin = 2
245 ldwork = n
246 IF( nb.GT.1 .AND. nb.LT.n ) THEN
247 iws = ldwork*nb
248 IF( lwork.LT.iws ) THEN
249 nb = max( lwork / ldwork, 1 )
250 nbmin = max( 2, ilaenv( 2, 'ZSYTRF', uplo, n, -1, -1,
251 $ -1 ) )
252 END IF
253 ELSE
254 iws = 1
255 END IF
256 IF( nb.LT.nbmin )
257 $ nb = n
258*
259 IF( upper ) THEN
260*
261* Factorize A as U*D*U**T using the upper triangle of A
262*
263* K is the main loop index, decreasing from N to 1 in steps of
264* KB, where KB is the number of columns factorized by ZLASYF;
265* KB is either NB or NB-1, or K for the last block
266*
267 k = n
268 10 CONTINUE
269*
270* If K < 1, exit from loop
271*
272 IF( k.LT.1 )
273 $ GO TO 40
274*
275 IF( k.GT.nb ) THEN
276*
277* Factorize columns k-kb+1:k of A and use blocked code to
278* update columns 1:k-kb
279*
280 CALL zlasyf( uplo, k, nb, kb, a, lda, ipiv, work, n,
281 $ iinfo )
282 ELSE
283*
284* Use unblocked code to factorize columns 1:k of A
285*
286 CALL zsytf2( uplo, k, a, lda, ipiv, iinfo )
287 kb = k
288 END IF
289*
290* Set INFO on the first occurrence of a zero pivot
291*
292 IF( info.EQ.0 .AND. iinfo.GT.0 )
293 $ info = iinfo
294*
295* Decrease K and return to the start of the main loop
296*
297 k = k - kb
298 GO TO 10
299*
300 ELSE
301*
302* Factorize A as L*D*L**T using the lower triangle of A
303*
304* K is the main loop index, increasing from 1 to N in steps of
305* KB, where KB is the number of columns factorized by ZLASYF;
306* KB is either NB or NB-1, or N-K+1 for the last block
307*
308 k = 1
309 20 CONTINUE
310*
311* If K > N, exit from loop
312*
313 IF( k.GT.n )
314 $ GO TO 40
315*
316 IF( k.LE.n-nb ) THEN
317*
318* Factorize columns k:k+kb-1 of A and use blocked code to
319* update columns k+kb:n
320*
321 CALL zlasyf( uplo, n-k+1, nb, kb, a( k, k ), lda,
322 $ ipiv( k ),
323 $ work, n, iinfo )
324 ELSE
325*
326* Use unblocked code to factorize columns k:n of A
327*
328 CALL zsytf2( uplo, n-k+1, a( k, k ), lda, ipiv( k ),
329 $ iinfo )
330 kb = n - k + 1
331 END IF
332*
333* Set INFO on the first occurrence of a zero pivot
334*
335 IF( info.EQ.0 .AND. iinfo.GT.0 )
336 $ info = iinfo + k - 1
337*
338* Adjust IPIV
339*
340 DO 30 j = k, k + kb - 1
341 IF( ipiv( j ).GT.0 ) THEN
342 ipiv( j ) = ipiv( j ) + k - 1
343 ELSE
344 ipiv( j ) = ipiv( j ) - k + 1
345 END IF
346 30 CONTINUE
347*
348* Increase K and return to the start of the main loop
349*
350 k = k + kb
351 GO TO 20
352*
353 END IF
354*
355 40 CONTINUE
356 work( 1 ) = lwkopt
357 RETURN
358*
359* End of ZSYTRF
360*
subroutine xerbla(srname, info)
Definition cblat2.f:3285
subroutine zsytf2(uplo, n, a, lda, ipiv, info)
ZSYTF2 computes the factorization of a real symmetric indefinite matrix, using the diagonal pivoting ...
Definition zsytf2.f:189
integer function ilaenv(ispec, name, opts, n1, n2, n3, n4)
ILAENV
Definition ilaenv.f:160
subroutine zlasyf(uplo, n, nb, kb, a, lda, ipiv, w, ldw, info)
ZLASYF computes a partial factorization of a complex symmetric matrix using the Bunch-Kaufman diagona...
Definition zlasyf.f:176
logical function lsame(ca, cb)
LSAME
Definition lsame.f:48
Here is the call graph for this function:
Here is the caller graph for this function: