ScaLAPACK 2.1  2.1
ScaLAPACK: Scalable Linear Algebra PACKage
pilaver.f
Go to the documentation of this file.
1  SUBROUTINE pilaver( VERS_MAJOR, VERS_MINOR, VERS_PATCH )
2 C
3 C -- ScaLAPACK computational routine (version 2.0.1 ) --
4 C -- ScaLAPACK is a software package provided by Univ. of Tennessee, --
5 C -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
6 C January 2012
7 C
8 C Purpose
9 C =======
10 C
11 C This subroutine return the ScaLAPACK version.
12 C
13 C Arguments
14 C =========
15 C VERS_MAJOR (output) INTEGER
16 C return the scalapack major version
17 C VERS_MINOR (output) INTEGER
18 C return the scalapack minor version from the major version
19 C VERS_PATCH (output) INTEGER
20 C return the scalapack patch version from the minor version
21 C =====================================================================
22 C
23  INTEGER VERS_MAJOR, VERS_MINOR, VERS_PATCH
24 C =====================================================================
25  vers_major = 2
26  vers_minor = 0
27  vers_patch = 2
28 C =====================================================================
29 C
30  RETURN
31  END
32 
pilaver
subroutine pilaver(VERS_MAJOR, VERS_MINOR, VERS_PATCH)
Definition: pilaver.f:2