Skip to content

Commit 661d60c

Browse files
authored
Merge pull request #522 from julielangou/master
Making LAPACK's code eternal... no more version and date in source files
2 parents 339a623 + e18d437 commit 661d60c

File tree

6,117 files changed

+3469
-16436
lines changed

Some content is hidden

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

6,117 files changed

+3469
-16436
lines changed

BLAS/SRC/caxpy.f

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,6 @@
7272
*> \author Univ. of Colorado Denver
7373
*> \author NAG Ltd.
7474
*
75-
*> \date November 2017
76-
*
7775
*> \ingroup complex_blas_level1
7876
*
7977
*> \par Further Details:
@@ -88,10 +86,9 @@
8886
* =====================================================================
8987
SUBROUTINE CAXPY(N,CA,CX,INCX,CY,INCY)
9088
*
91-
* -- Reference BLAS level1 routine (version 3.8.0) --
89+
* -- Reference BLAS level1 routine --
9290
* -- Reference BLAS is a software package provided by Univ. of Tennessee, --
9391
* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
94-
* November 2017
9592
*
9693
* .. Scalar Arguments ..
9794
COMPLEX CA

BLAS/SRC/ccopy.f

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,6 @@
6565
*> \author Univ. of Colorado Denver
6666
*> \author NAG Ltd.
6767
*
68-
*> \date November 2017
69-
*
7068
*> \ingroup complex_blas_level1
7169
*
7270
*> \par Further Details:
@@ -81,10 +79,9 @@
8179
* =====================================================================
8280
SUBROUTINE CCOPY(N,CX,INCX,CY,INCY)
8381
*
84-
* -- Reference BLAS level1 routine (version 3.8.0) --
82+
* -- Reference BLAS level1 routine --
8583
* -- Reference BLAS is a software package provided by Univ. of Tennessee, --
8684
* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
87-
* November 2017
8885
*
8986
* .. Scalar Arguments ..
9087
INTEGER INCX,INCY,N

BLAS/SRC/cdotc.f

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,6 @@
6767
*> \author Univ. of Colorado Denver
6868
*> \author NAG Ltd.
6969
*
70-
*> \date November 2017
71-
*
7270
*> \ingroup complex_blas_level1
7371
*
7472
*> \par Further Details:
@@ -83,10 +81,9 @@
8381
* =====================================================================
8482
COMPLEX FUNCTION CDOTC(N,CX,INCX,CY,INCY)
8583
*
86-
* -- Reference BLAS level1 routine (version 3.8.0) --
84+
* -- Reference BLAS level1 routine --
8785
* -- Reference BLAS is a software package provided by Univ. of Tennessee, --
8886
* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
89-
* November 2017
9087
*
9188
* .. Scalar Arguments ..
9289
INTEGER INCX,INCY,N

BLAS/SRC/cdotu.f

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,6 @@
6767
*> \author Univ. of Colorado Denver
6868
*> \author NAG Ltd.
6969
*
70-
*> \date November 2017
71-
*
7270
*> \ingroup complex_blas_level1
7371
*
7472
*> \par Further Details:
@@ -83,10 +81,9 @@
8381
* =====================================================================
8482
COMPLEX FUNCTION CDOTU(N,CX,INCX,CY,INCY)
8583
*
86-
* -- Reference BLAS level1 routine (version 3.8.0) --
84+
* -- Reference BLAS level1 routine --
8785
* -- Reference BLAS is a software package provided by Univ. of Tennessee, --
8886
* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
89-
* November 2017
9087
*
9188
* .. Scalar Arguments ..
9289
INTEGER INCX,INCY,N

BLAS/SRC/cgbmv.f

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -165,8 +165,6 @@
165165
*> \author Univ. of Colorado Denver
166166
*> \author NAG Ltd.
167167
*
168-
*> \date December 2016
169-
*
170168
*> \ingroup complex_blas_level2
171169
*
172170
*> \par Further Details:
@@ -187,10 +185,9 @@
187185
* =====================================================================
188186
SUBROUTINE CGBMV(TRANS,M,N,KL,KU,ALPHA,A,LDA,X,INCX,BETA,Y,INCY)
189187
*
190-
* -- Reference BLAS level2 routine (version 3.7.0) --
188+
* -- Reference BLAS level2 routine --
191189
* -- Reference BLAS is a software package provided by Univ. of Tennessee, --
192190
* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
193-
* December 2016
194191
*
195192
* .. Scalar Arguments ..
196193
COMPLEX ALPHA,BETA

BLAS/SRC/cgemm.f

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -166,8 +166,6 @@
166166
*> \author Univ. of Colorado Denver
167167
*> \author NAG Ltd.
168168
*
169-
*> \date December 2016
170-
*
171169
*> \ingroup complex_blas_level3
172170
*
173171
*> \par Further Details:
@@ -187,10 +185,9 @@
187185
* =====================================================================
188186
SUBROUTINE CGEMM(TRANSA,TRANSB,M,N,K,ALPHA,A,LDA,B,LDB,BETA,C,LDC)
189187
*
190-
* -- Reference BLAS level3 routine (version 3.7.0) --
188+
* -- Reference BLAS level3 routine --
191189
* -- Reference BLAS is a software package provided by Univ. of Tennessee, --
192190
* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
193-
* December 2016
194191
*
195192
* .. Scalar Arguments ..
196193
COMPLEX ALPHA,BETA

BLAS/SRC/cgemv.f

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -136,8 +136,6 @@
136136
*> \author Univ. of Colorado Denver
137137
*> \author NAG Ltd.
138138
*
139-
*> \date December 2016
140-
*
141139
*> \ingroup complex_blas_level2
142140
*
143141
*> \par Further Details:
@@ -158,10 +156,9 @@
158156
* =====================================================================
159157
SUBROUTINE CGEMV(TRANS,M,N,ALPHA,A,LDA,X,INCX,BETA,Y,INCY)
160158
*
161-
* -- Reference BLAS level2 routine (version 3.7.0) --
159+
* -- Reference BLAS level2 routine --
162160
* -- Reference BLAS is a software package provided by Univ. of Tennessee, --
163161
* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
164-
* December 2016
165162
*
166163
* .. Scalar Arguments ..
167164
COMPLEX ALPHA,BETA

BLAS/SRC/cgerc.f

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -109,8 +109,6 @@
109109
*> \author Univ. of Colorado Denver
110110
*> \author NAG Ltd.
111111
*
112-
*> \date December 2016
113-
*
114112
*> \ingroup complex_blas_level2
115113
*
116114
*> \par Further Details:
@@ -130,10 +128,9 @@
130128
* =====================================================================
131129
SUBROUTINE CGERC(M,N,ALPHA,X,INCX,Y,INCY,A,LDA)
132130
*
133-
* -- Reference BLAS level2 routine (version 3.7.0) --
131+
* -- Reference BLAS level2 routine --
134132
* -- Reference BLAS is a software package provided by Univ. of Tennessee, --
135133
* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
136-
* December 2016
137134
*
138135
* .. Scalar Arguments ..
139136
COMPLEX ALPHA

BLAS/SRC/cgeru.f

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -109,8 +109,6 @@
109109
*> \author Univ. of Colorado Denver
110110
*> \author NAG Ltd.
111111
*
112-
*> \date December 2016
113-
*
114112
*> \ingroup complex_blas_level2
115113
*
116114
*> \par Further Details:
@@ -130,10 +128,9 @@
130128
* =====================================================================
131129
SUBROUTINE CGERU(M,N,ALPHA,X,INCX,Y,INCY,A,LDA)
132130
*
133-
* -- Reference BLAS level2 routine (version 3.7.0) --
131+
* -- Reference BLAS level2 routine --
134132
* -- Reference BLAS is a software package provided by Univ. of Tennessee, --
135133
* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
136-
* December 2016
137134
*
138135
* .. Scalar Arguments ..
139136
COMPLEX ALPHA

BLAS/SRC/chbmv.f

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -165,8 +165,6 @@
165165
*> \author Univ. of Colorado Denver
166166
*> \author NAG Ltd.
167167
*
168-
*> \date December 2016
169-
*
170168
*> \ingroup complex_blas_level2
171169
*
172170
*> \par Further Details:
@@ -187,10 +185,9 @@
187185
* =====================================================================
188186
SUBROUTINE CHBMV(UPLO,N,K,ALPHA,A,LDA,X,INCX,BETA,Y,INCY)
189187
*
190-
* -- Reference BLAS level2 routine (version 3.7.0) --
188+
* -- Reference BLAS level2 routine --
191189
* -- Reference BLAS is a software package provided by Univ. of Tennessee, --
192190
* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
193-
* December 2016
194191
*
195192
* .. Scalar Arguments ..
196193
COMPLEX ALPHA,BETA

0 commit comments

Comments
 (0)