Merge pull request #22 from wirc-sjsu/develop-w21
[WRF-Fire-merge.git] / test / em_fire / run_hill
blob9de4eb1708c6011bf4fd6f59de16cdc43c78d7fb
1 # for regression testing to check if the results are the same on various number of processors
2 # build with configure -d and SM+DM
3 NAME=hill
4 cd ${NAME}
5 rm -rf mach
6 hostname >> mach
7 hostname >> mach
8 hostname >> mach
9 hostname >> mach
10 hostname >> mach
11 hostname >> mach
12 echo | mpirun_rsh -np 1 -hostfile mach OMP_NUM_THREADS=1 ideal.exe 
13 #cat rsl.out.0000
14 cd ..
15 pwd
16 # copy ${NAME} to ${NAME}-1x1 etc.
17 rm -rf ${NAME}-*
18 # source this
19 # rm -f ${NAME}-?x?/{rsl.*,*_*.txt wrfo*,wrfr*}  # to grab for cleanup
20 ( cp -a ${NAME} ${NAME}-1x1; cd ${NAME}-1x1; rm -rf rsl.* wrfo* wrfr*; nohup mpirun_rsh -np 1 -hostfile mach OMP_NUM_THREADS=1 wrf.exe < /dev/null >& wrf.log ) &
21 ( cp -a ${NAME} ${NAME}-1x6; cd ${NAME}-1x6; rm -rf rsl.* wrfo* wrfr*; nohup mpirun_rsh -np 1 -hostfile mach OMP_NUM_THREADS=6 wrf.exe < /dev/null >& wrf.log ) &
22 ( cp -a ${NAME} ${NAME}-6x1; cd ${NAME}-6x1; rm -rf rsl.* wrfo* wrfr*; nohup mpirun_rsh -np 6 -hostfile mach OMP_NUM_THREADS=1 wrf.exe < /dev/null >& wrf.log ) & 
23 ( cp -a ${NAME} ${NAME}-3x2; cd ${NAME}-3x2; rm -rf rsl.* wrfo* wrfr*; nohup mpirun_rsh -np 3 -hostfile mach OMP_NUM_THREADS=2 wrf.exe < /dev/null >& wrf.log ) & 
24 ( cp -a ${NAME} ${NAME}-2x3; cd ${NAME}-2x3; rm -rf rsl.* wrfo* wrfr*; nohup mpirun_rsh -np 2 -hostfile mach OMP_NUM_THREADS=3 wrf.exe < /dev/null >& wrf.log ) & 
25 ( cp -a ${NAME} ${NAME}-2x1; cd ${NAME}-2x1; rm -rf rsl.* wrfo* wrfr*; nohup mpirun_rsh -np 2 -hostfile mach OMP_NUM_THREADS=1 wrf.exe < /dev/null >& wrf.log ) & 
26 ( cp -a ${NAME} ${NAME}-1x2; cd ${NAME}-1x2; rm -rf rsl.* wrfo* wrfr*; nohup mpirun_rsh -np 1 -hostfile mach OMP_NUM_THREADS=2 wrf.exe < /dev/null >& wrf.log ) &