PBS qsub Options
qsub options which can be specified at the command line or in a file:
| Option | Description |
|---|---|
| -I | interactive job, not guaranteed to work |
| -q | specifies queue for job to run under |
| -l walltime=HH:SS | Specifies maximum wallclock time |
| -out out_file | Specifies file name into which to direct stdout |
| -e err_file | Specifies file name into which to direct stderr |
| -j out_err_file | Specifies file name into which to direct both stdout and stderr |
| -N job_name | Specifies job name |
| -S login_shell | Specifies login shell for batch job |
| -A project_name | Assigns job to specified project |
| -l mppwidth=N | Specifies the total number of processors requested |
| -l mppnppn=N | Specifies the number of processors per node |