File: pilaver.f

package info (click to toggle)
scalapack 2.1.0-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 36,184 kB
  • sloc: fortran: 338,772; ansic: 75,298; makefile: 1,392; sh: 56
file content (32 lines) | stat: -rw-r--r-- 1,028 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
      SUBROUTINE PILAVER( VERS_MAJOR, VERS_MINOR, VERS_PATCH )
C
C  -- ScaLAPACK computational routine (version 2.0.1 ) --
C  -- ScaLAPACK is a software package provided by Univ. of Tennessee,    --
C  -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
C     January 2012
C
C  Purpose
C  =======
C
C  This subroutine return the ScaLAPACK version.
C
C  Arguments
C  =========
C  VERS_MAJOR   (output) INTEGER
C      return the scalapack major version
C  VERS_MINOR   (output) INTEGER
C      return the scalapack minor version from the major version
C  VERS_PATCH   (output) INTEGER
C      return the scalapack patch version from the minor version
C  =====================================================================
C
      INTEGER VERS_MAJOR, VERS_MINOR, VERS_PATCH
C  =====================================================================
      VERS_MAJOR = 2
      VERS_MINOR = 0
      VERS_PATCH = 2
C  =====================================================================
C
      RETURN
      END