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 13409 for NEMO/branches/UKMO/dev_r12866_HPC-02_Daley_Tiling_trial_extra_halo/src/OCE/timing.F90 – NEMO

Ignore:
Timestamp:
2020-08-17T15:28:54+02:00 (3 years ago)
Author:
hadcv
Message:

Remaining changes prior to trunk merge

File:
1 edited

Legend:

Unmodified
Added
Removed
  • NEMO/branches/UKMO/dev_r12866_HPC-02_Daley_Tiling_trial_extra_halo/src/OCE/timing.F90

    r12942 r13409  
    9393      !!---------------------------------------------------------------------- 
    9494      CHARACTER(len=*), INTENT(in) :: cdinfo 
    95       ! TODO: TO BE TILED 
    96       IF( ntile /= 0 .AND. ntile /= 1 ) RETURN 
    9795      ! 
    9896       IF(ASSOCIATED(s_timer) ) s_timer_old => s_timer 
     
    111109 
    112110      s_timer%l_tdone = .FALSE. 
    113       s_timer%niter = s_timer%niter + 1 
     111      IF( ntile == 0 .OR. ntile == 1 ) s_timer%niter = s_timer%niter + 1      ! All tiles count as one iteration 
    114112      s_timer%t_cpu = 0. 
    115113      s_timer%t_clock = 0. 
     
    140138      INTEGER  :: ifinal_count, iperiods     
    141139      REAL(wp) :: zcpu_end, zmpitime,zcpu_raw,zclock_raw 
    142       ! TODO: TO BE TILED 
    143       IF( ntile /= 0 .AND. ntile /= nijtile ) RETURN 
    144140      ! 
    145141      s_wrk => NULL() 
Note: See TracChangeset for help on using the changeset viewer.