Changeset 5103 for LMDZ6/branches/Amaury_dev/libf/phy_common
- Timestamp:
- Jul 23, 2024, 3:29:36 PM (4 months ago)
- Location:
- LMDZ6/branches/Amaury_dev/libf/phy_common
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/branches/Amaury_dev/libf/phy_common/abort_physic.F90
r5101 r5103 2 2 SUBROUTINE abort_physic(modname, message, ierr) 3 3 4 #ifdef CPP_IOIPSL5 4 USE IOIPSL 6 #else7 ! if not using IOIPSL, we still need to use (a local version of) getin_dump8 USE ioipsl_getincom9 #endif10 5 USE mod_phys_lmdz_para 11 6 USE print_control_mod, ONLY: lunout … … 24 19 25 20 write(lunout,*) 'in abort_physic' 26 #ifdef CPP_IOIPSL27 21 !$OMP MASTER 28 22 CALL histclo … … 32 26 endif 33 27 !$OMP END MASTER 34 #endif35 28 36 29 write(lunout,*) 'Stopping in ', modname -
LMDZ6/branches/Amaury_dev/libf/phy_common/ioipsl_getin_p_mod.F90
r5101 r5103 5 5 ! To use getin in a parallel context 6 6 !--------------------------------------------------------------------- 7 #ifdef CPP_IOIPSL8 7 USE ioipsl, ONLY: getin 9 #else10 USE ioipsl_getincom, ONLY: getin11 #endif12 8 USE mod_phys_lmdz_mpi_data, ONLY: is_mpi_root 13 9 USE mod_phys_lmdz_omp_data, ONLY: is_omp_root -
LMDZ6/branches/Amaury_dev/libf/phy_common/mod_phys_lmdz_mpi_data.F90
r5099 r5103 96 96 IF (mpi_rank == 0) THEN 97 97 mpi_master = 0 98 is_mpi_root = . true.98 is_mpi_root = .TRUE. 99 99 ENDIF 100 100
Note: See TracChangeset
for help on using the changeset viewer.