xLA_xxRFSX_EXTENDED; parameter comments: pull various dimension specifications contai...
[platform/upstream/lapack.git] / INSTALL / LAPACK_version.f
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 *> \date December 2016
22 *
23 *> \ingroup auxOTHERauxiliary
24 *
25 *  =====================================================================      PROGRAM LAPACK_VERSION
26 *
27 *  -- LAPACK auxiliary routine (version 3.7.0) --
28 *  -- LAPACK is a software package provided by Univ. of Tennessee,    --
29 *  -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
30 *     December 2016
31 *
32       INTEGER MAJOR, MINOR, PATCH
33 *
34       CALL ILAVER ( MAJOR,MINOR, PATCH )
35       WRITE(*,*) "LAPACK ",MAJOR,".",MINOR,".",PATCH
36 *
37       END