LAPACK 3.3.0
|
00001 SUBROUTINE CPOTRF ( UPLO, N, A, LDA, INFO ) 00002 * 00003 * -- LAPACK routine (version 3.1) -- 00004 * Univ. of Tennessee, Univ. of California Berkeley and NAG Ltd.. 00005 * March 2008 00006 * 00007 * .. Scalar Arguments .. 00008 CHARACTER UPLO 00009 INTEGER INFO, LDA, N 00010 * .. 00011 * .. Array Arguments .. 00012 COMPLEX A( LDA, * ) 00013 * .. 00014 * 00015 * Purpose 00016 * ======= 00017 * 00018 * CPOTRF computes the Cholesky factorization of a real Hermitian 00019 * positive definite matrix A. 00020 * 00021 * The factorization has the form 00022 * A = U**H * U, if UPLO = 'U', or 00023 * A = L * L**H, if UPLO = 'L', 00024 * where U is an upper triangular matrix and L is lower triangular. 00025 * 00026 * This is the right looking block version of the algorithm, calling Level 3 BLAS. 00027 * 00028 * Arguments 00029 * ========= 00030 * 00031 * UPLO (input) CHARACTER*1 00032 * = 'U': Upper triangle of A is stored; 00033 * = 'L': Lower triangle of A is stored. 00034 * 00035 * N (input) INTEGER 00036 * The order of the matrix A. N >= 0. 00037 * 00038 * A (input/output) COMPLEX array, dimension (LDA,N) 00039 * On entry, the Hermitian matrix A. If UPLO = 'U', the leading 00040 * N-by-N upper triangular part of A contains the upper 00041 * triangular part of the matrix A, and the strictly lower 00042 * triangular part of A is not referenced. If UPLO = 'L', the 00043 * leading N-by-N lower triangular part of A contains the lower 00044 * triangular part of the matrix A, and the strictly upper 00045 * triangular part of A is not referenced. 00046 * 00047 * On exit, if INFO = 0, the factor U or L from the Cholesky 00048 * factorization A = U**H*U or A = L*L**H. 00049 * 00050 * LDA (input) INTEGER 00051 * The leading dimension of the array A. LDA >= max(1,N). 00052 * 00053 * INFO (output) INTEGER 00054 * = 0: successful exit 00055 * < 0: if INFO = -i, the i-th argument had an illegal value 00056 * > 0: if INFO = i, the leading minor of order i is not 00057 * positive definite, and the factorization could not be 00058 * completed. 00059 * 00060 * ===================================================================== 00061 * 00062 * .. Parameters .. 00063 REAL ONE 00064 COMPLEX CONE 00065 PARAMETER ( ONE = 1.0E+0, CONE = ( 1.0E+0, 0.0E+0 ) ) 00066 * .. 00067 * .. Local Scalars .. 00068 LOGICAL UPPER 00069 INTEGER J, JB, NB 00070 * .. 00071 * .. External Functions .. 00072 LOGICAL LSAME 00073 INTEGER ILAENV 00074 EXTERNAL LSAME, ILAENV 00075 * .. 00076 * .. External Subroutines .. 00077 EXTERNAL CGEMM, CPOTF2, CHERK, CTRSM, XERBLA 00078 * .. 00079 * .. Intrinsic Functions .. 00080 INTRINSIC MAX, MIN 00081 * .. 00082 * .. Executable Statements .. 00083 * 00084 * Test the input parameters. 00085 * 00086 INFO = 0 00087 UPPER = LSAME( UPLO, 'U' ) 00088 IF( .NOT.UPPER .AND. .NOT.LSAME( UPLO, 'L' ) ) THEN 00089 INFO = -1 00090 ELSE IF( N.LT.0 ) THEN 00091 INFO = -2 00092 ELSE IF( LDA.LT.MAX( 1, N ) ) THEN 00093 INFO = -4 00094 END IF 00095 IF( INFO.NE.0 ) THEN 00096 CALL XERBLA( 'CPOTRF', -INFO ) 00097 RETURN 00098 END IF 00099 * 00100 * Quick return if possible 00101 * 00102 IF( N.EQ.0 ) 00103 $ RETURN 00104 * 00105 * Determine the block size for this environment. 00106 * 00107 NB = ILAENV( 1, 'CPOTRF', UPLO, N, -1, -1, -1 ) 00108 IF( NB.LE.1 .OR. NB.GE.N ) THEN 00109 * 00110 * Use unblocked code. 00111 * 00112 CALL CPOTF2( UPLO, N, A, LDA, INFO ) 00113 ELSE 00114 * 00115 * Use blocked code. 00116 * 00117 IF( UPPER ) THEN 00118 * 00119 * Compute the Cholesky factorization A = U'*U. 00120 * 00121 DO 10 J = 1, N, NB 00122 * 00123 * Update and factorize the current diagonal block and test 00124 * for non-positive-definiteness. 00125 * 00126 JB = MIN( NB, N-J+1 ) 00127 00128 CALL CPOTF2( 'Upper', JB, A( J, J ), LDA, INFO ) 00129 00130 IF( INFO.NE.0 ) 00131 $ GO TO 30 00132 00133 IF( J+JB.LE.N ) THEN 00134 * 00135 * Updating the trailing submatrix. 00136 * 00137 CALL CTRSM( 'Left', 'Upper', 'Conjugate Transpose', 00138 $ 'Non-unit', JB, N-J-JB+1, CONE, A( J, J ), 00139 $ LDA, A( J, J+JB ), LDA ) 00140 CALL CHERK( 'Upper', 'Conjugate transpose', N-J-JB+1, 00141 $ JB, -ONE, A( J, J+JB ), LDA, 00142 $ ONE, A( J+JB, J+JB ), LDA ) 00143 END IF 00144 10 CONTINUE 00145 * 00146 ELSE 00147 * 00148 * Compute the Cholesky factorization A = L*L'. 00149 * 00150 DO 20 J = 1, N, NB 00151 * 00152 * Update and factorize the current diagonal block and test 00153 * for non-positive-definiteness. 00154 * 00155 JB = MIN( NB, N-J+1 ) 00156 00157 CALL CPOTF2( 'Lower', JB, A( J, J ), LDA, INFO ) 00158 00159 IF( INFO.NE.0 ) 00160 $ GO TO 30 00161 00162 IF( J+JB.LE.N ) THEN 00163 * 00164 * Updating the trailing submatrix. 00165 * 00166 CALL CTRSM( 'Right', 'Lower', 'Conjugate Transpose', 00167 $ 'Non-unit', N-J-JB+1, JB, CONE, A( J, J ), 00168 $ LDA, A( J+JB, J ), LDA ) 00169 00170 CALL CHERK( 'Lower', 'No Transpose', N-J-JB+1, JB, 00171 $ -ONE, A( J+JB, J ), LDA, 00172 $ ONE, A( J+JB, J+JB ), LDA ) 00173 END IF 00174 20 CONTINUE 00175 END IF 00176 END IF 00177 GO TO 40 00178 * 00179 30 CONTINUE 00180 INFO = INFO + J - 1 00181 * 00182 40 CONTINUE 00183 RETURN 00184 * 00185 * End of CPOTRF 00186 * 00187 END