Skip to content

Commit

Permalink
xGEDMD(Q): silence warning with 64-bit integers
Browse files Browse the repository at this point in the history
Fix the following warning by GCC 12.2.0:

  Warning: Use of the NUMERIC_STORAGE_SIZE named constant from intrinsic
  module ISO_FORTRAN_ENV at (1) is incompatible with option
  -fdefault-integer-8
  • Loading branch information
christoph-conrads committed Mar 1, 2024
1 parent fe843f9 commit e02fbda
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 e02fbda

Please sign in to comment.