Skip to content

Commit 98d9c6a

Browse files
committed
implicit none of skew-symmetric subroutines, keep consistency with pr 1152
1 parent 30042e4 commit 98d9c6a

Some content is hidden

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

86 files changed

+86
-6
lines changed

BLAS/SRC/dkymm.f

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,7 @@
184184
*>
185185
* =====================================================================
186186
SUBROUTINE DKYMM(SIDE,UPLO,M,N,ALPHA,A,LDA,B,LDB,BETA,C,LDC)
187+
IMPLICIT NONE
187188
*
188189
* -- Reference BLAS level3 routine --
189190
* -- Reference BLAS is a software package provided by Univ. of Tennessee, --

BLAS/SRC/dkymv.f

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,7 @@
147147
*>
148148
* =====================================================================
149149
SUBROUTINE DKYMV(UPLO,N,ALPHA,A,LDA,X,INCX,BETA,Y,INCY)
150+
IMPLICIT NONE
150151
*
151152
* -- Reference BLAS level2 routine --
152153
* -- Reference BLAS is a software package provided by Univ. of Tennessee, --

BLAS/SRC/dkyr2.f

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,7 @@
142142
*>
143143
* =====================================================================
144144
SUBROUTINE DKYR2(UPLO,N,ALPHA,X,INCX,Y,INCY,A,LDA)
145+
IMPLICIT NONE
145146
*
146147
* -- Reference BLAS level2 routine --
147148
* -- Reference BLAS is a software package provided by Univ. of Tennessee, --

BLAS/SRC/dkyr2k.f

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,7 @@
186186
*>
187187
* =====================================================================
188188
SUBROUTINE DKYR2K(UPLO,TRANS,N,K,ALPHA,A,LDA,B,LDB,BETA,C,LDC)
189+
IMPLICIT NONE
189190
*
190191
* -- Reference BLAS level3 routine --
191192
* -- Reference BLAS is a software package provided by Univ. of Tennessee, --

BLAS/SRC/skymm.f

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,7 @@
184184
*>
185185
* =====================================================================
186186
SUBROUTINE SKYMM(SIDE,UPLO,M,N,ALPHA,A,LDA,B,LDB,BETA,C,LDC)
187+
IMPLICIT NONE
187188
*
188189
* -- Reference BLAS level3 routine --
189190
* -- Reference BLAS is a software package provided by Univ. of Tennessee, --

BLAS/SRC/skymv.f

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,7 @@
147147
*>
148148
* =====================================================================
149149
SUBROUTINE SKYMV(UPLO,N,ALPHA,A,LDA,X,INCX,BETA,Y,INCY)
150+
IMPLICIT NONE
150151
*
151152
* -- Reference BLAS level2 routine --
152153
* -- Reference BLAS is a software package provided by Univ. of Tennessee, --

BLAS/SRC/skyr2.f

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,7 @@
142142
*>
143143
* =====================================================================
144144
SUBROUTINE SKYR2(UPLO,N,ALPHA,X,INCX,Y,INCY,A,LDA)
145+
IMPLICIT NONE
145146
*
146147
* -- Reference BLAS level2 routine --
147148
* -- Reference BLAS is a software package provided by Univ. of Tennessee, --

BLAS/SRC/skyr2k.f

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,7 @@
186186
*>
187187
* =====================================================================
188188
SUBROUTINE SKYR2K(UPLO,TRANS,N,K,ALPHA,A,LDA,B,LDB,BETA,C,LDC)
189+
IMPLICIT NONE
189190
*
190191
* -- Reference BLAS level3 routine --
191192
* -- Reference BLAS is a software package provided by Univ. of Tennessee, --

SRC/dkteqr.f

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,7 @@
141141
*>
142142
* =====================================================================
143143
SUBROUTINE DKTEQR( COMPZ, N, E, Z, LDZ, WORK, INFO )
144+
IMPLICIT NONE
144145
*
145146
* -- LAPACK computational routine --
146147
* -- LAPACK is a software package provided by Univ. of Tennessee, --

SRC/dktev.f

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@
129129
*>
130130
* =====================================================================
131131
SUBROUTINE DKTEV( JOBZ, N, D, E, Z, LDZ, WORK, INFO )
132+
IMPLICIT NONE
132133
*
133134
* -- LAPACK driver routine --
134135
* -- LAPACK is a software package provided by Univ. of Tennessee, --

0 commit comments

Comments
 (0)