Skip to content

Commit

Permalink
Merge pull request Reference-LAPACK#993 from christoph-conrads/xGEDMD…
Browse files Browse the repository at this point in the history
…-fix-iso-fortran-warnings-with-64bit-integers

xGEDMD(Q): silence warning with 64-bit integers
  • Loading branch information
langou authored Mar 1, 2024
2 parents fe843f9 + e02fbda commit 5426147
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 17 deletions.
4 changes: 2 additions & 2 deletions SRC/cgedmd.f90
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
! W, LDW, S, LDS, ZWORK, LZWORK, &
! RWORK, LRWORK, IWORK, LIWORK, INFO )
!.....
! USE iso_fortran_env
! USE, INTRINSIC :: iso_fortran_env, only: real32
! IMPLICIT NONE
! INTEGER, PARAMETER :: WP = real32
!
Expand Down Expand Up @@ -506,7 +506,7 @@ SUBROUTINE CGEDMD( JOBS, JOBZ, JOBR, JOBF, WHTSVD, &
! -- Colorado Denver and NAG Ltd.. --
!
!.....
USE iso_fortran_env
USE, INTRINSIC :: iso_fortran_env, only: real32
IMPLICIT NONE
INTEGER, PARAMETER :: WP = real32
!
Expand Down
4 changes: 2 additions & 2 deletions SRC/cgedmdq.f90
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
! S, LDS, ZWORK, LZWORK, WORK, LWORK, &
! IWORK, LIWORK, INFO )
!.....
! USE iso_fortran_env
! USE, INTRINSIC :: iso_fortran_env, only: real32
! IMPLICIT NONE
! INTEGER, PARAMETER :: WP = real32
!.....
Expand Down Expand Up @@ -563,7 +563,7 @@ SUBROUTINE CGEDMDQ( JOBS, JOBZ, JOBR, JOBQ, JOBT, JOBF, &
! -- Colorado Denver and NAG Ltd.. --
!
!.....
USE iso_fortran_env
USE, INTRINSIC :: iso_fortran_env, only: real32
IMPLICIT NONE
INTEGER, PARAMETER :: WP = real32
!
Expand Down
5 changes: 2 additions & 3 deletions SRC/dgedmd.f90
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,8 @@
! K, REIG, IMEIG, Z, LDZ, RES, &
! B, LDB, W, LDW, S, LDS, &
! WORK, LWORK, IWORK, LIWORK, INFO )
!
!.....
! USE iso_fortran_env
! USE, INTRINSIC :: iso_fortran_env, only: real64
! IMPLICIT NONE
! INTEGER, PARAMETER :: WP = real64
!.....
Expand Down Expand Up @@ -541,7 +540,7 @@ SUBROUTINE DGEDMD( JOBS, JOBZ, JOBR, JOBF, WHTSVD, &
! -- Colorado Denver and NAG Ltd.. --
!
!.....
USE iso_fortran_env
USE, INTRINSIC :: iso_fortran_env, only: real64
IMPLICIT NONE
INTEGER, PARAMETER :: WP = real64
!
Expand Down
4 changes: 2 additions & 2 deletions SRC/dgedmdq.f90
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
! Z, LDZ, RES, B, LDB, V, LDV, &
! S, LDS, WORK, LWORK, IWORK, LIWORK, INFO )
!.....
! USE iso_fortran_env
! USE, INTRINSIC :: iso_fortran_env, only: real64
! IMPLICIT NONE
! INTEGER, PARAMETER :: WP = real64
!.....
Expand Down Expand Up @@ -581,7 +581,7 @@ SUBROUTINE DGEDMDQ( JOBS, JOBZ, JOBR, JOBQ, JOBT, JOBF, &
! -- Colorado Denver and NAG Ltd.. --
!
!.....
USE iso_fortran_env
USE, INTRINSIC :: iso_fortran_env, only: real64
IMPLICIT NONE
INTEGER, PARAMETER :: WP = real64
!
Expand Down
4 changes: 2 additions & 2 deletions SRC/sgedmd.f90
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
! B, LDB, W, LDW, S, LDS, &
! WORK, LWORK, IWORK, LIWORK, INFO )
!.....
! USE iso_fortran_env
! USE, INTRINSIC :: iso_fortran_env, only: real32
! IMPLICIT NONE
! INTEGER, PARAMETER :: WP = real32
!.....
Expand Down Expand Up @@ -540,7 +540,7 @@ SUBROUTINE SGEDMD( JOBS, JOBZ, JOBR, JOBF, WHTSVD, &
! -- Colorado Denver and NAG Ltd.. --
!
!.....
USE iso_fortran_env
USE, INTRINSIC :: iso_fortran_env, only: real32
IMPLICIT NONE
INTEGER, PARAMETER :: WP = real32
!
Expand Down
4 changes: 2 additions & 2 deletions SRC/sgedmdq.f90
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
! Z, LDZ, RES, B, LDB, V, LDV, &
! S, LDS, WORK, LWORK, IWORK, LIWORK, INFO )
!.....
! USE iso_fortran_env
! USE, INTRINSIC :: iso_fortran_env, only: real32
! IMPLICIT NONE
! INTEGER, PARAMETER :: WP = real32
!.....
Expand Down Expand Up @@ -581,7 +581,7 @@ SUBROUTINE SGEDMDQ( JOBS, JOBZ, JOBR, JOBQ, JOBT, JOBF, &
! -- Colorado Denver and NAG Ltd.. --
!
!.....
USE iso_fortran_env
USE, INTRINSIC :: iso_fortran_env, only: real32
IMPLICIT NONE
INTEGER, PARAMETER :: WP = real32
!
Expand Down
4 changes: 2 additions & 2 deletions SRC/zgedmd.f90
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
! W, LDW, S, LDS, ZWORK, LZWORK, &
! RWORK, LRWORK, IWORK, LIWORK, INFO )
!......
! USE iso_fortran_env
! USE, INTRINSIC :: iso_fortran_env, only: real64
! IMPLICIT NONE
! INTEGER, PARAMETER :: WP = real64
!
Expand Down Expand Up @@ -506,7 +506,7 @@ SUBROUTINE ZGEDMD( JOBS, JOBZ, JOBR, JOBF, WHTSVD, &
! -- Colorado Denver and NAG Ltd.. --
!
!.....
USE iso_fortran_env
USE, INTRINSIC :: iso_fortran_env, only: real64
IMPLICIT NONE
INTEGER, PARAMETER :: WP = real64
!
Expand Down
4 changes: 2 additions & 2 deletions SRC/zgedmdq.f90
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
! S, LDS, ZWORK, LZWORK, WORK, LWORK, &
! IWORK, LIWORK, INFO )
!.....
! USE iso_fortran_env
! USE, INTRINSIC :: iso_fortran_env, only: real64
! IMPLICIT NONE
! INTEGER, PARAMETER :: WP = real64
!.....
Expand Down Expand Up @@ -562,7 +562,7 @@ SUBROUTINE ZGEDMDQ( JOBS, JOBZ, JOBR, JOBQ, JOBT, JOBF, &
! -- Colorado Denver and NAG Ltd.. --
!
!.....
USE iso_fortran_env
USE, INTRINSIC :: iso_fortran_env, only: real64
IMPLICIT NONE
INTEGER, PARAMETER :: WP = real64
!
Expand Down

0 comments on commit 5426147

Please sign in to comment.