Skip to content

Commit f670343

Browse files
committed
Update LAPACK version number to 3.9.1
... waiting on decision for modified source files
1 parent 1827da0 commit f670343

File tree

8 files changed

+14
-13
lines changed

8 files changed

+14
-13
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ project(LAPACK Fortran C)
44

55
set(LAPACK_MAJOR_VERSION 3)
66
set(LAPACK_MINOR_VERSION 9)
7-
set(LAPACK_PATCH_VERSION 0)
7+
set(LAPACK_PATCH_VERSION 1)
88
set(
99
LAPACK_VERSION
1010
${LAPACK_MAJOR_VERSION}.${LAPACK_MINOR_VERSION}.${LAPACK_PATCH_VERSION}

DOCS/Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = LAPACK
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = 3.9.0
41+
PROJECT_NUMBER = 3.9.1
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

DOCS/Doxyfile_man

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = LAPACK
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = 3.9.0
41+
PROJECT_NUMBER = 3.9.1
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

INSTALL/ilaver.f

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
*> \author Univ. of Colorado Denver
4545
*> \author NAG Ltd.
4646
*
47-
*> \date November 2019
47+
*> \date April 2021
4848
*
4949
*> \ingroup auxOTHERauxiliary
5050
*
@@ -61,7 +61,7 @@ SUBROUTINE ILAVER( VERS_MAJOR, VERS_MINOR, VERS_PATCH )
6161
* =====================================================================
6262
VERS_MAJOR = 3
6363
VERS_MINOR = 9
64-
VERS_PATCH = 0
64+
VERS_PATCH = 1
6565
* =====================================================================
6666
*
6767
RETURN

LICENSE

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
Copyright (c) 1992-2017 The University of Tennessee and The University
1+
Copyright (c) 1992-2021 The University of Tennessee and The University
22
of Tennessee Research Foundation. All rights
33
reserved.
4-
Copyright (c) 2000-2017 The University of California Berkeley. All
4+
Copyright (c) 2000-2021 The University of California Berkeley. All
55
rights reserved.
6-
Copyright (c) 2006-2017 The University of Colorado Denver. All rights
6+
Copyright (c) 2006-2021 The University of Colorado Denver. All rights
77
reserved.
88

99
$COPYRIGHT$

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#
22
# Top Level Makefile for LAPACK
3-
# Version 3.4.1
4-
# April 2012
3+
# Version 3.9.1
4+
# April 2021
55
#
66

77
TOPSRCDIR = .
@@ -180,4 +180,4 @@ cleantest:
180180
$(MAKE) -C INSTALL cleantest
181181
$(MAKE) -C BLAS cleantest
182182
$(MAKE) -C CBLAS cleantest
183-
$(MAKE) -C TESTING cleantest
183+
$(MAKE) -C TESTING cleantest

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
* VERSION 3.7.1 : June 2017
3232
* VERSION 3.8.0 : November 2017
3333
* VERSION 3.9.0 : November 2019
34+
* VERSION 3.9.1 : April 2021
3435

3536
LAPACK is a library of Fortran subroutines for solving the most commonly
3637
occurring problems in numerical linear algebra.

make.inc.example

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
####################################################################
22
# LAPACK make include file. #
3-
# LAPACK, Version 3.8.0 #
4-
# November 2017 #
3+
# LAPACK, Version 3.9.1 #
4+
# April 2021 #
55
####################################################################
66

77
SHELL = /bin/sh

0 commit comments

Comments
 (0)