Skip to content

Commit 6acc99d

Browse files
committed
Updating Version Number to 3.9.0
1 parent 269c3f1 commit 6acc99d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+109
-108
lines changed

CMakeLists.txt

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

55
set(LAPACK_MAJOR_VERSION 3)
6-
set(LAPACK_MINOR_VERSION 8)
6+
set(LAPACK_MINOR_VERSION 9)
77
set(LAPACK_PATCH_VERSION 0)
88
set(
99
LAPACK_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.8.0
41+
PROJECT_NUMBER = 3.9.0
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.8.0
41+
PROJECT_NUMBER = 3.9.0
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: 1 addition & 1 deletion
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 June 2017
47+
*> \date November 2019
4848
*
4949
*> \ingroup auxOTHERauxiliary
5050
*

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
* VERSION 3.7.0 : December 2016
3131
* VERSION 3.7.1 : June 2017
3232
* VERSION 3.8.0 : November 2017
33+
* VERSION 3.9.0 : November 2019
3334

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

SRC/cgelq.f

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,10 +170,10 @@
170170
SUBROUTINE CGELQ( M, N, A, LDA, T, TSIZE, WORK, LWORK,
171171
$ INFO )
172172
*
173-
* -- LAPACK computational routine (version 3.7.0) --
173+
* -- LAPACK computational routine (version 3.9.0) --
174174
* -- LAPACK is a software package provided by Univ. of Tennessee, --
175175
* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd. --
176-
* December 2016
176+
* November 2019
177177
*
178178
* .. Scalar Arguments ..
179179
INTEGER INFO, LDA, M, N, TSIZE, LWORK

SRC/cgelq2.f

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@
104104
*> \author Univ. of Colorado Denver
105105
*> \author NAG Ltd.
106106
*
107-
*> \date December 2016
107+
*> \date November 2019
108108
*
109109
*> \ingroup complexGEcomputational
110110
*
@@ -129,10 +129,10 @@
129129
* =====================================================================
130130
SUBROUTINE CGELQ2( M, N, A, LDA, TAU, WORK, INFO )
131131
*
132-
* -- LAPACK computational routine (version 3.7.0) --
132+
* -- LAPACK computational routine (version 3.9.0) --
133133
* -- LAPACK is a software package provided by Univ. of Tennessee, --
134134
* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
135-
* December 2016
135+
* November 2019
136136
*
137137
* .. Scalar Arguments ..
138138
INTEGER INFO, LDA, M, N

SRC/cgelqf.f

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@
118118
*> \author Univ. of Colorado Denver
119119
*> \author NAG Ltd.
120120
*
121-
*> \date December 2016
121+
*> \date November 2019
122122
*
123123
*> \ingroup complexGEcomputational
124124
*
@@ -143,10 +143,10 @@
143143
* =====================================================================
144144
SUBROUTINE CGELQF( M, N, A, LDA, TAU, WORK, LWORK, INFO )
145145
*
146-
* -- LAPACK computational routine (version 3.7.0) --
146+
* -- LAPACK computational routine (version 3.9.0) --
147147
* -- LAPACK is a software package provided by Univ. of Tennessee, --
148148
* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
149-
* December 2016
149+
* November 2019
150150
*
151151
* .. Scalar Arguments ..
152152
INTEGER INFO, LDA, LWORK, M, N

SRC/cgeqr.f

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,10 +172,10 @@
172172
SUBROUTINE CGEQR( M, N, A, LDA, T, TSIZE, WORK, LWORK,
173173
$ INFO )
174174
*
175-
* -- LAPACK computational routine (version 3.7.0) --
175+
* -- LAPACK computational routine (version 3.9.0) --
176176
* -- LAPACK is a software package provided by Univ. of Tennessee, --
177177
* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd. --
178-
* December 2016
178+
* November 2019
179179
*
180180
* .. Scalar Arguments ..
181181
INTEGER INFO, LDA, M, N, TSIZE, LWORK

SRC/cgeqr2.f

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
*> \author Univ. of Colorado Denver
106106
*> \author NAG Ltd.
107107
*
108-
*> \date December 2016
108+
*> \date November 2019
109109
*
110110
*> \ingroup complexGEcomputational
111111
*
@@ -130,10 +130,10 @@
130130
* =====================================================================
131131
SUBROUTINE CGEQR2( M, N, A, LDA, TAU, WORK, INFO )
132132
*
133-
* -- LAPACK computational routine (version 3.7.0) --
133+
* -- LAPACK computational routine (version 3.9.0) --
134134
* -- LAPACK is a software package provided by Univ. of Tennessee, --
135135
* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
136-
* December 2016
136+
* November 2019
137137
*
138138
* .. Scalar Arguments ..
139139
INTEGER INFO, LDA, M, N

0 commit comments

Comments
 (0)