Specifying default options

A queue template file can specify defaults for the options on the Job Submission page so that when a user selects the template file, these options are automatically completed.

Table 6 Default options

Name

Job Submission Setting

Example

submit

Submit command. The command might include tags.

qsub -n NUM_NODES_TAG -t WALL_CLOCK_LIMIT_TAG --mode script -A PROJECT_TAG

display

Display command The output from this command is shown while waiting for a job to start.

qstat

job regexp

Job regexp

(\d+)

cancel

Cancel command

qdel JOB_ID_TAG

submit scalar

Also submit scalar jobs through the queue

yes

show num_procs

Number of processes: Specify in Run window

yes

show num_nodes

Number of nodes: Specify in Run Window

yes

show procs_per_node

Processes per node: Specify in Run window

yes

procs_per_node

Processes per node: Fixed

16

Example

# submit: qsub -n NUM_NODES_TAG -t WALL_CLOCK_LIMIT_TAG \
  --mode script -A PROJECT_TAG
# display: qstat
# job regexp: (\d+)
# cancel: qdel JOB_ID_TAG