You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

slasum.f 1.6 kB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. *> \brief \b SLASUM
  2. *
  3. * =========== DOCUMENTATION ===========
  4. *
  5. * Online html documentation available at
  6. * http://www.netlib.org/lapack/explore-html/
  7. *
  8. * Definition:
  9. * ===========
  10. *
  11. * SUBROUTINE SLASUM( TYPE, IOUNIT, IE, NRUN )
  12. *
  13. * .. Scalar Arguments ..
  14. * CHARACTER*3 TYPE
  15. * INTEGER IE, IOUNIT, NRUN
  16. * ..
  17. *
  18. * Purpose
  19. * =======
  20. *
  21. *\details \b Purpose:
  22. *\verbatim
  23. *
  24. * SLASUM prints a summary of the results from one of the test routines.
  25. *
  26. * =====================================================================
  27. *
  28. * Authors:
  29. * ========
  30. *
  31. * \author Univ. of Tennessee
  32. * \author Univ. of California Berkeley
  33. * \author Univ. of Colorado Denver
  34. * \author NAG Ltd.
  35. *
  36. * \ingroup single_eig
  37. *
  38. * =====================================================================
  39. SUBROUTINE SLASUM( TYPE, IOUNIT, IE, NRUN )
  40. *
  41. * -- LAPACK test routine --
  42. * -- LAPACK is a software package provided by Univ. of Tennessee, --
  43. * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
  44. *
  45. * .. Scalar Arguments ..
  46. CHARACTER*3 TYPE
  47. INTEGER IE, IOUNIT, NRUN
  48. * ..
  49. *
  50. *
  51. * .. Executable Statements ..
  52. *
  53. IF( IE.GT.0 ) THEN
  54. WRITE( IOUNIT, FMT = 9999 )TYPE, ': ', IE, ' out of ', NRUN,
  55. $ ' tests failed to pass the threshold'
  56. ELSE
  57. WRITE( IOUNIT, FMT = 9998 )'All tests for ', TYPE,
  58. $ ' passed the threshold ( ', NRUN, ' tests run)'
  59. END IF
  60. 9999 FORMAT( 1X, A3, A2, I4, A8, I5, A35 )
  61. 9998 FORMAT( / 1X, A14, A3, A24, I5, A11 )
  62. RETURN
  63. *
  64. * End of SLASUM
  65. *
  66. END