LAPACK 3.12.0
LAPACK: Linear Algebra PACKage
Loading...
Searching...
No Matches
LAPACK_version.f
Go to the documentation of this file.
1*> \brief \b LAPACK_VERSION
2*
3* =========== DOCUMENTATION ===========
4*
5* Online html documentation available at
6* http://www.netlib.org/lapack/explore-html/
7*
8* Definition:
9* ===========
10*
11* PROGRAM LAPACK_VERSION
12*
13* Authors:
14* ========
15*
16*> \author Univ. of Tennessee
17*> \author Univ. of California Berkeley
18*> \author Univ. of Colorado Denver
19*> \author NAG Ltd.
20*
21*> \ingroup auxOTHERauxiliary
22*
23* =====================================================================
25*
26* -- LAPACK auxiliary routine --
27* -- LAPACK is a software package provided by Univ. of Tennessee, --
28* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
29*
30 INTEGER major, minor, patch
31* ..
32* .. External Subroutines ..
33 EXTERNAL ilaver
34*
35 CALL ilaver ( major, minor, patch )
36 WRITE(*,*) "LAPACK ",major,".",minor,".",patch
37*
38 END
program lapack_version
LAPACK_VERSION
subroutine ilaver(vers_major, vers_minor, vers_patch)
ILAVER returns the LAPACK version.
Definition ilaver.f:51