Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Users should edit their shell scripts to add special directives to the queue system, beginning with "#PBS", that request resources, declare a required walltime, and direct standard output and error. Users can then "submit"

A simple example of such a script can be found in the attached apoa.sh, which runs the ApoA1 benchmark.

A job name is assigned with a "#PBS -N" statement, the destination queue is specified using a "#PBS -q" statement:

Code Block
#PBS -N solution_equilibration_273K
Code Block

#PBS -q short

Users can request resources using a "#PBS -l" statement. Resources include the walltime (in mm:ss or hh:mm:ss format) and the number of nodes and number of processors per node. In the example below, several alternative examples of node requests are given to illustrate the possible syntax; only one would be included

...