Skip to content

Commit 8282ae9

Browse files
authored
Merge pull request #1130 from angsch/rm-version
Remove hardcoded "version 3.X"
2 parents 4758c86 + 1a92dca commit 8282ae9

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

BLAS/SRC/dnrm2.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ function DNRM2( n, x, incx )
8989
integer, parameter :: wp = kind(1.d0)
9090
real(wp) :: DNRM2
9191
!
92-
! -- Reference BLAS level1 routine (version 3.9.1) --
92+
! -- Reference BLAS level1 routine --
9393
! -- Reference BLAS is a software package provided by Univ. of Tennessee, --
9494
! -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
9595
! March 2021

BLAS/SRC/dznrm2.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ function DZNRM2( n, x, incx )
9090
integer, parameter :: wp = kind(1.d0)
9191
real(wp) :: DZNRM2
9292
!
93-
! -- Reference BLAS level1 routine (version 3.9.1) --
93+
! -- Reference BLAS level1 routine --
9494
! -- Reference BLAS is a software package provided by Univ. of Tennessee, --
9595
! -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
9696
! March 2021

BLAS/SRC/scnrm2.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ function SCNRM2( n, x, incx )
9090
integer, parameter :: wp = kind(1.e0)
9191
real(wp) :: SCNRM2
9292
!
93-
! -- Reference BLAS level1 routine (version 3.9.1) --
93+
! -- Reference BLAS level1 routine --
9494
! -- Reference BLAS is a software package provided by Univ. of Tennessee, --
9595
! -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
9696
! March 2021

BLAS/SRC/snrm2.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ function SNRM2( n, x, incx )
8989
integer, parameter :: wp = kind(1.e0)
9090
real(wp) :: SNRM2
9191
!
92-
! -- Reference BLAS level1 routine (version 3.9.1) --
92+
! -- Reference BLAS level1 routine --
9393
! -- Reference BLAS is a software package provided by Univ. of Tennessee, --
9494
! -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
9595
! March 2021

SRC/VARIANTS/lu/REC/cgetrf.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@
134134
* =====================================================================
135135
SUBROUTINE CGETRF( M, N, A, LDA, IPIV, INFO )
136136
*
137-
* -- LAPACK computational routine (version 3.X) --
137+
* -- LAPACK computational routine --
138138
* -- LAPACK is a software package provided by Univ. of Tennessee, --
139139
* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
140140
*

SRC/VARIANTS/lu/REC/dgetrf.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@
134134
* =====================================================================
135135
SUBROUTINE DGETRF( M, N, A, LDA, IPIV, INFO )
136136
*
137-
* -- LAPACK computational routine (version 3.X) --
137+
* -- LAPACK computational routine --
138138
* -- LAPACK is a software package provided by Univ. of Tennessee, --
139139
* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
140140
*

SRC/VARIANTS/lu/REC/sgetrf.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@
134134
* =====================================================================
135135
SUBROUTINE SGETRF( M, N, A, LDA, IPIV, INFO )
136136
*
137-
* -- LAPACK computational routine (version 3.X) --
137+
* -- LAPACK computational routine --
138138
* -- LAPACK is a software package provided by Univ. of Tennessee, --
139139
* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
140140
*

SRC/VARIANTS/lu/REC/zgetrf.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@
134134
* =====================================================================
135135
SUBROUTINE ZGETRF( M, N, A, LDA, IPIV, INFO )
136136
*
137-
* -- LAPACK computational routine (version 3.X) --
137+
* -- LAPACK computational routine --
138138
* -- LAPACK is a software package provided by Univ. of Tennessee, --
139139
* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
140140
*

0 commit comments

Comments
 (0)