69 | | # |
70 | | # Variable options: |
71 | | # |
72 | | # * LRMS_TYPE(mandatory): DRM system for execution [pbs | sge | fork | loadleveler | mnslurm ] |
73 | | # * PROJECT(optional for SGE, PBS and LoadLeveler): specifies the user's project on the computing resource |
74 | | # * GW_RUNDIR(optional): directory on the computing resource in which simulation jobs are deployed. By default, it is user's home. |
75 | | # Be carefully with this variable, we recommend you change this directory in production because the home directory usually has |
76 | | # a low quote (have to be an absolute path) |
77 | | # * GW_LOCALDIR(optional): defines the working directory on the computing resource (have to be an absolute path) |
78 | | # * NODECOUNT(optional): total number of slots on the DRM system (cores) |
79 | | # * QUEUE_NAME(optional): the name of the queue to configure |
| 67 | # Variable options: |
| 68 | # LRMS_TYPE (mandatory) : Type of LRMS system [pbs | sge | fork | slurm ] |
| 69 | # NODECOUNT (mandatory) : Maximum number of job slots for a resource |
| 70 | # QUEUE_NAME (mandatory) : Queue name to configure. It is mandatory except for "LRMS_TYPE=fork" |
| 71 | # SSH_KEY_FILE (optional) : Defines the key file for "ssh" connection. |
| 72 | # By DEFAULT is ~/.ssh/id_rsa |
| 73 | # PROJECT (optional) : Specifies the project which the jobs are assigned. |
| 74 | # It is only optional for SGE and PBS |
| 75 | # PARALLEL_TAG (optional) : Defines the parallel environments available for SGE |
| 76 | # TEMP_DIR (optional) : Temporary directory used by DRM4G on the resource to temporarily store data |
| 77 | # By DEFAULT is $HOME. TEMP_DIR path must be absolute |
| 78 | # RUN_DIR (optional) : Temporary directory used to run WRF Model on the resource |
| 79 | # By DEFAULT is $HOME. RUN_DIR path must be absolute |
| 84 | # |
| 85 | # resource = <scheme>://<username>@<host>?<query> |
| 86 | # FORK_resource = local://localhost?LRMS_TYPE=fork;NODECOUNT=1 |
| 87 | # PBS_cluster = local://localhost?LRMS_TYPE=pbs;QUEUE_NAME=estadistica;NODECOUNT=8 |
| 88 | # SGE_cluster = local://localhost?LRMS_TYPE=sge;QUEUE_NAME=meteo;PROJECT=l.project;NODECOUNT=16;PARALLEL_TAG=mpi |
| 89 | # remote_PBS_cluster = ssh://user@hostname_submitting_machine?LRMS_TYPE=pbs;SSH_KEY_FILE=~/.ssh/id_rsa;QUEUE_NAME=short;NODECOUNT=16 |
| 90 | # remote_SGE_cluster = ssh://user@hostname_submitting_machine?LRMS_TYPE=sge;QUEUE_NAME=meteo;SSH_KEY_FILE=~/.ssh/id_dsa;NODECOUNT=64 |
| 91 | # remote_FORK_cluster = ssh://user@hostname_submitting_machine?LRMS_TYPE=fork;NODECOUNT=1 |
85 | | mycomputer local://localhost?LRMS_TYPE=fork;NODECOUNT=1 |
86 | | #PBS_cluster local://localhost?LRMS_TYPE=pbs;QUEUE_NAME=estadistica |
87 | | #SGE_cluster local://localhost?LRMS_TYPE=sge;PROJECT=l.project |
88 | | #RES_cluster local://localhost?LRMS_TYPE=mnslurm |
89 | | #remote_PBS_cluster ssh://user@hostname_submitting_machine?LRMS_TYPE=pbs;QUEUE_NAME=short |
90 | | #remote_SGE_cluster ssh://user@hostname_submitting_machine?LRMS_TYPE=sge;PROJECT=l.project |
91 | | #remote_RES_cluster ssh://user@hostname_submitting_machine?LRMS_TYPE=mnslurm |
92 | | #remote_FORK_cluster ssh://user@hostname_submitting_machine?LRMS_TYPE=fork |
93 | | #remote_LoadLeveler_cluster ssh://user@hostname_submitting_machine?LRMS_TYPE=loadleveler;NODECOUNT=100 |
| 93 | # By default, WRF4G is going to use the local machine as FORK system |
| 94 | mycomputer = local://localhost?LRMS_TYPE=fork;NODECOUNT=1 |