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

BLAS/SRC/chemm.f

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -170,8 +170,6 @@
170170
*> \author Univ. of Colorado Denver
171171
*> \author NAG Ltd.
172172
*
173-
*> \date December 2016
174-
*
175173
*> \ingroup complex_blas_level3
176174
*
177175
*> \par Further Details:
@@ -191,10 +189,9 @@
191189
* =====================================================================
192190
SUBROUTINE CHEMM(SIDE,UPLO,M,N,ALPHA,A,LDA,B,LDB,BETA,C,LDC)
193191
*
194-
* -- Reference BLAS level3 routine (version 3.7.0) --
192+
* -- Reference BLAS level3 routine --
195193
* -- Reference BLAS is a software package provided by Univ. of Tennessee, --
196194
* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
197-
* December 2016
198195
*
199196
* .. Scalar Arguments ..
200197
COMPLEX ALPHA,BETA

BLAS/SRC/chemv.f

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,6 @@
132132
*> \author Univ. of Colorado Denver
133133
*> \author NAG Ltd.
134134
*
135-
*> \date December 2016
136-
*
137135
*> \ingroup complex_blas_level2
138136
*
139137
*> \par Further Details:
@@ -154,10 +152,9 @@
154152
* =====================================================================
155153
SUBROUTINE CHEMV(UPLO,N,ALPHA,A,LDA,X,INCX,BETA,Y,INCY)
156154
*
157-
* -- Reference BLAS level2 routine (version 3.7.0) --
155+
* -- Reference BLAS level2 routine --
158156
* -- Reference BLAS is a software package provided by Univ. of Tennessee, --
159157
* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
160-
* December 2016
161158
*
162159
* .. Scalar Arguments ..
163160
COMPLEX ALPHA,BETA

BLAS/SRC/cher.f

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,6 @@
114114
*> \author Univ. of Colorado Denver
115115
*> \author NAG Ltd.
116116
*
117-
*> \date December 2016
118-
*
119117
*> \ingroup complex_blas_level2
120118
*
121119
*> \par Further Details:
@@ -135,10 +133,9 @@
135133
* =====================================================================
136134
SUBROUTINE CHER(UPLO,N,ALPHA,X,INCX,A,LDA)
137135
*
138-
* -- Reference BLAS level2 routine (version 3.7.0) --
136+
* -- Reference BLAS level2 routine --
139137
* -- Reference BLAS is a software package provided by Univ. of Tennessee, --
140138
* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
141-
* December 2016
142139
*
143140
* .. Scalar Arguments ..
144141
REAL ALPHA

BLAS/SRC/cher2.f

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -129,8 +129,6 @@
129129
*> \author Univ. of Colorado Denver
130130
*> \author NAG Ltd.
131131
*
132-
*> \date December 2016
133-
*
134132
*> \ingroup complex_blas_level2
135133
*
136134
*> \par Further Details:
@@ -150,10 +148,9 @@
150148
* =====================================================================
151149
SUBROUTINE CHER2(UPLO,N,ALPHA,X,INCX,Y,INCY,A,LDA)
152150
*
153-
* -- Reference BLAS level2 routine (version 3.7.0) --
151+
* -- Reference BLAS level2 routine --
154152
* -- Reference BLAS is a software package provided by Univ. of Tennessee, --
155153
* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
156-
* December 2016
157154
*
158155
* .. Scalar Arguments ..
159156
COMPLEX ALPHA

BLAS/SRC/cher2k.f

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -173,8 +173,6 @@
173173
*> \author Univ. of Colorado Denver
174174
*> \author NAG Ltd.
175175
*
176-
*> \date December 2016
177-
*
178176
*> \ingroup complex_blas_level3
179177
*
180178
*> \par Further Details:
@@ -197,10 +195,9 @@
197195
* =====================================================================
198196
SUBROUTINE CHER2K(UPLO,TRANS,N,K,ALPHA,A,LDA,B,LDB,BETA,C,LDC)
199197
*
200-
* -- Reference BLAS level3 routine (version 3.7.0) --
198+
* -- Reference BLAS level3 routine --
201199
* -- Reference BLAS is a software package provided by Univ. of Tennessee, --
202200
* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
203-
* December 2016
204201
*
205202
* .. Scalar Arguments ..
206203
COMPLEX ALPHA

BLAS/SRC/cherk.f

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,6 @@
149149
*> \author Univ. of Colorado Denver
150150
*> \author NAG Ltd.
151151
*
152-
*> \date December 2016
153-
*
154152
*> \ingroup complex_blas_level3
155153
*
156154
*> \par Further Details:
@@ -173,10 +171,9 @@
173171
* =====================================================================
174172
SUBROUTINE CHERK(UPLO,TRANS,N,K,ALPHA,A,LDA,BETA,C,LDC)
175173
*
176-
* -- Reference BLAS level3 routine (version 3.7.0) --
174+
* -- Reference BLAS level3 routine --
177175
* -- Reference BLAS is a software package provided by Univ. of Tennessee, --
178176
* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
179-
* December 2016
180177
*
181178
* .. Scalar Arguments ..
182179
REAL ALPHA,BETA

BLAS/SRC/chpmv.f

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -127,8 +127,6 @@
127127
*> \author Univ. of Colorado Denver
128128
*> \author NAG Ltd.
129129
*
130-
*> \date December 2016
131-
*
132130
*> \ingroup complex_blas_level2
133131
*
134132
*> \par Further Details:
@@ -149,10 +147,9 @@
149147
* =====================================================================
150148
SUBROUTINE CHPMV(UPLO,N,ALPHA,AP,X,INCX,BETA,Y,INCY)
151149
*
152-
* -- Reference BLAS level2 routine (version 3.7.0) --
150+
* -- Reference BLAS level2 routine --
153151
* -- Reference BLAS is a software package provided by Univ. of Tennessee, --
154152
* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
155-
* December 2016
156153
*
157154
* .. Scalar Arguments ..
158155
COMPLEX ALPHA,BETA

BLAS/SRC/chpr.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 CHPR(UPLO,N,ALPHA,X,INCX,AP)
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
REAL ALPHA

BLAS/SRC/chpr2.f

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,6 @@
124124
*> \author Univ. of Colorado Denver
125125
*> \author NAG Ltd.
126126
*
127-
*> \date December 2016
128-
*
129127
*> \ingroup complex_blas_level2
130128
*
131129
*> \par Further Details:
@@ -145,10 +143,9 @@
145143
* =====================================================================
146144
SUBROUTINE CHPR2(UPLO,N,ALPHA,X,INCX,Y,INCY,AP)
147145
*
148-
* -- Reference BLAS level2 routine (version 3.7.0) --
146+
* -- Reference BLAS level2 routine --
149147
* -- Reference BLAS is a software package provided by Univ. of Tennessee, --
150148
* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
151-
* December 2016
152149
*
153150
* .. Scalar Arguments ..
154151
COMPLEX ALPHA

0 commit comments

Comments
 (0)