- Timestamp:
- Jan 25, 2011, 12:12:55 PM (14 years ago)
- Location:
- LMDZ4/branches/LMDZ4_AR5/libf/dyn3dpar
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ4/branches/LMDZ4_AR5/libf/dyn3dpar/ce0l.F90
r1319 r1476 22 22 USE mod_const_mpi 23 23 USE infotrac 24 USE parallel, ONLY: finalize_parallel 24 25 25 26 #ifdef CPP_IOIPSL … … 56 57 CALL abort_gcm('ce0l','In parallel mode, & 57 58 & ce0l must be called only & 58 & for 1 process and 1 task' )59 & for 1 process and 1 task',1) 59 60 ENDIF 60 61 … … 102 103 END IF 103 104 105 !$OMP MASTER 106 CALL finalize_parallel 107 !$OMP END MASTER 108 104 109 #endif 105 110 ! of #ifndef CPP_EARTH #else 106 STOP107 111 108 112 END PROGRAM ce0l -
LMDZ4/branches/LMDZ4_AR5/libf/dyn3dpar/limit_netcdf.F90
r1402 r1476 267 267 #endif 268 268 ! of #ifdef CPP_EARTH 269 STOP270 269 271 270 -
LMDZ4/branches/LMDZ4_AR5/libf/dyn3dpar/parallel.F90
r1279 r1476 5 5 USE mod_const_mpi 6 6 7 LOGICAL,SAVE :: using_mpi 7 LOGICAL,SAVE :: using_mpi=.TRUE. 8 8 LOGICAL,SAVE :: using_omp 9 9 … … 208 208 integer :: ierr 209 209 integer :: i 210 deallocate(jj_begin_para) 211 deallocate(jj_end_para) 212 deallocate(jj_nb_para) 210 211 if (allocated(jj_begin_para)) deallocate(jj_begin_para) 212 if (allocated(jj_end_para)) deallocate(jj_end_para) 213 if (allocated(jj_nb_para)) deallocate(jj_nb_para) 213 214 214 215 if (type_ocean == 'couple') then
Note: See TracChangeset
for help on using the changeset viewer.