PBS arrays
Explore how to submit multiple HPC jobs using PBS arrays, including methods to manage job sets and control individual tasks. Understand job naming conventions, resource allocation, and how to optimize MATLAB job submissions on HPC clusters.
We'll cover the following...
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 ...