dpotrf.c
Go to the documentation of this file.
00001 /* dpotrf.f -- translated by f2c (version 20061008).
00002    You must link the resulting object file with libf2c:
00003         on Microsoft Windows system, link with libf2c.lib;
00004         on Linux or Unix systems, link with .../path/to/libf2c.a -lm
00005         or, if you install libf2c.a in a standard place, with -lf2c -lm
00006         -- in that order, at the end of the command line, as in
00007                 cc *.o -lf2c -lm
00008         Source for libf2c is in /netlib/f2c/libf2c.zip, e.g.,
00009 
00010                 http://www.netlib.org/f2c/libf2c.zip
00011 */
00012 
00013 #include "f2c.h"
00014 #include "blaswrap.h"
00015 
00016 /* Table of constant values */
00017 
00018 static integer c__1 = 1;
00019 static integer c_n1 = -1;
00020 static doublereal c_b15 = 1.;
00021 static doublereal c_b18 = -1.;
00022 
00023 /* Subroutine */ int dpotrf_(char *uplo, integer *n, doublereal *a, integer *
00024         lda, integer *info)
00025 {
00026     /* System generated locals */
00027     integer a_dim1, a_offset, i__1, i__2, i__3, i__4;
00028 
00029     /* Local variables */
00030     integer j, jb, nb;
00031     extern logical lsame_(char *, char *);
00032     extern /* Subroutine */ int dtrsm_(char *, char *, char *, char *, 
00033             integer *, integer *, doublereal *, doublereal *, integer *, 
00034             doublereal *, integer *);
00035     logical upper;
00036     extern /* Subroutine */ int dsyrk_(char *, char *, integer *, integer *, 
00037             doublereal *, doublereal *, integer *, doublereal *, doublereal *, 
00038              integer *), dpotf2_(char *, integer *, 
00039             doublereal *, integer *, integer *), xerbla_(char *, 
00040             integer *);
00041     extern integer ilaenv_(integer *, char *, char *, integer *, integer *, 
00042             integer *, integer *);
00043 
00044 
00045 /*  -- LAPACK routine (version 3.1) -- */
00046 /*     Univ. of Tennessee, Univ. of California Berkeley and NAG Ltd.. */
00047 /*     March 2008 */
00048 
00049 /*     .. Scalar Arguments .. */
00050 /*     .. */
00051 /*     .. Array Arguments .. */
00052 /*     .. */
00053 
00054 /*  Purpose */
00055 /*  ======= */
00056 
00057 /*  DPOTRF computes the Cholesky factorization of a real symmetric */
00058 /*  positive definite matrix A. */
00059 
00060 /*  The factorization has the form */
00061 /*     A = U**T * U,  if UPLO = 'U', or */
00062 /*     A = L  * L**T,  if UPLO = 'L', */
00063 /*  where U is an upper triangular matrix and L is lower triangular. */
00064 
00065 /*  This is the top-looking block version of the algorithm, calling Level 3 BLAS. */
00066 
00067 /*  Arguments */
00068 /*  ========= */
00069 
00070 /*  UPLO    (input) CHARACTER*1 */
00071 /*          = 'U':  Upper triangle of A is stored; */
00072 /*          = 'L':  Lower triangle of A is stored. */
00073 
00074 /*  N       (input) INTEGER */
00075 /*          The order of the matrix A.  N >= 0. */
00076 
00077 /*  A       (input/output) DOUBLE PRECISION array, dimension (LDA,N) */
00078 /*          On entry, the symmetric matrix A.  If UPLO = 'U', the leading */
00079 /*          N-by-N upper triangular part of A contains the upper */
00080 /*          triangular part of the matrix A, and the strictly lower */
00081 /*          triangular part of A is not referenced.  If UPLO = 'L', the */
00082 /*          leading N-by-N lower triangular part of A contains the lower */
00083 /*          triangular part of the matrix A, and the strictly upper */
00084 /*          triangular part of A is not referenced. */
00085 
00086 /*          On exit, if INFO = 0, the factor U or L from the Cholesky */
00087 /*          factorization A = U**T*U or A = L*L**T. */
00088 
00089 /*  LDA     (input) INTEGER */
00090 /*          The leading dimension of the array A.  LDA >= max(1,N). */
00091 
00092 /*  INFO    (output) INTEGER */
00093 /*          = 0:  successful exit */
00094 /*          < 0:  if INFO = -i, the i-th argument had an illegal value */
00095 /*          > 0:  if INFO = i, the leading minor of order i is not */
00096 /*                positive definite, and the factorization could not be */
00097 /*                completed. */
00098 
00099 /*  ===================================================================== */
00100 
00101 /*     .. Parameters .. */
00102 /*     .. */
00103 /*     .. Local Scalars .. */
00104 /*     .. */
00105 /*     .. External Functions .. */
00106 /*     .. */
00107 /*     .. External Subroutines .. */
00108 /*     .. */
00109 /*     .. Intrinsic Functions .. */
00110 /*     .. */
00111 /*     .. Executable Statements .. */
00112 
00113 /*     Test the input parameters. */
00114 
00115     /* Parameter adjustments */
00116     a_dim1 = *lda;
00117     a_offset = 1 + a_dim1;
00118     a -= a_offset;
00119 
00120     /* Function Body */
00121     *info = 0;
00122     upper = lsame_(uplo, "U");
00123     if (! upper && ! lsame_(uplo, "L")) {
00124         *info = -1;
00125     } else if (*n < 0) {
00126         *info = -2;
00127     } else if (*lda < max(1,*n)) {
00128         *info = -4;
00129     }
00130     if (*info != 0) {
00131         i__1 = -(*info);
00132         xerbla_("DPOTRF", &i__1);
00133         return 0;
00134     }
00135 
00136 /*     Quick return if possible */
00137 
00138     if (*n == 0) {
00139         return 0;
00140     }
00141 
00142 /*     Determine the block size for this environment. */
00143 
00144     nb = ilaenv_(&c__1, "DPOTRF", uplo, n, &c_n1, &c_n1, &c_n1);
00145     if (nb <= 1 || nb >= *n) {
00146 
00147 /*        Use unblocked code. */
00148 
00149         dpotf2_(uplo, n, &a[a_offset], lda, info);
00150     } else {
00151 
00152 /*        Use blocked code. */
00153 
00154         if (upper) {
00155 
00156 /*           Compute the Cholesky factorization A = U'*U. */
00157 
00158             i__1 = *n;
00159             i__2 = nb;
00160             for (j = 1; i__2 < 0 ? j >= i__1 : j <= i__1; j += i__2) {
00161 /* Computing MIN */
00162                 i__3 = nb, i__4 = *n - j + 1;
00163                 jb = min(i__3,i__4);
00164 
00165 /*              Compute the current block. */
00166 
00167                 i__3 = j - 1;
00168                 dtrsm_("Left", "Upper", "Transpose", "Non-unit", &i__3, &jb, &
00169                         c_b15, &a[a_dim1 + 1], lda, &a[j * a_dim1 + 1], lda);
00170                 i__3 = j - 1;
00171                 dsyrk_("Upper", "Transpose", &jb, &i__3, &c_b18, &a[j * 
00172                         a_dim1 + 1], lda, &c_b15, &a[j + j * a_dim1], lda);
00173 
00174 /*              Update and factorize the current diagonal block and test */
00175 /*              for non-positive-definiteness. */
00176 
00177                 dpotf2_("Upper", &jb, &a[j + j * a_dim1], lda, info);
00178                 if (*info != 0) {
00179                     goto L30;
00180                 }
00181 /* L10: */
00182             }
00183 
00184         } else {
00185 
00186 /*           Compute the Cholesky factorization A = L*L'. */
00187 
00188             i__2 = *n;
00189             i__1 = nb;
00190             for (j = 1; i__1 < 0 ? j >= i__2 : j <= i__2; j += i__1) {
00191 /* Computing MIN */
00192                 i__3 = nb, i__4 = *n - j + 1;
00193                 jb = min(i__3,i__4);
00194 
00195 /*              Compute the current block. */
00196 
00197                 i__3 = j - 1;
00198                 dtrsm_("Right", "Lower", "Transpose", "Non-unit", &jb, &i__3, 
00199                         &c_b15, &a[a_dim1 + 1], lda, &a[j + a_dim1], lda);
00200                 i__3 = j - 1;
00201                 dsyrk_("Lower", "No Transpose", &jb, &i__3, &c_b18, &a[j + 
00202                         a_dim1], lda, &c_b15, &a[j + j * a_dim1], lda);
00203 
00204 /*              Update and factorize the current diagonal block and test */
00205 /*              for non-positive-definiteness. */
00206 
00207                 dpotf2_("Lower", &jb, &a[j + j * a_dim1], lda, info);
00208                 if (*info != 0) {
00209                     goto L30;
00210                 }
00211 /* L20: */
00212             }
00213         }
00214     }
00215     goto L40;
00216 
00217 L30:
00218     *info = *info + j - 1;
00219 
00220 L40:
00221     return 0;
00222 
00223 /*     End of DPOTRF */
00224 
00225 } /* dpotrf_ */


swiftnav
Author(s):
autogenerated on Sat Jun 8 2019 18:55:48