Changeset 13145
- Timestamp:
- 2020-06-23T13:51:37+02:00 (3 years ago)
- Location:
- utils/tools_dev_r12970_AGRIF_CMEMS/DOMAINcfg/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
utils/tools_dev_r12970_AGRIF_CMEMS/DOMAINcfg/src/agrif_dom_update.F90
r13109 r13145 5 5 USE agrif_parameters 6 6 USE agrif_profiles 7 USE lbclnk 7 8 8 9 IMPLICIT none -
utils/tools_dev_r12970_AGRIF_CMEMS/DOMAINcfg/src/lib_mpp.F90
r13056 r13145 1529 1529 ENDIF 1530 1530 END SUBROUTINE mpp_report 1531 1532 1533 SUBROUTINE tic_tac (ld_tic, ld_global)1534 1535 LOGICAL, INTENT(IN) :: ld_tic1536 LOGICAL, OPTIONAL, INTENT(IN) :: ld_global1537 REAL(wp), DIMENSION(2), SAVE :: tic_wt1538 REAL(wp), SAVE :: tic_ct = 0._wp1539 INTEGER :: ii1540 1541 IF( ncom_stp <= nit000 ) RETURN1542 IF( ncom_stp == nitend ) RETURN1543 ii = 11544 IF( PRESENT( ld_global ) ) THEN1545 IF( ld_global ) ii = 21546 END IF1547 1548 IF ( ld_tic ) THEN1549 tic_wt(ii) = MPI_Wtime() ! start count tic->tac (waiting time)1550 IF ( tic_ct > 0.0_wp ) compute_time = compute_time + MPI_Wtime() - tic_ct ! cumulate count tac->tic1551 ELSE1552 waiting_time(ii) = waiting_time(ii) + MPI_Wtime() - tic_wt(ii) ! cumulate count tic->tac1553 tic_ct = MPI_Wtime() ! start count tac->tic (waiting time)1554 ENDIF1555 1556 END SUBROUTINE tic_tac1557 1558 1531 1559 1532 #else … … 1841 1814 IF( numstp /= -1 ) CALL FLUSH(numstp ) 1842 1815 IF( numrun /= -1 ) CALL FLUSH(numrun ) 1843 IF( numevo_ice /= -1 ) CALL FLUSH(numevo_ice)1844 1816 ! 1845 1817 IF( cd1 == 'STOP' ) THEN -
utils/tools_dev_r12970_AGRIF_CMEMS/DOMAINcfg/src/mpp_nfd_generic.h90
r13056 r13145 95 95 l_full_nf_update = .TRUE. 96 96 97 ! Two lines update (slower but necessary to avoid different values ion identical grid points 98 IF ( l_full_nf_update .OR. & ! if coupling fields 99 ( ncom_stp == nit000 .AND. .NOT. ln_rstart ) ) & ! at first time step, if not restart 100 ipj_s(:) = 2 97 ipj_s(:) = 2 101 98 102 99 ! Index of modifying lines in input
Note: See TracChangeset
for help on using the changeset viewer.