Changeset 405 for palm/trunk/SCRIPTS/mrun
- Timestamp:
- Nov 16, 2009 12:20:59 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SCRIPTS/mrun
r400 r405 3162 3162 if [[ $threads_per_task != 1 ]] 3163 3163 then 3164 printf "\n threads per task: $threads_per_task" 3164 # increase stack size to unlimited, because large runs 3165 # may abort otherwise 3166 ulimit -Ss unlimited 3167 printf "\n threads per task: $threads_per_task stacksize: unlimited" 3165 3168 fi 3166 3169 if [[ $run_coupled_model = false ]] … … 3197 3200 export MV2_NUM_PORTS=2 3198 3201 # The default setting of MV2_CPU_MAPPING gives best results 3202 # export MV2_ENABLE_AFFINITY=1 3199 3203 # export MV2_CPU_MAPPING=0,1,4,5,2,3,6,7 3200 mpiexec -np $ii ./a.out $ROPTS < runfile_atmos 3204 if [[ $threads_per_task != 1 ]] 3205 then 3206 mpiexec -npernode 1 ./a.out $ROPTS < runfile_atmos 3207 else 3208 mpiexec -np $ii ./a.out $ROPTS < runfile_atmos 3209 fi 3201 3210 fi 3202 3211 elif [[ $host = lcxt4 ]]
Note: See TracChangeset
for help on using the changeset viewer.