Changes between Version 26 and Version 27 of Doc/Setup


Ignore:
Timestamp:
09/24/15 16:51:48 (9 years ago)
Author:
sdipsl
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Doc/Setup

    v26 v27  
    7777 * !DateEnd --> simulation end date. It must be the last day "included" in your simulation 
    7878 * !PeriodLength --> frequency of the executable run. This parameter can be 1M, 1Y or 10Y 
    79  * !JobNumProcTot --> number of processors required by your simulation. This parameter depends on the configurations and on the resolutions. For example, a configuration containing LMDZ in 96x95 can use 32 processors at the most. 
     79 * !JobNumProcTot --> number of processors required by your simulation. 
    8080 * ARCHIVE --> optional : path to base directory for output files. By default this is set in libIGCM depending on the machine. 
    8181 
     
    112112### The section [Executable] ### 
    113113This section contains one line for each model component giving the executable's name in the bin/ directory and the executable's name copied to the working directory. You should only change this section if your executable is running in parallel using MPI and OpenMP or if you have changed the executable's name. 
     114 
     115Note : (",") indicates that this component has no executable. It is defined in a library linked to another executable (e.g. Orchidee in LMDZOR or Inca in LMDZINCA).  
     116 
     117'''Example of an old syntax (configuration < v5). LMDz will use JobNumProcTot MPI processes. Using IPSLCM5_v5, NEMO will use 5 MPI processes and LMDz will use (JobNumProcTot-5) MPI processes''' 
    114118{{{ 
    115119#!sh 
     
    120124... 
    121125}}} 
    122 Note : (",") indicates that this component has no executable. It is defined in a library linked to another executable (e.g. Orchidee in LMDZOR or Inca in LMDZINCA).  
    123  
    124 '''Example for an MPMD MPI execution with NEMO and XIOS''' : Ocean on 127 MPI process and IO Server on 1 MPI process. 
     126 
     127'''Example for an MPMD MPI execution with NEMO and XIOS''' : Ocean on 127 MPI processes and IO Server on 1 MPI processes. 
    125128{{{ 
    126129#!sh 
    127130[Executable] 
    128 #D- For each component, Real name of executable, Name of executable in RUN_DIR directory, Number of MPI process, Number of OpenMP threads 
     131#D- For each component, Real name of executable, Name of executable in RUN_DIR directory, Number of MPI processes, Number of OpenMP threads 
    129132OCE= (opa, opa.xx, 127MPI) 
    130133ICE= ("" ,"" ) 
     
    133136}}} 
    134137 
    135 '''Example for an MPMD hybrid MPI/OpenMP execution with IPSLCM coupled configuration''' : Atmosphere on 27 MPI process and 4 OMP threads per process, Ocean on 19 MPI process, IO Server on 1 MPI process. 
     138'''Example for an MPMD hybrid MPI/OpenMP execution with IPSLCM coupled configuration''' : Atmosphere on 27 MPI processes and 4 OMP threads per processes, Ocean on 19 MPI processes, IO Server on 1 MPI processes. 
    136139{{{ 
    137140#!sh 
    138141[Executable] 
    139 #D- For each component, Real name of executable, Name of executable in RUN_DIR directory, Number of MPI process, Number of OpenMP threads 
     142#D- For each component, Real name of executable, Name of executable in RUN_DIR directory, Number of MPI processes, Number of OpenMP threads 
    140143ATM= (gcm.e, lmdz.x, 27MPI, 4OMP) 
    141144SRF= ("" ,"" ) 
     
    148151}}} 
    149152 
    150 '''Another example for an MPMD hybrid MPI/OpenMP execution with LMDZ and XIOS''' : Atmosphere on 47 MPI process, 8 OMP threads per processand and IO server on 1 MPI process. 
     153'''Another example for an MPMD hybrid MPI/OpenMP execution with LMDZ and XIOS''' : Atmosphere on 47 MPI processes, 8 OMP threads per processes and and IO server on 1 MPI processes. 
    151154{{{ 
    152155#!sh 
    153156[Executable] 
    154 #D- For each component, Real name of executable, Name of executable in RUN_DIR directory, Number of MPI process, Number of OpenMP threads 
     157#D- For each component, Real name of executable, Name of executable in RUN_DIR directory, Number of MPI processes, Number of OpenMP threads 
    155158ATM= (gcm.e, lmdz.x, 47MPI, 8OMP) 
    156159SRF= ("" ,"" ) 
     
    159162}}} 
    160163 
    161 '''Example for an SPMD hybrid MPI/OpenMP simulation with LMDZ''' : Atmosphere on 32 MPI process and 4 OMP threads per process. 
     164'''Example for an SPMD hybrid MPI/OpenMP simulation with LMDZ''' : Atmosphere on 32 MPI processes and 4 OMP threads per processes. 
    162165{{{ 
    163166#!sh 
    164167[Executable] 
    165 #D- For each component, Real name of executable, Name of executable in RUN_DIR directory, Number of MPI process, Number of OpenMP threads 
     168#D- For each component, Real name of executable, Name of executable in RUN_DIR directory, Number of MPI processes, Number of OpenMP threads 
    166169ATM= (gcm.e, lmdz.x, 32MPI, 4OMP) 
    167170SRF= ("" ,"" )