Skip to content

Commit 5ffadec

Browse files
committed
2 parents 0c40422 + 6bcfa0d commit 5ffadec

142 files changed

Lines changed: 204 additions & 144 deletions

File tree

Some content is hidden

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

BLAS/TESTING/dblat1.f

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ SUBROUTINE CHECK0(SFAC)
139139
DOUBLE PRECISION DA1(8), DATRUE(8), DB1(8), DBTRUE(8), DC1(8),
140140
$ DS1(8), DAB(4,9), DTEMP(9), DTRUE(9,9)
141141
* .. External Subroutines ..
142-
EXTERNAL DROTG, DROTMG, STEST1
142+
EXTERNAL DROTG, DROTMG, STEST, STEST1
143143
* .. Common blocks ..
144144
COMMON /COMBLA/ICASE, N, INCX, INCY, PASS
145145
* .. Data statements ..
@@ -360,7 +360,8 @@ SUBROUTINE CHECK2(SFAC)
360360
DOUBLE PRECISION DDOT, DSDOT
361361
EXTERNAL DDOT, DSDOT
362362
* .. External Subroutines ..
363-
EXTERNAL DAXPY, DCOPY, DROTM, DSWAP, STEST, STEST1
363+
EXTERNAL DAXPY, DCOPY, DROTM, DSWAP, STEST, STEST1,
364+
$ TESTDSDOT
364365
* .. Intrinsic Functions ..
365366
INTRINSIC ABS, MIN
366367
* .. Common blocks ..

BLAS/TESTING/sblat1.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ SUBROUTINE CHECK0(SFAC)
139139
REAL DA1(8), DATRUE(8), DB1(8), DBTRUE(8), DC1(8),
140140
+ DS1(8), DAB(4,9), DTEMP(9), DTRUE(9,9)
141141
* .. External Subroutines ..
142-
EXTERNAL SROTG, SROTMG, STEST1
142+
EXTERNAL SROTG, SROTMG, STEST, STEST1
143143
* .. Common blocks ..
144144
COMMON /COMBLA/ICASE, N, INCX, INCY, PASS
145145
* .. Data statements ..

CBLAS/cmake/cblas-config-install.cmake.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ get_filename_component(_CBLAS_PREFIX "${_CBLAS_PREFIX}" PATH)
55
get_filename_component(_CBLAS_PREFIX "${_CBLAS_PREFIX}" PATH)
66

77
# Load the LAPACK package with which we were built.
8-
set(LAPACK_DIR "${_CBLAS_PREFIX}/@{LIBRARY_DIR@/cmake/lapack-@LAPACK_VERSION@")
8+
set(LAPACK_DIR "${_CBLAS_PREFIX}/@CMAKE_INSTALL_LIBDIR@/cmake/lapack-@LAPACK_VERSION@")
99
find_package(LAPACK NO_MODULE)
1010

1111
# Load lapacke targets from the install tree.

INSTALL/LAPACK_version.f

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,20 @@
2222
*
2323
*> \ingroup auxOTHERauxiliary
2424
*
25-
* ===================================================================== PROGRAM LAPACK_VERSION
25+
* =====================================================================
26+
PROGRAM LAPACK_VERSION
2627
*
2728
* -- LAPACK auxiliary routine (version 3.7.0) --
2829
* -- LAPACK is a software package provided by Univ. of Tennessee, --
2930
* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
3031
* December 2016
3132
*
3233
INTEGER MAJOR, MINOR, PATCH
34+
* ..
35+
* .. External Subroutines ..
36+
EXTERNAL ILAVER
3337
*
34-
CALL ILAVER ( MAJOR,MINOR, PATCH )
38+
CALL ILAVER ( MAJOR, MINOR, PATCH )
3539
WRITE(*,*) "LAPACK ",MAJOR,".",MINOR,".",PATCH
3640
*
3741
END

INSTALL/dsecndtst.f

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,9 @@
4848
DOUBLE PRECISION DSECND
4949
EXTERNAL DSECND
5050
* ..
51+
* .. External Subroutines ..
52+
EXTERNAL MYSUB
53+
* ..
5154
* .. Intrinsic Functions ..
5255
INTRINSIC DBLE
5356
* ..

INSTALL/make.inc.gfortran

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ CFLAGS = -O3
2020
# should not compile LAPACK with flags such as -ffpe-trap=overflow.
2121
#
2222
FORTRAN = gfortran
23-
OPTS = -O2
23+
OPTS = -O2 -frecursive
2424
DRVOPTS = $(OPTS)
25-
NOOPT = -O0
25+
NOOPT = -O0 -frecursive
2626

2727
# Define LOADER and LOADOPTS to refer to the loader and desired
2828
# load options for your machine.

INSTALL/make.inc.gfortran_debug

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ CFLAGS = -g
1919
# and handle these quantities appropriately. As a consequence, one
2020
# should not compile LAPACK with flags such as -ffpe-trap=overflow.
2121
#
22-
FORTRAN = gfortran -fimplicit-none -g
22+
FORTRAN = gfortran -fimplicit-none -g -frecursive
2323
OPTS =
2424
DRVOPTS = $(OPTS)
25-
NOOPT = -g -O0
25+
NOOPT = -g -O0 -frecursive
2626

2727
# Define LOADER and LOADOPTS to refer to the loader and desired
2828
# load options for your machine.

INSTALL/secondtst.f

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@
4444
REAL SECOND
4545
EXTERNAL SECOND
4646
* ..
47+
* .. External Subroutines ..
48+
EXTERNAL MYSUB
49+
* ..
4750
* .. Intrinsic Functions ..
4851
INTRINSIC REAL
4952
* ..

LAPACKE/cmake/lapacke-config-install.cmake.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ get_filename_component(_LAPACKE_PREFIX "${_LAPACKE_PREFIX}" PATH)
55
get_filename_component(_LAPACKE_PREFIX "${_LAPACKE_PREFIX}" PATH)
66

77
# Load the LAPACK package with which we were built.
8-
set(LAPACK_DIR "${_LAPACKE_PREFIX}/@{LIBRARY_DIR@/cmake/lapack-@LAPACK_VERSION@")
8+
set(LAPACK_DIR "${_LAPACKE_PREFIX}/@CMAKE_INSTALL_LIBDIR@/cmake/lapack-@LAPACK_VERSION@")
99
find_package(LAPACK NO_MODULE)
1010

1111
# Load lapacke targets from the install tree.

SRC/cgelqt3.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ RECURSIVE SUBROUTINE CGELQT3( M, N, A, LDA, T, LDT, INFO )
134134
PARAMETER ( ZERO = (0.0E+00,0.0E+00))
135135
* ..
136136
* .. Local Scalars ..
137-
INTEGER I, I1, J, J1, M1, M2, N1, N2, IINFO
137+
INTEGER I, I1, J, J1, M1, M2, IINFO
138138
* ..
139139
* .. External Subroutines ..
140140
EXTERNAL CLARFG, CTRMM, CGEMM, XERBLA

0 commit comments

Comments
 (0)