HP MLIB User's Guide Vol. 2 7th Ed.
940 HP MLIB User’s Guide
DSLEPS Print statistics
Name DSLEPS
Print statistics
Purpose This subprogram prints available statistics about the original matrix, amount
of work space in use, amount required for the next phase, and maximum
amount used thus far. Also, this subprogram prints storage and arithmetic
requirements, CPU time used, and computational rate for Cholesky
factorization. The amount of information printed depends on the stage of
execution. The number of lines of output ranges from 8 to 30, with the width of
the lines being less than 80 characters.
Usage VECLIB and VECLIB8:
REAL*8 global(150)
CALL SSLEPS(global)
REAL*8 global(150)
CALL DSLEPS(global)
REAL*8 global(150)
CALL QSLEPS(global)
REAL*8 global(150)
CALL CSLEPS(global)
REAL*8 global(150)
CALL ZSLEPS(global)
Input global Global communications array for this problem.
Example Print the statistics after the package has completed a numeric solution (either
after DSLESL or DSLEFS).
REAL*8 GLOBAL(150)
CALL DSLEPS (GLOBAL)