#include "blaswrap.h" /* -- translated by f2c (version 19990503). You must link the resulting object file with the libraries: -lf2c -lm (in that order) */ #include "f2c.h" /* Table of constant values */ static integer c__1 = 1; static doublecomplex c_b9 = {-1.,0.}; /* Subroutine */ int zget10_(integer *m, integer *n, doublecomplex *a, integer *lda, doublecomplex *b, integer *ldb, doublecomplex *work, doublereal *rwork, doublereal *result) { /* System generated locals */ integer a_dim1, a_offset, b_dim1, b_offset, i__1; doublereal d__1, d__2; /* Local variables */ static doublereal unfl; static integer j; static doublereal anorm, wnorm; extern /* Subroutine */ int zcopy_(integer *, doublecomplex *, integer *, doublecomplex *, integer *), zaxpy_(integer *, doublecomplex *, doublecomplex *, integer *, doublecomplex *, integer *); extern doublereal dlamch_(char *), zlange_(char *, integer *, integer *, doublecomplex *, integer *, doublereal *), dzasum_(integer *, doublecomplex *, integer *); static doublereal eps; #define a_subscr(a_1,a_2) (a_2)*a_dim1 + a_1 #define a_ref(a_1,a_2) a[a_subscr(a_1,a_2)] #define b_subscr(a_1,a_2) (a_2)*b_dim1 + a_1 #define b_ref(a_1,a_2) b[b_subscr(a_1,a_2)] /* -- LAPACK test routine (version 3.0) -- Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., Courant Institute, Argonne National Lab, and Rice University February 29, 1992 Purpose ======= ZGET10 compares two matrices A and B and computes the ratio RESULT = norm( A - B ) / ( norm(A) * M * EPS ) Arguments ========= M (input) INTEGER The number of rows of the matrices A and B. N (input) INTEGER The number of columns of the matrices A and B. A (input) COMPLEX*16 array, dimension (LDA,N) The m by n matrix A. LDA (input) INTEGER The leading dimension of the array A. LDA >= max(1,M). B (input) COMPLEX*16 array, dimension (LDB,N) The m by n matrix B. LDB (input) INTEGER The leading dimension of the array B. LDB >= max(1,M). WORK (workspace) COMPLEX*16 array, dimension (M) RWORK (workspace) COMPLEX*16 array, dimension (M) RESULT (output) DOUBLE PRECISION RESULT = norm( A - B ) / ( norm(A) * M * EPS ) ===================================================================== Quick return if possible Parameter adjustments */ a_dim1 = *lda; a_offset = 1 + a_dim1 * 1; a -= a_offset; b_dim1 = *ldb; b_offset = 1 + b_dim1 * 1; b -= b_offset; --work; --rwork; /* Function Body */ if (*m <= 0 || *n <= 0) { *result = 0.; return 0; } unfl = dlamch_("Safe minimum"); eps = dlamch_("Precision"); wnorm = 0.; i__1 = *n; for (j = 1; j <= i__1; ++j) { zcopy_(m, &a_ref(1, j), &c__1, &work[1], &c__1); zaxpy_(m, &c_b9, &b_ref(1, j), &c__1, &work[1], &c__1); /* Computing MAX */ d__1 = wnorm, d__2 = dzasum_(n, &work[1], &c__1); wnorm = max(d__1,d__2); /* L10: */ } /* Computing MAX */ d__1 = zlange_("1", m, n, &a[a_offset], lda, &rwork[1]); anorm = max(d__1,unfl); if (anorm > wnorm) { *result = wnorm / anorm / (*m * eps); } else { if (anorm < 1.) { /* Computing MIN */ d__1 = wnorm, d__2 = *m * anorm; *result = min(d__1,d__2) / anorm / (*m * eps); } else { /* Computing MIN */ d__1 = wnorm / anorm, d__2 = (doublereal) (*m); *result = min(d__1,d__2) / (*m * eps); } } return 0; /* End of ZGET10 */ } /* zget10_ */ #undef b_ref #undef b_subscr #undef a_ref #undef a_subscr .