#!/bin/csh # # LSF batch script to run the test MPI code # #BSUB -P 36151025 # Project 99999999 or use default if commented out #BSUB -a poe # select poe #BSUB -x # exclusive use of node (not_shared) #BSUB -n 4 # number of total (MPI) tasks #BSUB -R "span[ptile=4]" # run a max of 8 tasks per node #BSUB -J mpilsf.real # job name #BSUB -o mpilsfr.out # output filename #BSUB -e mpilsfr.err # error filename #BSUB -W 0:20 # wallclock time #BSUB -q regular # queue source /usr/local/lsf/conf/cshrc.lsf set RUNDIR =/ptmp/esertel/wrf-nmm/WRFV2/run cd ${RUNDIR} mpirun.lsf ./real_nmm.exe exit