Questions about LAYOUT_X, LAYOUT_Y, PE_MEMBER01, etc. #824
-
Hi, I'm trying to use more computer resources to complete my jobs quicker. I've already set up my experiment and I'm wondering what exactly I need to change to use more computer horsepower.
Thank you for your help. Phillip S. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
@psooner If you want to change the MPI layout, it's recommended you change this via modifying your config file and re-generating the experiment rather than attempting to modify your experiment variables manually. This is because not only do other variables get calculated based on these values (such as PE_MEMBER01 as you have identified), but other values (such as in the weather model namelist) are filled in based on this info. Can you let us know what version of the App you are using? There have been a few changes to config format over time so the specific instructions will depend on this. |
Beta Was this translation helpful? Give feedback.
My apologies @psooner for the delayed reply. Below are the responses to the numbered questions from your initial message.
This error indicates that the tiling is not matching up with the number of cores requested (i.e. the slurm job has more or less CPUs than what the domain is configured for). It’s possible that by setting
NNODES_RUN_FCST
, more PEs than necessary were created. It is also possible that the number of processors in your mpirun command doesn't match your grid settings (discussed in points 4 and 5).The
LAYOUT_X
andLAYOUT_Y
variables are the number of MPI tasks to use in the horizontal x and y directions of the regional grid when running the forecast model. The larger yo…