New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
Changeset 14219 for NEMO/branches/2020/dev_r14116_HPC-04_mcastril_Mixed_Precision_implementation_final/src/OCE/DYN/wet_dry.F90 – NEMO

Ignore:
Timestamp:
2020-12-18T18:52:57+01:00 (4 years ago)
Author:
mcastril
Message:

Add Mixed Precision support by Oriol Tintó

File:
1 edited

Legend:

Unmodified
Added
Removed
  • NEMO/branches/2020/dev_r14116_HPC-04_mcastril_Mixed_Precision_implementation_final/src/OCE/DYN/wet_dry.F90

    r13558 r14219  
    131131      !! ** Action  : - calculate flux limiter and W/D flag 
    132132      !!---------------------------------------------------------------------- 
    133       REAL(wp), DIMENSION(:,:)            , INTENT(inout) ::   psshb1 
     133      REAL(dp), DIMENSION(:,:)            , INTENT(inout) ::   psshb1 
    134134      REAL(wp), DIMENSION(:,:)            , INTENT(in   ) ::   psshemp 
    135135      REAL(wp)                            , INTENT(in   ) ::   z2dt 
    136136      INTEGER                             , INTENT(in   ) ::   Kmm       ! time level index 
    137       REAL(wp), DIMENSION(jpi,jpj,jpk,jpt), INTENT(inout) ::   puu, pvv  ! velocity arrays 
     137      REAL(dp), DIMENSION(jpi,jpj,jpk,jpt), INTENT(inout) ::   puu, pvv  ! velocity arrays 
    138138      ! 
    139139      INTEGER  ::   ji, jj, jk, jk1     ! dummy loop indices 
     
    281281      !!---------------------------------------------------------------------- 
    282282      REAL(wp)                , INTENT(in   ) ::   rDt_e    ! ocean time-step index 
    283       REAL(wp), DIMENSION(:,:), INTENT(inout) ::   zflxu,  zflxv, sshn_e, zssh_frc   
     283      REAL(dp), DIMENSION(:,:), INTENT(inout) ::   sshn_e, zssh_frc 
     284      REAL(wp), DIMENSION(:,:), INTENT(inout) ::   zflxu,  zflxv   
    284285      ! 
    285286      INTEGER  ::   ji, jj, jk, jk1     ! dummy loop indices 
     
    391392   !!============================================================================== 
    392393END MODULE wet_dry 
     394 
Note: See TracChangeset for help on using the changeset viewer.