Changeset 1482 for LMDZ5/branches/LMDZ5V2.0-dev/libf
- Timestamp:
- Feb 9, 2011, 4:03:09 PM (14 years ago)
- Location:
- LMDZ5/branches/LMDZ5V2.0-dev/libf/dyn3dpar
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ5/branches/LMDZ5V2.0-dev/libf/dyn3dpar/ce0l.F90
r1425 r1482 22 22 USE mod_const_mpi 23 23 USE infotrac 24 USE parallel, ONLY: finalize_parallel 24 25 25 26 #ifdef CPP_IOIPSL … … 55 56 CALL abort_gcm('ce0l','In parallel mode, & 56 57 & ce0l must be called only & 57 & for 1 process and 1 task' )58 & for 1 process and 1 task',1) 58 59 ENDIF 59 60 … … 101 102 END IF 102 103 104 !$OMP MASTER 105 CALL finalize_parallel 106 !$OMP END MASTER 107 103 108 #endif 104 109 ! of #ifndef CPP_EARTH #else -
LMDZ5/branches/LMDZ5V2.0-dev/libf/dyn3dpar/parallel.F90
r1462 r1482 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_np_para)) deallocate(jj_nb_para) 213 214 214 215 if (type_ocean == 'couple') then
Note: See TracChangeset
for help on using the changeset viewer.