| Both sides previous revision
Previous revision
Next revision
|
Previous revision
|
howto:wrf [2019/06/18 14:52] ccrosby [Running ARW / WRF at the CHPC] |
howto:wrf [2022/10/27 18:42] (current) thlatshwayo |
| ====== Running ARW / WRF at the CHPC ====== | ====== Running ARW / WRF at the CHPC ====== |
| There are several versions of WRF, using different combinations of compiler and MPI implementation, installed on the filesystem in ''/apps/chpc/earth/''. The latest version is WRF-4.1.1, built with the Intel compiler. Tests have indicated a very large benefit from using the Intel compiler and MPI rather than Gnu compiler and OpenMPI or MPICH. MPICH versions need the mpirun argument ''-iface ib0'' to force it to use the Infiniband network. Please note that it is essential to set the unlimited stack size for the Intel-compiled version, as done in the script below. To set up an appropriate environment, "source" the setWRF file in the required directory with the following type of command: ''. /apps/chpc/earth/WRF-3.8-impi/setWRF'' . This command should be placed in the PBS-Pro job submission script. Users need to develop their own workflows, but it is also practical to execute the pre-processing steps ''geogrid.exe, ungrib.exe, metgrid.exe and real.exe'' in single node mode with an interactive session. Simply give the command ''qsub -I -q smp -P <AAAA0000>'', where <AAAA0000> should be replaced with **your** project code, to obtain an interactive session. Do not try to run these pre-processing steps from the login shell, as the shared login node cannot sustain a high work load. The real.exe pre-processing step for large cases may run into memory constraints. In that case, run real.exe in parallel over the requested number of nodes, but with only one process per node, as per the example script. | |
| | **NEW: [[https://youtu.be/beXd1pBEOYY|Howto video]] ** |
| | |
| | There are several versions of WRF, using different combinations of compiler and MPI implementation, installed on the filesystem in ''/apps/chpc/earth/''. The latest version is WRF-4.2, built with the Intel compiler. Tests have indicated a very large benefit from using the Intel compiler and MPI rather than Gnu compiler and OpenMPI or MPICH. MPICH versions need the mpirun argument ''-iface ib0'' to force it to use the Infiniband network. Please note that it is essential to set the unlimited stack size for the Intel-compiled version, as done in the script below. To set up an appropriate environment, "source" the setWRF file in the required directory with the following type of command: ''. /apps/chpc/earth/WRF-3.8-impi/setWRF'' . This command should be placed in the PBS-Pro job submission script. Users need to develop their own workflows, but it is also practical to execute the pre-processing steps ''geogrid.exe, ungrib.exe, metgrid.exe and real.exe'' in single node mode with an interactive session. Simply give the command ''qsub -I -q smp -P <AAAA0000>'', where <AAAA0000> should be replaced with **your** project code, to obtain an interactive session. Do not try to run these pre-processing steps from the login shell, as the shared login node cannot sustain a high work load. The real.exe pre-processing step for large cases may run into memory constraints. In that case, run real.exe in parallel over the requested number of nodes, but with only one process per node, as per the example script. |
| | |
| | ====== Warning: mpirun parameters changed ====== |
| | |
| | It has been necessary to change some of our MPI installations. The reason for this is that these installations were compiled without support for the PBS scheduler, which could result in orphaned processes left on the cluster if a job failed for any reason. The revised MPI installations keep all MPI ranks under full control of PBS, which means that they should be cleaned up properly in the event of a job failure. However, users may now experience an incompatibility with the mpirun command. A typical error message may look like this: |
| | |
| | ''HYDT_bsci_init (tools/bootstrap/src/bsci_init.c:175): unrecognized RMK: user'' |
| | |
| | **The simple solution to this error is to remove the ''-machinefile $PBS_NODEFILE'' parameter to the mpirun command.** |
| | |
| |
| ==== OpenMP ==== | ==== OpenMP ==== |
| WRF-4.0 and WRF-4.1.1 have been installed with support for OpenMP. It is therefore possible to run using the same number of cores in total, but fewer MPI processes. By default, the environment variable **OMP_NUM_THREADS** is set to 1 in the setWRF script. Testing on Lengau has confirmed that there are substantial performance benefits to be obtained from using OpenMP. Benchmark results are given below, but it appears to be close to optimal to use 6 MPI ranks per node, with 4 OpenMP threads per MPI rank. If you want to experiment with OpenMP, set this variable in your job script ** after ** sourcing the setWRF script. Although the WRF-4 / gcc-8.3.0 / mpich-3.3 installation also supports OpenMP, performance testing indicates that this version does not benefit from using OpenMP. The version compiled with the PGI compiler is competitive with the Intel version when using MPI only, but also does not benefit from adding OpenMP. | WRF-4.0, WRF-4.1.1 and WRF-4.2 have been installed with support for OpenMP. It is therefore possible to run using the same number of cores in total, but fewer MPI processes. By default, the environment variable **OMP_NUM_THREADS** is set to 1 in the setWRF script. Testing on Lengau has confirmed that there are substantial performance benefits to be obtained from using OpenMP. Benchmark results are given below, but it appears to be close to optimal to use 6 MPI ranks per node, with 4 OpenMP threads per MPI rank. If you want to experiment with OpenMP, set this variable in your job script ** after ** sourcing the setWRF script. Although the WRF-4 / gcc-8.3.0 / mpich-3.3 installation also supports OpenMP, performance testing indicates that this version does not benefit from using OpenMP. The version compiled with the PGI compiler is competitive with the Intel version when using MPI only, but also does not benefit from adding OpenMP. |
| |
| ==== WRF, Parallel NetCDF and I/O Quilting ==== | ==== WRF, Parallel NetCDF and I/O Quilting ==== |
| #PBS -l select=10:ncpus=24:mpiprocs=24 -q normal -P TEST1234 | #PBS -l select=10:ncpus=24:mpiprocs=24 -q normal -P TEST1234 |
| #PBS -l walltime=3:00:00 | #PBS -l walltime=3:00:00 |
| #PBS -o /home/username/scratch/WRFV3_test/run/stdout | #PBS -o /mnt/lustre/users/jblogs/WRFV3_test/run/stdout |
| #PBS -e /home/username/scratch/WRFV3_test/run/stderr | #PBS -e /mnt/lustre/users/jblogs/WRFV3_test/run/stderr |
| #PBS -m abe | #PBS -m abe |
| #PBS -M username@unseenuniversity.ac.za | #PBS -M jblogs@unseenuniversity.ac.za |
| ### Source the WRF-3.8 environment: | ### Source the WRF-4.1.1 environment: |
| export WRFDIR=/apps/chpc/earth/WRF-3.8-impi_hwl | export WRFDIR=/apps/chpc/earth/WRF-4.1.1-pnc-impi |
| . $WRFDIR/setWRF | . $WRFDIR/setWRF |
| # Set the stack size unlimited for the intel compiler | # Set the stack size unlimited for the intel compiler |
| ##### Running commands | ##### Running commands |
| # Set PBS_JOBDIR to where YOUR simulation will be run | # Set PBS_JOBDIR to where YOUR simulation will be run |
| export PBS_JOBDIR=/home/username/scratch/WRFV3_test/run | export PBS_JOBDIR=/mnt/lustre/users/jblogs/WRFV3_test/run |
| # First though, change to YOUR WPS directory | # First though, change to YOUR WPS directory |
| export WPS_DIR=/export/home/username/scratch/WPS_test | export WPS_DIR=/mnt/lustre/users/jblogs/WPS_test |
| cd $WPS_DIR | cd $WPS_DIR |
| # Clean the directory of old files | # Clean the directory of old files |
| nnodes=`cat hosts | wc -l` | nnodes=`cat hosts | wc -l` |
| # Run real.exe with one process per node | # Run real.exe with one process per node |
| exe=$WRFDIR/WRFV3/run/real.exe | exe=$WRFDIR/WRF/run/real.exe |
| mpirun -np $nnodes -machinefile hosts $exe &> real.out | mpirun -np $nnodes -machinefile hosts $exe &> real.out |
| # Run wrf.exe with the full number of processes | # Run wrf.exe with the full number of processes |
| exe=$WRFDIR/WRFV3/run/wrf.exe | exe=$WRFDIR/WRF/run/wrf.exe |
| mpirun -np $nproc -machinefile $PBS_NODEFILE $exe &> wrf.out | mpirun -np $nproc $exe &> wrf.out |
| </file> | </file> |
| |
| #PBS -l select=10:ncpus=24:mpiprocs=24 -q normal -P TEST1234 | #PBS -l select=10:ncpus=24:mpiprocs=24 -q normal -P TEST1234 |
| #PBS -l walltime=3:00:00 | #PBS -l walltime=3:00:00 |
| #PBS -o /home/username/scratch/WRFV3_test/run/stdout | #PBS -o /mnt/lustre/users/jblogs/WRFV3_test/run/stdout |
| #PBS -e /home/username/scratch/WRFV3_test/run/stderr | #PBS -e /mnt/lustre/users/jblogs/WRFV3_test/run/stderr |
| #PBS -m abe | #PBS -m abe |
| #PBS -M username@unseenuniversity.ac.za | #PBS -M jblogs@unseenuniversity.ac.za |
| ### Source the WRF-3.8 environment with parallel NetCDF: | ### Source the WRF-4.1.1 environment with parallel NetCDF: |
| export WRFDIR=/apps/chpc/earth/WRF-3.8-pnc-impi | export WRFDIR=/apps/chpc/earth/WRF-4.1.1-pnc-impi |
| . $WRFDIR/setWRF | . $WRFDIR/setWRF |
| # Set the stack size unlimited for the intel compiler | # Set the stack size unlimited for the intel compiler |
| ##### Running commands | ##### Running commands |
| # Set PBS_JOBDIR to where YOUR simulation will be run | # Set PBS_JOBDIR to where YOUR simulation will be run |
| export PBS_JOBDIR=/home/username/scratch/WRFV3_test/run | export PBS_JOBDIR=/mnt/lustre/users/jblogs/WRFV3_test/run |
| cd $PBS_JOBDIR | cd $PBS_JOBDIR |
| exe=$WRFDIR/WRFV3/run/wrf.exe | exe=$WRFDIR/WRF/run/wrf.exe |
| # Clear and re-set the lustre striping for the job directory. For the lustre configuration | # Clear and re-set the lustre striping for the job directory. For the lustre configuration |
| # used by CHPC, a stripe size of 12 should work well. | # used by CHPC, a stripe size of 12 should work well. |
| ## For this example, assume that nproc_x=8, nproc_y=28, nio_tasks_per_group=4 and nio_groups=4, for a total | ## For this example, assume that nproc_x=8, nproc_y=28, nio_tasks_per_group=4 and nio_groups=4, for a total |
| ## of 16 I/O processes and 228 solver processes, therefore 240 MPI processes in total. | ## of 16 I/O processes and 228 solver processes, therefore 240 MPI processes in total. |
| mpirun -np 240 -machinefile $PBS_NODEFILE $exe &> wrf.out | mpirun -np 240 $exe &> wrf.out |
| </file> | </file> |
| |
| #PBS -l walltime=06:00:00 | #PBS -l walltime=06:00:00 |
| #PBS -N WRF4-10X6X4 | #PBS -N WRF4-10X6X4 |
| #PBS -o /home/userid/lustre/WRFrun/wrf4.out | #PBS -o /mnt/lustre/users/jblogs/WRFrun/wrf4.out |
| #PBS -e /home/userid/lustre/WRFrun/wrf4.err | #PBS -e /mnt/lustre/users/jblogs/WRFrun/wrf4.err |
| ### These two stack size settings are essential for use with Intel-compiled code | ### These two stack size settings are essential for use with Intel-compiled code |
| ulimit -s unlimited | ulimit -s unlimited |
| export OMP_STACKSIZE=2G | export OMP_STACKSIZE=2G |
| ### Source the appropriate environment script | ### Source the appropriate environment script |
| . /apps/chpc/earth/WRF-4.0-pnc-impi/setWRF | . /apps/chpc/earth/WRF-4.1.1-pnc-impi/setWRF |
| export PBSJOBDIR=/home/userid/lustre/WRFrun/wrf4.out | export PBSJOBDIR=/mnt/lustre/users/jblogs/WRFrun/wrf4.out |
| cd $PBSJOBDIR | cd $PBSJOBDIR |
| ### Get total number of MPI ranks | ### Get total number of MPI ranks |
| ### Issue the command line, passing the number of OpenMP threads. | ### Issue the command line, passing the number of OpenMP threads. |
| ### These affinity settings work OK, but may be unnecessary. YMMV. | ### These affinity settings work OK, but may be unnecessary. YMMV. |
| time mpirun -machinefile $PBS_NODEFILE -np $nproc -genv OMP_NUM_THREADS 4 -genv KMP_AFFINITY "verbose,granularity=core,compact,0,1" -bind-to socket -map-by socket wrf.exe > runWRF.out | time mpirun -np $nproc -genv OMP_NUM_THREADS 4 -genv KMP_AFFINITY "verbose,granularity=core,compact,0,1" -bind-to socket -map-by socket wrf.exe > runWRF.out |
| </file> | </file> |
| |