Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
f46d51b
Add algorithms of skew-symmetric matrix
sh-zheng Aug 20, 2024
39d70a4
Add testcases for skew-symmetric algorithm
sh-zheng Aug 20, 2024
c17ac0a
Add cblas and lapacke interfaces for skew-symmetric subroutines
sh-zheng Aug 21, 2024
f9096df
Add cblas testcases for skew-symmetric subroutines
sh-zheng Aug 22, 2024
08a4705
Use blas subroutines to perform transformation in *kyeqr
sh-zheng Sep 3, 2024
63b8293
Update CMakelists
sh-zheng Sep 3, 2024
3275c32
Fix fortran text overflow in *kteqr
sh-zheng Sep 4, 2024
ace1953
Add missing subroutine parameter checks for linear solver
sh-zheng Sep 5, 2024
58ce56e
Fix a typo and resolve a conflict in BLAS/TESTING
sh-zheng Feb 8, 2025
ae2ea5d
Merge branch 'master' into skew-symmetric-new
sh-zheng Feb 9, 2025
b9b2875
Keep consistency with pr 1101
sh-zheng Feb 10, 2025
6731c0f
Delete unnecessary work buffer usage of *ktev and *kteqr in lapacke
sh-zheng Apr 10, 2025
b15a164
Remove redundant *lagky in TESTING/
sh-zheng May 7, 2025
2bb3d99
Merge branch 'master' into skew-symmetric-new
sh-zheng Jun 15, 2025
020cd26
Call *lasr to update eigenvector instead of *rot
sh-zheng Jul 3, 2025
fcbee19
Fix compiler error of column limit
sh-zheng Jul 4, 2025
eb160c9
Fix compiler error of column limit, supplementary submission
sh-zheng Jul 6, 2025
38f90b3
Update contributors information, and doxygen doc
sh-zheng Jul 6, 2025
30042e4
Merge branch 'Reference-LAPACK:master' into skew-symmetric-new
sh-zheng Aug 1, 2025
98d9c6a
implicit none of skew-symmetric subroutines, keep consistency with pr…
sh-zheng Sep 1, 2025
eec055e
Merge branch 'Reference-LAPACK:master' into skew-symmetric-new
sh-zheng Sep 1, 2025
ec0c276
End with newline in BLAS/TESTING
sh-zheng Sep 4, 2025
c9a448b
Add expert driver subroutines *kysvx, *kycon and *kyrfs
sh-zheng Oct 11, 2025
ff8bcde
Update doc and comment
sh-zheng Oct 12, 2025
9261f0f
Fix potential distrub of diagonal elements
sh-zheng Oct 26, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
implicit none of skew-symmetric subroutines, keep consistency with pr…
… 1152
  • Loading branch information
sh-zheng committed Sep 1, 2025
commit 98d9c6a7c1ce72bc19fe8c58fb6494c076c0abfc
1 change: 1 addition & 0 deletions BLAS/SRC/dkymm.f
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,7 @@
*>
* =====================================================================
SUBROUTINE DKYMM(SIDE,UPLO,M,N,ALPHA,A,LDA,B,LDB,BETA,C,LDC)
IMPLICIT NONE
*
* -- Reference BLAS level3 routine --
* -- Reference BLAS is a software package provided by Univ. of Tennessee, --
Expand Down
1 change: 1 addition & 0 deletions BLAS/SRC/dkymv.f
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@
*>
* =====================================================================
SUBROUTINE DKYMV(UPLO,N,ALPHA,A,LDA,X,INCX,BETA,Y,INCY)
IMPLICIT NONE
*
* -- Reference BLAS level2 routine --
* -- Reference BLAS is a software package provided by Univ. of Tennessee, --
Expand Down
1 change: 1 addition & 0 deletions BLAS/SRC/dkyr2.f
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@
*>
* =====================================================================
SUBROUTINE DKYR2(UPLO,N,ALPHA,X,INCX,Y,INCY,A,LDA)
IMPLICIT NONE
*
* -- Reference BLAS level2 routine --
* -- Reference BLAS is a software package provided by Univ. of Tennessee, --
Expand Down
1 change: 1 addition & 0 deletions BLAS/SRC/dkyr2k.f
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,7 @@
*>
* =====================================================================
SUBROUTINE DKYR2K(UPLO,TRANS,N,K,ALPHA,A,LDA,B,LDB,BETA,C,LDC)
IMPLICIT NONE
*
* -- Reference BLAS level3 routine --
* -- Reference BLAS is a software package provided by Univ. of Tennessee, --
Expand Down
1 change: 1 addition & 0 deletions BLAS/SRC/skymm.f
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,7 @@
*>
* =====================================================================
SUBROUTINE SKYMM(SIDE,UPLO,M,N,ALPHA,A,LDA,B,LDB,BETA,C,LDC)
IMPLICIT NONE
*
* -- Reference BLAS level3 routine --
* -- Reference BLAS is a software package provided by Univ. of Tennessee, --
Expand Down
1 change: 1 addition & 0 deletions BLAS/SRC/skymv.f
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@
*>
* =====================================================================
SUBROUTINE SKYMV(UPLO,N,ALPHA,A,LDA,X,INCX,BETA,Y,INCY)
IMPLICIT NONE
*
* -- Reference BLAS level2 routine --
* -- Reference BLAS is a software package provided by Univ. of Tennessee, --
Expand Down
1 change: 1 addition & 0 deletions BLAS/SRC/skyr2.f
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@
*>
* =====================================================================
SUBROUTINE SKYR2(UPLO,N,ALPHA,X,INCX,Y,INCY,A,LDA)
IMPLICIT NONE
*
* -- Reference BLAS level2 routine --
* -- Reference BLAS is a software package provided by Univ. of Tennessee, --
Expand Down
1 change: 1 addition & 0 deletions BLAS/SRC/skyr2k.f
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,7 @@
*>
* =====================================================================
SUBROUTINE SKYR2K(UPLO,TRANS,N,K,ALPHA,A,LDA,B,LDB,BETA,C,LDC)
IMPLICIT NONE
*
* -- Reference BLAS level3 routine --
* -- Reference BLAS is a software package provided by Univ. of Tennessee, --
Expand Down
1 change: 1 addition & 0 deletions SRC/dkteqr.f
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@
*>
* =====================================================================
SUBROUTINE DKTEQR( COMPZ, N, E, Z, LDZ, WORK, INFO )
IMPLICIT NONE
*
* -- LAPACK computational routine --
* -- LAPACK is a software package provided by Univ. of Tennessee, --
Expand Down
1 change: 1 addition & 0 deletions SRC/dktev.f
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@
*>
* =====================================================================
SUBROUTINE DKTEV( JOBZ, N, D, E, Z, LDZ, WORK, INFO )
IMPLICIT NONE
*
* -- LAPACK driver routine --
* -- LAPACK is a software package provided by Univ. of Tennessee, --
Expand Down
1 change: 1 addition & 0 deletions SRC/dkyconv.f
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@
*>
* =====================================================================
SUBROUTINE DKYCONV( UPLO, WAY, N, A, LDA, IPIV, E, INFO )
IMPLICIT NONE
*
* -- LAPACK computational routine --
* -- LAPACK is a software package provided by Univ. of Tennessee, --
Expand Down
1 change: 1 addition & 0 deletions SRC/dkyev.f
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@
*>
* =====================================================================
SUBROUTINE DKYEV( JOBZ, UPLO, N, A, LDA, W, WORK, LWORK, INFO )
IMPLICIT NONE
*
* -- LAPACK driver routine --
* -- LAPACK is a software package provided by Univ. of Tennessee, --
Expand Down
1 change: 1 addition & 0 deletions SRC/dkygs2.f
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@
*>
* =====================================================================
SUBROUTINE DKYGS2( ITYPE, UPLO, N, A, LDA, B, LDB, INFO )
IMPLICIT NONE
*
* -- LAPACK computational routine --
* -- LAPACK is a software package provided by Univ. of Tennessee, --
Expand Down
1 change: 1 addition & 0 deletions SRC/dkygst.f
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@
*>
* =====================================================================
SUBROUTINE DKYGST( ITYPE, UPLO, N, A, LDA, B, LDB, INFO )
IMPLICIT NONE
*
* -- LAPACK computational routine --
* -- LAPACK is a software package provided by Univ. of Tennessee, --
Expand Down
1 change: 1 addition & 0 deletions SRC/dkygv.f
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,7 @@
* =====================================================================
SUBROUTINE DKYGV( ITYPE, JOBZ, UPLO, N, A, LDA, B, LDB, W,
$ WORK, LWORK, INFO )
IMPLICIT NONE
*
* -- LAPACK driver routine --
* -- LAPACK is a software package provided by Univ. of Tennessee, --
Expand Down
1 change: 1 addition & 0 deletions SRC/dkysv.f
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,7 @@
* =====================================================================
SUBROUTINE DKYSV( UPLO, N, NRHS, A, LDA, IPIV, B, LDB, WORK,
$ LWORK, INFO )
IMPLICIT NONE
*
* -- LAPACK driver routine --
* -- LAPACK is a software package provided by Univ. of Tennessee, --
Expand Down
1 change: 1 addition & 0 deletions SRC/dkyswapr.f
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@
*>
* =====================================================================
SUBROUTINE DKYSWAPR( UPLO, N, A, LDA, I1, I2)
IMPLICIT NONE
*
* -- LAPACK auxiliary routine --
* -- LAPACK is a software package provided by Univ. of Tennessee, --
Expand Down
1 change: 1 addition & 0 deletions SRC/dkytd2.f
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,7 @@
*>
* =====================================================================
SUBROUTINE DKYTD2( UPLO, N, A, LDA, E, TAU, INFO )
IMPLICIT NONE
*
* -- LAPACK computational routine --
* -- LAPACK is a software package provided by Univ. of Tennessee, --
Expand Down
1 change: 1 addition & 0 deletions SRC/dkytf2.f
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,7 @@
*>
* =====================================================================
SUBROUTINE DKYTF2( UPLO, N, A, LDA, IPIV, INFO )
IMPLICIT NONE
*
* -- LAPACK computational routine --
* -- LAPACK is a software package provided by Univ. of Tennessee, --
Expand Down
1 change: 1 addition & 0 deletions SRC/dkytrd.f
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,7 @@
*>
* =====================================================================
SUBROUTINE DKYTRD( UPLO, N, A, LDA, E, TAU, WORK, LWORK, INFO )
IMPLICIT NONE
*
* -- LAPACK computational routine --
* -- LAPACK is a software package provided by Univ. of Tennessee, --
Expand Down
1 change: 1 addition & 0 deletions SRC/dkytrf.f
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,7 @@
*>
* =====================================================================
SUBROUTINE DKYTRF( UPLO, N, A, LDA, IPIV, WORK, LWORK, INFO )
IMPLICIT NONE
*
* -- LAPACK computational routine --
* -- LAPACK is a software package provided by Univ. of Tennessee, --
Expand Down
1 change: 1 addition & 0 deletions SRC/dkytri.f
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@
*>
* =====================================================================
SUBROUTINE DKYTRI( UPLO, N, A, LDA, IPIV, WORK, INFO )
IMPLICIT NONE
*
* -- LAPACK computational routine --
* -- LAPACK is a software package provided by Univ. of Tennessee, --
Expand Down
1 change: 1 addition & 0 deletions SRC/dkytri2.f
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@
*>
* =====================================================================
SUBROUTINE DKYTRI2( UPLO, N, A, LDA, IPIV, WORK, LWORK, INFO )
IMPLICIT NONE
*
* -- LAPACK computational routine --
* -- LAPACK is a software package provided by Univ. of Tennessee, --
Expand Down
1 change: 1 addition & 0 deletions SRC/dkytri2x.f
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@
*>
* =====================================================================
SUBROUTINE DKYTRI2X( UPLO, N, A, LDA, IPIV, WORK, NB, INFO )
IMPLICIT NONE
*
* -- LAPACK computational routine --
* -- LAPACK is a software package provided by Univ. of Tennessee, --
Expand Down
1 change: 1 addition & 0 deletions SRC/dkytrs.f
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@
*>
* =====================================================================
SUBROUTINE DKYTRS( UPLO, N, NRHS, A, LDA, IPIV, B, LDB, INFO )
IMPLICIT NONE
*
* -- LAPACK computational routine --
* -- LAPACK is a software package provided by Univ. of Tennessee, --
Expand Down
1 change: 1 addition & 0 deletions SRC/dkytrs2.f
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@
* =====================================================================
SUBROUTINE DKYTRS2( UPLO, N, NRHS, A, LDA, IPIV, B, LDB,
$ WORK, INFO )
IMPLICIT NONE
*
* -- LAPACK computational routine --
* -- LAPACK is a software package provided by Univ. of Tennessee, --
Expand Down
1 change: 1 addition & 0 deletions SRC/dlakyf.f
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,7 @@
* =====================================================================
SUBROUTINE DLAKYF( UPLO, N, NB, KB, A, LDA, IPIV, W, LDW,
$ INFO )
IMPLICIT NONE
*
* -- LAPACK computational routine --
* -- LAPACK is a software package provided by Univ. of Tennessee, --
Expand Down
1 change: 1 addition & 0 deletions SRC/dlankt.f
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@
*
* =====================================================================
DOUBLE PRECISION FUNCTION DLANKT( NORM, N, E )
IMPLICIT NONE
*
* -- LAPACK auxiliary routine --
* -- LAPACK is a software package provided by Univ. of Tennessee, --
Expand Down
1 change: 1 addition & 0 deletions SRC/dlanky.f
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@
* =====================================================================
DOUBLE PRECISION FUNCTION DLANKY( NORM, UPLO, N, A, LDA,
$ WORK )
IMPLICIT NONE
*
* -- LAPACK auxiliary routine --
* -- LAPACK is a software package provided by Univ. of Tennessee, --
Expand Down
1 change: 1 addition & 0 deletions SRC/dlatrdk.f
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,7 @@
*>
* =====================================================================
SUBROUTINE DLATRDK( UPLO, N, NB, A, LDA, E, TAU, W, LDW )
IMPLICIT NONE
*
* -- LAPACK auxiliary routine --
* -- LAPACK is a software package provided by Univ. of Tennessee, --
Expand Down
5 changes: 3 additions & 2 deletions SRC/skteqr.f
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@
*>
* =====================================================================
SUBROUTINE SKTEQR( COMPZ, N, E, Z, LDZ, WORK, INFO )
IMPLICIT NONE
*
* -- LAPACK computational routine --
* -- LAPACK is a software package provided by Univ. of Tennessee, --
Expand Down Expand Up @@ -172,8 +173,8 @@ SUBROUTINE SKTEQR( COMPZ, N, E, Z, LDZ, WORK, INFO )
* ..
* .. External Functions ..
LOGICAL LSAME
REAL SLAMCH, SLAPY2
EXTERNAL LSAME, SLAMCH, SLAPY2
REAL SLAMCH, SLAPY2, SLANKT
EXTERNAL LSAME, SLAMCH, SLAPY2, SLANKT
* ..
* .. External Subroutines ..
EXTERNAL SLAE2, SLAEV2, SLARTG, SLASCL, SLASET,
Expand Down
1 change: 1 addition & 0 deletions SRC/sktev.f
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@
*>
* =====================================================================
SUBROUTINE SKTEV( JOBZ, N, D, E, Z, LDZ, WORK, INFO )
IMPLICIT NONE
*
* -- LAPACK driver routine --
* -- LAPACK is a software package provided by Univ. of Tennessee, --
Expand Down
1 change: 1 addition & 0 deletions SRC/skyconv.f
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@
*>
* =====================================================================
SUBROUTINE SKYCONV( UPLO, WAY, N, A, LDA, IPIV, E, INFO )
IMPLICIT NONE
*
* -- LAPACK computational routine --
* -- LAPACK is a software package provided by Univ. of Tennessee, --
Expand Down
1 change: 1 addition & 0 deletions SRC/skyev.f
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@
*>
* =====================================================================
SUBROUTINE SKYEV( JOBZ, UPLO, N, A, LDA, W, WORK, LWORK, INFO )
IMPLICIT NONE
*
* -- LAPACK driver routine --
* -- LAPACK is a software package provided by Univ. of Tennessee, --
Expand Down
1 change: 1 addition & 0 deletions SRC/skygs2.f
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@
*>
* =====================================================================
SUBROUTINE SKYGS2( ITYPE, UPLO, N, A, LDA, B, LDB, INFO )
IMPLICIT NONE
*
* -- LAPACK computational routine --
* -- LAPACK is a software package provided by Univ. of Tennessee, --
Expand Down
1 change: 1 addition & 0 deletions SRC/skygst.f
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@
*>
* =====================================================================
SUBROUTINE SKYGST( ITYPE, UPLO, N, A, LDA, B, LDB, INFO )
IMPLICIT NONE
*
* -- LAPACK computational routine --
* -- LAPACK is a software package provided by Univ. of Tennessee, --
Expand Down
1 change: 1 addition & 0 deletions SRC/skygv.f
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,7 @@
* =====================================================================
SUBROUTINE SKYGV( ITYPE, JOBZ, UPLO, N, A, LDA, B, LDB, W,
$ WORK, LWORK, INFO )
IMPLICIT NONE
*
* -- LAPACK driver routine --
* -- LAPACK is a software package provided by Univ. of Tennessee, --
Expand Down
1 change: 1 addition & 0 deletions SRC/skysv.f
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,7 @@
* =====================================================================
SUBROUTINE SKYSV( UPLO, N, NRHS, A, LDA, IPIV, B, LDB, WORK,
$ LWORK, INFO )
IMPLICIT NONE
*
* -- LAPACK driver routine --
* -- LAPACK is a software package provided by Univ. of Tennessee, --
Expand Down
1 change: 1 addition & 0 deletions SRC/skyswapr.f
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@
*>
* =====================================================================
SUBROUTINE SKYSWAPR( UPLO, N, A, LDA, I1, I2)
IMPLICIT NONE
*
* -- LAPACK auxiliary routine --
* -- LAPACK is a software package provided by Univ. of Tennessee, --
Expand Down
1 change: 1 addition & 0 deletions SRC/skytd2.f
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,7 @@
*>
* =====================================================================
SUBROUTINE SKYTD2( UPLO, N, A, LDA, E, TAU, INFO )
IMPLICIT NONE
*
* -- LAPACK computational routine --
* -- LAPACK is a software package provided by Univ. of Tennessee, --
Expand Down
1 change: 1 addition & 0 deletions SRC/skytf2.f
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,7 @@
*>
* =====================================================================
SUBROUTINE SKYTF2( UPLO, N, A, LDA, IPIV, INFO )
IMPLICIT NONE
*
* -- LAPACK computational routine --
* -- LAPACK is a software package provided by Univ. of Tennessee, --
Expand Down
1 change: 1 addition & 0 deletions SRC/skytrd.f
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,7 @@
*>
* =====================================================================
SUBROUTINE SKYTRD( UPLO, N, A, LDA, E, TAU, WORK, LWORK, INFO )
IMPLICIT NONE
*
* -- LAPACK computational routine --
* -- LAPACK is a software package provided by Univ. of Tennessee, --
Expand Down
1 change: 1 addition & 0 deletions SRC/skytrf.f
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,7 @@
*>
* =====================================================================
SUBROUTINE SKYTRF( UPLO, N, A, LDA, IPIV, WORK, LWORK, INFO )
IMPLICIT NONE
*
* -- LAPACK computational routine --
* -- LAPACK is a software package provided by Univ. of Tennessee, --
Expand Down
1 change: 1 addition & 0 deletions SRC/skytri.f
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@
*>
* =====================================================================
SUBROUTINE SKYTRI( UPLO, N, A, LDA, IPIV, WORK, INFO )
IMPLICIT NONE
*
* -- LAPACK computational routine --
* -- LAPACK is a software package provided by Univ. of Tennessee, --
Expand Down
1 change: 1 addition & 0 deletions SRC/skytri2.f
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@
*>
* =====================================================================
SUBROUTINE SKYTRI2( UPLO, N, A, LDA, IPIV, WORK, LWORK, INFO )
IMPLICIT NONE
*
* -- LAPACK computational routine --
* -- LAPACK is a software package provided by Univ. of Tennessee, --
Expand Down
1 change: 1 addition & 0 deletions SRC/skytri2x.f
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@
*>
* =====================================================================
SUBROUTINE SKYTRI2X( UPLO, N, A, LDA, IPIV, WORK, NB, INFO )
IMPLICIT NONE
*
* -- LAPACK computational routine --
* -- LAPACK is a software package provided by Univ. of Tennessee, --
Expand Down
1 change: 1 addition & 0 deletions SRC/skytrs.f
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@
*>
* =====================================================================
SUBROUTINE SKYTRS( UPLO, N, NRHS, A, LDA, IPIV, B, LDB, INFO )
IMPLICIT NONE
*
* -- LAPACK computational routine --
* -- LAPACK is a software package provided by Univ. of Tennessee, --
Expand Down
1 change: 1 addition & 0 deletions SRC/skytrs2.f
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@
* =====================================================================
SUBROUTINE SKYTRS2( UPLO, N, NRHS, A, LDA, IPIV, B, LDB,
$ WORK, INFO )
IMPLICIT NONE
*
* -- LAPACK computational routine --
* -- LAPACK is a software package provided by Univ. of Tennessee, --
Expand Down
Loading