/* sget01.f -- translated by f2c (version 20061008). You must link the resulting object file with libf2c: on Microsoft Windows system, link with libf2c.lib; on Linux or Unix systems, link with .../path/to/libf2c.a -lm or, if you install libf2c.a in a standard place, with -lf2c -lm -- in that order, at the end of the command line, as in cc *.o -lf2c -lm Source for libf2c is in /netlib/f2c/libf2c.zip, e.g., http://www.netlib.org/f2c/libf2c.zip */ #include "f2c.h" #include "blaswrap.h" /* Table of constant values */ static integer c__1 = 1; static real c_b11 = 1.f; static integer c_n1 = -1; /* Subroutine */ int sget01_(integer *m, integer *n, real *a, integer *lda, real *afac, integer *ldafac, integer *ipiv, real *rwork, real *resid) { /* System generated locals */ integer a_dim1, a_offset, afac_dim1, afac_offset, i__1, i__2; /* Local variables */ integer i__, j, k; real t, eps; extern doublereal sdot_(integer *, real *, integer *, real *, integer *); extern /* Subroutine */ int sscal_(integer *, real *, real *, integer *); real anorm; extern /* Subroutine */ int sgemv_(char *, integer *, integer *, real *, real *, integer *, real *, integer *, real *, real *, integer *), strmv_(char *, char *, char *, integer *, real *, integer *, real *, integer *); extern doublereal slamch_(char *), slange_(char *, integer *, integer *, real *, integer *, real *); extern /* Subroutine */ int slaswp_(integer *, real *, integer *, integer *, integer *, integer *, integer *); /* -- LAPACK test routine (version 3.1) -- */ /* Univ. of Tennessee, Univ. of California Berkeley and NAG Ltd.. */ /* November 2006 */ /* .. Scalar Arguments .. */ /* .. */ /* .. Array Arguments .. */ /* .. */ /* Purpose */ /* ======= */ /* SGET01 reconstructs a matrix A from its L*U factorization and */ /* computes the residual */ /* norm(L*U - A) / ( N * norm(A) * EPS ), */ /* where EPS is the machine epsilon. */ /* Arguments */ /* ========== */ /* M (input) INTEGER */ /* The number of rows of the matrix A. M >= 0. */ /* N (input) INTEGER */ /* The number of columns of the matrix A. N >= 0. */ /* A (input) REAL array, dimension (LDA,N) */ /* The original M x N matrix A. */ /* LDA (input) INTEGER */ /* The leading dimension of the array A. LDA >= max(1,M). */ /* AFAC (input/output) REAL array, dimension (LDAFAC,N) */ /* The factored form of the matrix A. AFAC contains the factors */ /* L and U from the L*U factorization as computed by SGETRF. */ /* Overwritten with the reconstructed matrix, and then with the */ /* difference L*U - A. */ /* LDAFAC (input) INTEGER */ /* The leading dimension of the array AFAC. LDAFAC >= max(1,M). */ /* IPIV (input) INTEGER array, dimension (N) */ /* The pivot indices from SGETRF. */ /* RWORK (workspace) REAL array, dimension (M) */ /* RESID (output) REAL */ /* norm(L*U - A) / ( N * norm(A) * EPS ) */ /* ===================================================================== */ /* .. Parameters .. */ /* .. */ /* .. Local Scalars .. */ /* .. */ /* .. External Functions .. */ /* .. */ /* .. External Subroutines .. */ /* .. */ /* .. Intrinsic Functions .. */ /* .. */ /* .. Executable Statements .. */ /* Quick exit if M = 0 or N = 0. */ /* Parameter adjustments */ a_dim1 = *lda; a_offset = 1 + a_dim1; a -= a_offset; afac_dim1 = *ldafac; afac_offset = 1 + afac_dim1; afac -= afac_offset; --ipiv; --rwork; /* Function Body */ if (*m <= 0 || *n <= 0) { *resid = 0.f; return 0; } /* Determine EPS and the norm of A. */ eps = slamch_("Epsilon"); anorm = slange_("1", m, n, &a[a_offset], lda, &rwork[1]); /* Compute the product L*U and overwrite AFAC with the result. */ /* A column at a time of the product is obtained, starting with */ /* column N. */ for (k = *n; k >= 1; --k) { if (k > *m) { strmv_("Lower", "No transpose", "Unit", m, &afac[afac_offset], ldafac, &afac[k * afac_dim1 + 1], &c__1); } else { /* Compute elements (K+1:M,K) */ t = afac[k + k * afac_dim1]; if (k + 1 <= *m) { i__1 = *m - k; sscal_(&i__1, &t, &afac[k + 1 + k * afac_dim1], &c__1); i__1 = *m - k; i__2 = k - 1; sgemv_("No transpose", &i__1, &i__2, &c_b11, &afac[k + 1 + afac_dim1], ldafac, &afac[k * afac_dim1 + 1], &c__1, & c_b11, &afac[k + 1 + k * afac_dim1], &c__1); } /* Compute the (K,K) element */ i__1 = k - 1; afac[k + k * afac_dim1] = t + sdot_(&i__1, &afac[k + afac_dim1], ldafac, &afac[k * afac_dim1 + 1], &c__1); /* Compute elements (1:K-1,K) */ i__1 = k - 1; strmv_("Lower", "No transpose", "Unit", &i__1, &afac[afac_offset], ldafac, &afac[k * afac_dim1 + 1], &c__1); } /* L10: */ } i__1 = min(*m,*n); slaswp_(n, &afac[afac_offset], ldafac, &c__1, &i__1, &ipiv[1], &c_n1); /* Compute the difference L*U - A and store in AFAC. */ i__1 = *n; for (j = 1; j <= i__1; ++j) { i__2 = *m; for (i__ = 1; i__ <= i__2; ++i__) { afac[i__ + j * afac_dim1] -= a[i__ + j * a_dim1]; /* L20: */ } /* L30: */ } /* Compute norm( L*U - A ) / ( N * norm(A) * EPS ) */ *resid = slange_("1", m, n, &afac[afac_offset], ldafac, &rwork[1]); if (anorm <= 0.f) { if (*resid != 0.f) { *resid = 1.f / eps; } } else { *resid = *resid / (real) (*n) / anorm / eps; } return 0; /* End of SGET01 */ } /* sget01_ */