Ignore:
Timestamp:
03/29/12 10:56:09 (12 years ago)
Author:
sdipsl
Message:
  • Merge libIGCM_MPI_OpenMP branch within the trunk
  • trunk will shortly be tagged libIGCM_2.0_beta
Location:
trunk/libIGCM/libIGCM_sys
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/libIGCM/libIGCM_sys/libIGCM_sys.ksh

    r449 r616  
    3434    echo "====================================================" 
    3535fi 
     36 
     37#==================================================== 
     38#- set PackDefault false by default 
     39PackDefault=false  
    3640 
    3741case $( hostname -s ) in 
  • trunk/libIGCM/libIGCM_sys/libIGCM_sys_mercure.ksh

    r615 r616  
    135135#==================================================== 
    136136#- RUN_DIR_PATH : Temporary working directory (=> TMP) 
    137 #typeset -r RUN_DIR_PATH=${RUN_DIR_PATH:=${CSCRATCHDIR}/TMPDIR_IGCM/${JOBID}} 
    138137typeset -r RUN_DIR_PATH=${RUN_DIR_PATH:=${TMPDIR}} 
    139138 
     
    721720#D-* Purpose: rm tmpdir (dummy function most of the time batch 
    722721#D-                      scheduler will do the job) 
     722#D-           Dummy function on mercure front-end 
    723723#D-* Examples: 
    724724#D- 
    725725function IGCM_sys_RmRunDir { 
    726   IGCM_debug_PushStack "IGCM_sys_RmRunDir" -- $@ 
    727   if ( $DEBUG_sys ) ; then 
    728     echo "IGCM_sys_RmRunDir :" $@ 
    729   fi 
    730  
    731   typeset RET 
    732  
    733   echo rm $@ > out_rsync 2>&1 
    734   \rm $@ >> out_rsync 2>&1 
    735   RET=$? 
    736  
    737   if [ ${RET} -gt 0 ] ; then 
    738     echo "IGCM_sys_RmRunDir : error." 
    739     cat out_rsync 
    740     IGCM_debug_Exit "IGCM_sys_RmRunDir" 
    741   else 
    742     \rm out_rsync 
    743   fi 
    744   IGCM_debug_PopStack "IGCM_sys_RmRunDir" 
     726    IGCM_debug_PushStack "IGCM_sys_RmRunDir" -- $@ 
     727    if ( $DEBUG_sys ) ; then 
     728        echo "IGCM_sys_RmRunDir :" $@ 
     729        echo "Dummy call, let the scheduler do that." 
     730    fi 
     731    IGCM_debug_PopStack "IGCM_sys_RmRunDir" 
    745732} 
    746733 
  • trunk/libIGCM/libIGCM_sys/libIGCM_sys_mercurex9.ksh

    r587 r616  
    170170#- Max number of arguments passed to nco operator or demigration command 
    171171UNIX_MAX_LIMIT=360 
     172 
     173#==================================================== 
     174#- set PackDefault true on NEC SX9 
     175PackDefault=true 
     176 
     177#==================================================== 
     178#- Default number of MPI task for IPSL coupled model 
     179#- required for backward compatibility 
     180#- 
     181DEFAULT_NUM_PROC_OCE=1 
     182DEFAULT_NUM_PROC_CPL=1 
     183(( DEFAULT_NUM_PROC_ATM = BATCH_NUM_PROC_TOT - 1 )) 
     184DEFAULT_NUM_PROC_TOTAL=${BATCH_NUM_PROC_TOT} 
    172185 
    173186#D-#================================================== 
     
    285298  Job ended   : ${DateEnd} 
    286299  Output files are available in ${R_SAVE} 
     300  Files to be rebuild are temporarily available in ${REBUILD_DIR} 
     301  Pre-packed files are temporarily available in ${R_BUFR} 
    287302  Script files, Script Outputs and Debug files (if necessary) are available in ${SUBMIT_DIR} 
    288303END_MAIL 
  • trunk/libIGCM/libIGCM_sys/libIGCM_sys_titane.ksh

    r591 r616  
    188188#- Max number of arguments passed to nco operator or demigration command 
    189189UNIX_MAX_LIMIT=360 
     190 
     191#==================================================== 
     192#- set PackDefault true on titane 
     193PackDefault=true 
     194 
     195NUM_COREPERNODE=8 
     196         
     197#==================================================== 
     198#- Default number of MPI task for IPSL coupled model 
     199#- required for backward compatibility 
     200#- 
     201DEFAULT_NUM_PROC_OCE=5 
     202DEFAULT_NUM_PROC_CPL=1 
     203DEFAULT_NUM_PROC_ATM=26 
     204DEFAULT_NUM_PROC_TOTAL=32 
    190205 
    191206#D-#================================================== 
     
    334349  Job ended   : ${DateEnd} 
    335350  Output files are available in ${R_SAVE} 
     351  Files to be rebuild are temporarily available in ${REBUILD_DIR} 
     352  Pre-packed files are temporarily available in ${R_BUFR} 
    336353  Script files, Script Outputs and Debug files (if necessary) are available in ${SUBMIT_DIR} 
    337354END_MAIL 
Note: See TracChangeset for help on using the changeset viewer.