PBS arrays
We'll cover the following...
Using PBS Arrays allows users to submit a large number of jobs based on the same PBS command file. Additionally, array job naming convention allows usrs to reference the entire set of jobs as a unit, or to reference one particular job from the set.
Job arrays are submitted through the use of the -t
option to qsub
, or by using #PBS -t
in your job file.
How to submit array of job via PBS
There ...