Changes between Initial Version and Version 1 of Ticket #785
- Timestamp:
- 09/26/18 21:55:19 (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #785
- Property Resolution → Done
- Property Status new → closed
-
Ticket #785 – Description
initial v1 6 6 7 7 A new subroutine, '''memory.F''', is introduce to compute and report ROMS dynamic and automatic memory requirements. It is called from '''ROMS_finalize'''. That is, at the end of execution. 8 {{{ 9 ! 10 ! Report dynamic memory and automatic memory requirements. 11 ! 12 !$OMP PARALLEL 13 CALL memory 14 !$OMP END PARALLEL 15 ! 16 ! Close IO files. 17 ! 18 CALL close_out 19 20 RETURN 21 END SUBROUTINE ROMS_finalize 22 }}} 8 23 9 24 For a three-nested grid MPI application, I get: 10 11 {{{ 25 {{{ 12 26 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 13 27