Changes between Initial Version and Version 1 of Ticket #6
- Timestamp:
- 04/11/20 21:20:44 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #6
- Property Resolution → fixed
- Property Status new → closed
-
Ticket #6 – Description
initial v1 3 3 For example, if '''Nsaddle=4''', '''NtileI=2''', and '''NtileJ=2''', we will need '''16''' processes when '''CONCURRENT_KERNEL''' is off and '''32''' processes if it is activated. 4 4 {{{ 5 mpirun -np 16 romsM roms.in (CONCURRENT_KERNEL off)5 mpirun -np 16 romsM roms.in > & err & (CONCURRENT_KERNEL off) 6 6 or 7 mpirun -np 32 romsM roms.in (CONCURRENT_KERNEL on)7 mpirun -np 32 romsM roms.in > & err & (CONCURRENT_KERNEL on) 8 8 }}} 9 9 … … 12 12 * Fixed several logical errors in '''saddle_point.h''', '''atimev.F''', '''gmres.F''', and '''precsp.F''' to achieve identical convergence values for '''Jobs'''. 13 13 14 Many thanks to Andy Moore for his immense help in tracking and fixing the algorithm code and logical bugs. 14 * Modified the following files: 15 {{{ 16 ROMS/Adjoint/ad_initial.F 17 ROMS/Drivers/is4dvar_ocean.h 18 ROMS/Drivers/saddle_point.h 19 ROMS/Drivers/w4dpsas_ocean.h 20 ROMS/Modules/mod_parallel.F 21 ROMS/Modules/mod_strings.F 22 ROMS/Utility/atimesv.F 23 ROMS/Utility/checkdefs.F 24 ROMS/Utility/convolve.F 25 ROMS/Utility/def_mod.F 26 ROMS/Utility/gmres.F 27 ROMS/Utility/inp_par.F 28 ROMS/Utility/obs_initial.F 29 ROMS/Utility/precsp.F 30 ROMS/Utility/read_phypar.F 31 ROMS/Utility/stdinp_mod.F 32 ROMS/Utility/strings.F 33 ROMS/Utility/tracing.F 34 ROMS/Version 35 }}} 36 37 ---- 38 39 Many thanks to Andy Moore for his immense help in tracking and fixing the algorithm code and logical bugs.