Changes between Version 3 and Version 4 of Doc/ComputingCenters/TGCC/IreneAmd


Ignore:
Timestamp:
05/11/20 08:11:27 (4 years ago)
Author:
aclsce
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Doc/ComputingCenters/TGCC/IreneAmd

    v3 v4  
    144144|| ''Visible spaces'' || {{{-m}}} || (comma-separated) string(s) || {{{#MSUB -m store,work,scratch}}} || Specific to TGCC. The job can only "see" spaces specified on this line. Possible spaces are amongst {{{store}}} and/or {{{work}}} and/or {{{scratch}}}. || 
    145145|| ''Job priority'' || {{{-U}}} || string || {{{#MSUB -U high}}} || Possible arguments are {{{high}}}, {{{medium}}} or {{{low}}}. (This command does not appear by default on jobs generated by libIGCM.) || 
     146 
     147# Use of specific options to increase computing performances # 
     148 
     149Following options have to be used with caution. Please contact the person in charge of the configuration you use before launching production runs with these options.  
     150 
     151## Increase the number of core per MPI/OpenMP process ## 
     152 
     153Because of the architecture of Irene-amd processor, you could be limited by the memory available per core as well as the memory bandwidth. In order to use more cores per MPI process (or OpenMP thread), you can specify the factor you want to increase this number of cores in config.card by using '''DEP''' keyword as follows : 
     154{{{ 
     155ATM= (gcm.e, lmdz.x, 71MPI, 8OMP, 2DEP) 
     156SRF= ("" ,"" ) 
     157SBG= ("" ,"" ) 
     158OCE= (opa, opa.xx, 360MPI, 2DEP) 
     159ICE= ("" ,"" ) 
     160MBG= ("" ,"" ) 
     161CPL= ("", "" ) 
     162IOS= (xios_server.exe, xios.x, 12MPI, 2DEP) 
     163}}} 
     164 
     165In this example, the number of cores will be increased by a factor 2 for each component.  
     166 
     167## Use of dedicated nodes for XIOS servers ## 
     168 
     169Some preliminary tests (bad performances) drive us to investigate the use of dedicated nodes for XIOS servers. To activate this functionality, you have to modify your config.card by using "DEDICATED" keyword as follows : 
     170 
     171{{{ 
     172ATM= (gcm.e, lmdz.x, 71MPI, 8OMP, 2DEP) 
     173SRF= ("" ,"" ) 
     174SBG= ("" ,"" ) 
     175OCE= (opa, opa.xx, 360MPI) 
     176ICE= ("" ,"" ) 
     177MBG= ("" ,"" ) 
     178CPL= ("", "" ) 
     179IOS= (xios_server.exe, xios.x, 12MPI,2DEP, DEDICATED) 
     180}}} 
     181 
     182Note that this functionality is only available for IOS component.