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 9570 for branches/2017/dev_merge_2017/NEMOGCM/NEMO/OCE_SRC/timing.F90 – NEMO

Ignore:
Timestamp:
2018-05-11T12:53:25+02:00 (6 years ago)
Author:
nicolasmartin
Message:

Global renaming for core routines (./NEMO)

  • Folders
    • LIM_SRC_3 -> ICE_SRC
    • OPA_SRC -> OCE_SRC
  • CPP key: key_lim3 -> key_si3
  • Modules, (sub)routines and variables names
    • MPI: mpi_comm_opa -> mpi_comm_oce, MPI_COMM_OPA -> MPI_COMM_OCE, mpi_init_opa -> mpi_init_oce
    • AGRIF: agrif_opa_* -> agrif_oce_*, agrif_lim3_* -> agrif_si3_* and few more
    • TOP-PISCES: p.zlim -> p.zice, namp.zlim -> namp.zice
  • Comments
    • NEMO/OPA -> NEMO/OCE
    • ESIM|LIM3 -> SI3
Location:
branches/2017/dev_merge_2017/NEMOGCM/NEMO/OCE_SRC
Files:
1 edited
1 moved

Legend:

Unmodified
Added
Removed
  • branches/2017/dev_merge_2017/NEMOGCM/NEMO/OCE_SRC/timing.F90

    r9215 r9570  
    7777   LOGICAL :: lwriter 
    7878   !!---------------------------------------------------------------------- 
    79    !! NEMO/OPA 4.0 , NEMO Consortium (2011) 
     79   !! NEMO/OCE 4.0 , NEMO Consortium (2011) 
    8080   !! $Id$ 
    8181   !! Software governed by the CeCILL licence     (NEMOGCM/NEMO_CeCILL.txt) 
     
    307307      CALL MPI_ALLGATHER(t_elaps(2), 1, MPI_DOUBLE_PRECISION,   & 
    308308                         all_etime , 1, MPI_DOUBLE_PRECISION,   & 
    309                          MPI_COMM_OPA, icode) 
     309                         MPI_COMM_OCE, icode) 
    310310      CALL MPI_ALLGATHER(t_cpu(2) , 1, MPI_DOUBLE_PRECISION,   & 
    311311                         all_ctime, 1, MPI_DOUBLE_PRECISION,   & 
    312                          MPI_COMM_OPA, icode) 
     312                         MPI_COMM_OCE, icode) 
    313313      tot_etime = SUM(all_etime(:)) 
    314314      tot_ctime = SUM(all_ctime(:)) 
     
    467467         CALL MPI_GATHER(s_timer%cname     , 20, MPI_CHARACTER,   & 
    468468                         sl_timer_glob%cname, 20, MPI_CHARACTER,   & 
    469                          0, MPI_COMM_OPA, icode) 
     469                         0, MPI_COMM_OCE, icode) 
    470470         CALL MPI_GATHER(s_timer%tsum_clock     , 1, MPI_DOUBLE_PRECISION,   & 
    471471                         sl_timer_glob%tsum_clock, 1, MPI_DOUBLE_PRECISION,   & 
    472                          0, MPI_COMM_OPA, icode) 
     472                         0, MPI_COMM_OCE, icode) 
    473473         CALL MPI_GATHER(s_timer%tsum_cpu     , 1, MPI_DOUBLE_PRECISION,   & 
    474474                         sl_timer_glob%tsum_cpu, 1, MPI_DOUBLE_PRECISION,   & 
    475                          0, MPI_COMM_OPA, icode) 
     475                         0, MPI_COMM_OCE, icode) 
    476476         CALL MPI_GATHER(s_timer%niter     , 1, MPI_INTEGER,   & 
    477477                         sl_timer_glob%niter, 1, MPI_INTEGER,   & 
    478                          0, MPI_COMM_OPA, icode) 
     478                         0, MPI_COMM_OCE, icode) 
    479479 
    480480         IF( narea == 1 .AND. ASSOCIATED(s_timer%next) ) THEN 
Note: See TracChangeset for help on using the changeset viewer.