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 33 34 35
|
---
:name: ilaver
:md5sum: ae154117d9ef11e8dc514356ed2ec2ad
:category: :subroutine
:arguments:
- vers_major:
:type: integer
:intent: output
- vers_minor:
:type: integer
:intent: output
- vers_patch:
:type: integer
:intent: output
:substitutions: {}
:fortran_help: " SUBROUTINE ILAVER( VERS_MAJOR, VERS_MINOR, VERS_PATCH )\n\n\
* Purpose\n\
* =======\n\
*\n\
* This subroutine return the Lapack version.\n\
*\n\n\
* Arguments\n\
* =========\n\
* VERS_MAJOR (output) INTEGER\n\
* return the lapack major version\n\
* VERS_MINOR (output) INTEGER\n\
* return the lapack minor version from the major version\n\
* VERS_PATCH (output) INTEGER\n\
* return the lapack patch version from the minor version\n\n\
* =====================================================================\n\
*\n INTEGER VERS_MAJOR, VERS_MINOR, VERS_PATCH\n\
* =====================================================================\n VERS_MAJOR = 3\n VERS_MINOR = 3\n VERS_PATCH = 0\n\
* =====================================================================\n\
*\n RETURN\n END\n"
|