Changeset 13409 for NEMO/branches/UKMO/dev_r12866_HPC-02_Daley_Tiling_trial_extra_halo/src/OCE/timing.F90
- Timestamp:
- 2020-08-17T15:28:54+02:00 (3 years ago)
- 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 93 93 !!---------------------------------------------------------------------- 94 94 CHARACTER(len=*), INTENT(in) :: cdinfo 95 ! TODO: TO BE TILED96 IF( ntile /= 0 .AND. ntile /= 1 ) RETURN97 95 ! 98 96 IF(ASSOCIATED(s_timer) ) s_timer_old => s_timer … … 111 109 112 110 s_timer%l_tdone = .FALSE. 113 s_timer%niter = s_timer%niter + 1111 IF( ntile == 0 .OR. ntile == 1 ) s_timer%niter = s_timer%niter + 1 ! All tiles count as one iteration 114 112 s_timer%t_cpu = 0. 115 113 s_timer%t_clock = 0. … … 140 138 INTEGER :: ifinal_count, iperiods 141 139 REAL(wp) :: zcpu_end, zmpitime,zcpu_raw,zclock_raw 142 ! TODO: TO BE TILED143 IF( ntile /= 0 .AND. ntile /= nijtile ) RETURN144 140 ! 145 141 s_wrk => NULL()
Note: See TracChangeset
for help on using the changeset viewer.