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
12 echo | mpirun_rsh -np 1 -hostfile mach OMP_NUM_THREADS=1 ideal.exe
16 # copy ${NAME} to ${NAME}-1x1 etc.
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 ) &