Changeset 5225 for LMDZ6/branches/Amaury_dev
- Timestamp:
- Sep 25, 2024, 12:37:42 AM (2 months ago)
- Location:
- LMDZ6/branches/Amaury_dev
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/branches/Amaury_dev
- Property svn:mergeinfo changed
/LMDZ6/trunk merged: 5206-5207
- Property svn:mergeinfo changed
-
LMDZ6/branches/Amaury_dev/libf/dyn3dmem/parallel_lmdz.F90
r5159 r5225 382 382 USE lmdz_dimensions, ONLY: iim, jjm, llm, ndm 383 383 USE lmdz_paramet 384 USE control_mod, only : ok_dyn_xios 384 385 385 386 … … 411 412 IF (using_xios) THEN 412 413 !Fermeture propre de XIOS 414 ! close xios dynamic context if is defined (call LMDZDYN) 415 IF (ok_dyn_xios) THEN 416 CALL xios_context_finalize() 417 ENDIF 413 418 CALL wxios_close() 414 419 CALL prism_terminate_proto(ierr) … … 425 430 CALL abort_gcm('Finalize_parallel', 'type_ocean = couple but CPP_COUPLE not defined', 1) 426 431 #endif 427 else 432 433 ELSE 428 434 IF (using_xios) THEN 429 435 !Fermeture propre de XIOS 436 IF (ok_dyn_xios) THEN 437 CALL xios_context_finalize() 438 END IF 439 430 440 CALL wxios_close() 431 END IF441 END IF 432 442 IF (using_mpi) CALL MPI_FINALIZE(ierr) 433 end if443 END IF 434 444 435 445 END SUBROUTINE Finalize_parallel -
LMDZ6/branches/Amaury_dev/libf/misc/lmdz_wxios.F90
r5123 r5225 772 772 773 773 SUBROUTINE wxios_close() 774 CALL xios_context_finalize()774 ! CALL xios_context_finalize() 775 775 CALL xios_finalize() 776 776 END SUBROUTINE wxios_close -
LMDZ6/branches/Amaury_dev/libf/phylmd/physiq_mod.F90
r5224 r5225 5677 5677 END IF 5678 5678 5679 IF (is_omp_master .AND. grid_type==unstructured) CALL xios_context_finalize 5680 ENDIF 5679 ! close xios physiq context (call LMDZ) 5680 IF (is_omp_master) CALL xios_context_finalize 5681 ENDIF 5681 5682 5682 5683 WRITE(lunout, *) ' physiq fin, nombre de steps ou cvpas = 1 : ', Ncvpaseq1
Note: See TracChangeset
for help on using the changeset viewer.