Skip to content

Commit eb160c9

Browse files
committed
Fix compiler error of column limit, supplementary submission
1 parent fcbee19 commit eb160c9

File tree

7 files changed

+14
-8
lines changed

7 files changed

+14
-8
lines changed

SRC/dkygv.f

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,8 +174,8 @@
174174
*> \ingroup kygv
175175
*
176176
* =====================================================================
177-
SUBROUTINE DKYGV( ITYPE, JOBZ, UPLO, N, A, LDA, B, LDB, W, WORK,
178-
$ LWORK, INFO )
177+
SUBROUTINE DKYGV( ITYPE, JOBZ, UPLO, N, A, LDA, B, LDB, W,
178+
$ WORK, LWORK, INFO )
179179
*
180180
* -- LAPACK driver routine --
181181
* -- LAPACK is a software package provided by Univ. of Tennessee, --

SRC/dlakyf.f

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,8 @@
183183
*> \endverbatim
184184
*
185185
* =====================================================================
186-
SUBROUTINE DLAKYF( UPLO, N, NB, KB, A, LDA, IPIV, W, LDW, INFO )
186+
SUBROUTINE DLAKYF( UPLO, N, NB, KB, A, LDA, IPIV, W, LDW,
187+
$ INFO )
187188
*
188189
* -- LAPACK computational routine --
189190
* -- LAPACK is a software package provided by Univ. of Tennessee, --

SRC/dlanky.f

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,8 @@
116116
*> \ingroup lanke
117117
*
118118
* =====================================================================
119-
DOUBLE PRECISION FUNCTION DLANKY( NORM, UPLO, N, A, LDA, WORK )
119+
DOUBLE PRECISION FUNCTION DLANKY( NORM, UPLO, N, A, LDA,
120+
$ WORK )
120121
*
121122
* -- LAPACK auxiliary routine --
122123
* -- LAPACK is a software package provided by Univ. of Tennessee, --

SRC/skygv.f

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,8 +174,8 @@
174174
*> \ingroup kygv
175175
*
176176
* =====================================================================
177-
SUBROUTINE SKYGV( ITYPE, JOBZ, UPLO, N, A, LDA, B, LDB, W, WORK,
178-
$ LWORK, INFO )
177+
SUBROUTINE SKYGV( ITYPE, JOBZ, UPLO, N, A, LDA, B, LDB, W,
178+
$ WORK, LWORK, INFO )
179179
*
180180
* -- LAPACK driver routine --
181181
* -- LAPACK is a software package provided by Univ. of Tennessee, --

SRC/slakyf.f

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,8 @@
183183
*> \endverbatim
184184
*
185185
* =====================================================================
186-
SUBROUTINE SLAKYF( UPLO, N, NB, KB, A, LDA, IPIV, W, LDW, INFO )
186+
SUBROUTINE SLAKYF( UPLO, N, NB, KB, A, LDA, IPIV, W, LDW,
187+
$ INFO )
187188
*
188189
* -- LAPACK computational routine --
189190
* -- LAPACK is a software package provided by Univ. of Tennessee, --

SRC/slanky.f

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,8 @@
116116
*> \ingroup lanke
117117
*
118118
* =====================================================================
119-
REAL FUNCTION SLANKY( NORM, UPLO, N, A, LDA, WORK )
119+
REAL FUNCTION SLANKY( NORM, UPLO, N, A, LDA,
120+
$ WORK )
120121
*
121122
* -- LAPACK auxiliary routine --
122123
* -- LAPACK is a software package provided by Univ. of Tennessee, --

TESTING/MATGEN/matgen_64.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
#define CLATMT CLATMT_64
2323
#define DLAGGE DLAGGE_64
2424
#define DLAGSY DLAGSY_64
25+
#define DLAGKY DLAGKY_64
2526
#define DLAHILB DLAHILB_64
2627
#define DLAKF2 DLAKF2_64
2728
#define DLARAN DLARAN_64
@@ -41,6 +42,7 @@
4142
#define DLATMT DLATMT_64
4243
#define SLAGGE SLAGGE_64
4344
#define SLAGSY SLAGSY_64
45+
#define SLAGKY SLAGKY_64
4446
#define SLAHILB SLAHILB_64
4547
#define SLAKF2 SLAKF2_64
4648
#define SLARAN SLARAN_64

0 commit comments

Comments
 (0)