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.7 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. * \date November 2011
  37. *
  38. * \ingroup single_eig
  39. *
  40. * =====================================================================
  41. SUBROUTINE SLASUM( TYPE, IOUNIT, IE, NRUN )
  42. *
  43. * -- LAPACK test routine (version 3.4.0) --
  44. * -- LAPACK is a software package provided by Univ. of Tennessee, --
  45. * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
  46. * November 2011
  47. *
  48. * .. Scalar Arguments ..
  49. CHARACTER*3 TYPE
  50. INTEGER IE, IOUNIT, NRUN
  51. * ..
  52. *
  53. *
  54. * .. Executable Statements ..
  55. *
  56. IF( IE.GT.0 ) THEN
  57. WRITE( IOUNIT, FMT = 9999 )TYPE, ': ', IE, ' out of ', NRUN,
  58. $ ' tests failed to pass the threshold'
  59. ELSE
  60. WRITE( IOUNIT, FMT = 9998 )'All tests for ', TYPE,
  61. $ ' passed the threshold ( ', NRUN, ' tests run)'
  62. END IF
  63. 9999 FORMAT( 1X, A3, A2, I4, A8, I5, A35 )
  64. 9998 FORMAT( / 1X, A14, A3, A24, I5, A11 )
  65. RETURN
  66. *
  67. * End of SLASUM
  68. *
  69. END