Ignore:
Timestamp:
07/22/14 16:00:02 (10 years ago)
Author:
ymipsl
Message:
  • One call for initialize physics from dynamico
  • mpi_root renamed into mpi_master due to conflict with an existaing symbol from the mpi library

==> mpi_root => mpi_master, is_mpi_root => is_mpi_master, is_omp_root => is_omp_master

YM

File:
1 edited

Legend:

Unmodified
Added
Removed
  • codes/icosagcm/branches/SATURN_DYNAMICO/LMDZ.COMMON/libf/phystd/wstats.F90

    r227 r245  
    11subroutine wstats(ngrid,nom,titre,unite,dim,px) 
    22 
    3 use mod_phys_lmdz_para, only : is_mpi_root, is_master, gather, klon_mpi_begin 
     3use mod_phys_lmdz_para, only : is_mpi_master, is_master, gather, klon_mpi_begin 
    44use mod_grid_phy_lmdz, only : klon_glo, Grid1Dto2D_glo 
    55 
     
    7272  call Gather(px3,px3_glop) 
    7373!$OMP MASTER 
    74   if (is_mpi_root) then 
     74  if (is_mpi_master) then 
    7575    call Grid1Dto2D_glo(px3_glop,px3_glo) 
    7676    ! copy dx3_glo() to dx3(:) and add redundant longitude 
     
    8585  call Gather(px2,px2_glop) 
    8686!$OMP MASTER 
    87           if (is_mpi_root) then 
     87          if (is_mpi_master) then 
    8888            call Grid1Dto2D_glo(px2_glop,px2_glo) 
    8989            ! copy px2_glo() to dx2(:) and add redundant longitude 
Note: See TracChangeset for help on using the changeset viewer.