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/TRD/trddyn.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/TRD/trddyn.F90

    r13497 r14219  
    3838#  include "do_loop_substitute.h90" 
    3939#  include "domzgr_substitute.h90" 
     40#  include "single_precision_substitute.h90" 
    4041   !!---------------------------------------------------------------------- 
    4142   !! NEMO/OCE 4.0 , NEMO Consortium (2018) 
     
    5354      !!              and/or mixed layer budget. 
    5455      !!---------------------------------------------------------------------- 
    55       REAL(wp), DIMENSION(:,:,:), INTENT(inout) ::   putrd, pvtrd   ! U and V trends  
     56      REAL(dp), DIMENSION(:,:,:), INTENT(inout) ::   putrd, pvtrd   ! U and V trends  
    5657      INTEGER                   , INTENT(in   ) ::   ktrd           ! trend index 
    5758      INTEGER                   , INTENT(in   ) ::   kt             ! time step 
     
    99100      !! ** Purpose :   output 3D trends using IOM 
    100101      !!---------------------------------------------------------------------- 
    101       REAL(wp), DIMENSION(:,:,:), INTENT(inout) ::   putrd, pvtrd   ! U and V trends 
     102      REAL(dp), DIMENSION(:,:,:), INTENT(inout) ::   putrd, pvtrd   ! U and V trends 
    102103      INTEGER                   , INTENT(in   ) ::   ktrd           ! trend index 
    103104      INTEGER                   , INTENT(in   ) ::   kt             ! time step 
     
    181182   !!====================================================================== 
    182183END MODULE trddyn 
     184 
Note: See TracChangeset for help on using the changeset viewer.