#!/bin/ksh # # LSF batch script to run an MPI application # # wrf.exe should be configured and compiled dm+sm #BSUB -n 256 # number of tasks #BSUB -a poe # select the poe elim #BSUB -R "span[ptile=8]" # tasks per node #BSUB -J wrf3 # job name #BSUB -o wrf3_1024pe.out # output filename #BSUB -e wrf3_1024pe.out #BSUB -W 00:30 # wall clock time #BSUB -x # exlusive use of node (not_shared) #BSUB -q xxxxxxxx # queue #BSUB -P xxxxxxxx . ./wrfenv export OMP_NUM_THREADS=8 export TARGET_CPU_LIST=-1 export MP_EAGER_LIMIT=32768 export XLSMPOPTS=stack=256000000 export MP_USE_BULK_XFER=yes export MP_BULK_MIN_MSG_SIZE=64k cp namelist.input.256a namelist.input export MP_RC_MAX_QP=4096 export MP_PRIORITY=hipri4 export MP_PRIORITY_NTP=yes export MP_PRIORITY_LOG=no /bin/rm rsl.* mpirun.lsf hybrid_launch wrf.exe