Select Git revision
io_import_scene_lwo.py
job-submission-and-execution.md 16.02 KiB
Job Submission and Execution
Job Submission
When allocating computational resources for the job, please specify
- a suitable queue for your job (the default is qprod)
- the number of computational nodes required
- the number of cores per node required
- the maximum wall time allocated to your calculation, note that jobs exceeding the maximum wall time will be killed
- your Project ID
- a Jobscript or interactive switch
!!! note Use the qsub command to submit your job to a queue for allocation of computational resources.
Submit the job using the qsub command:
$ qsub -A Project_ID -q queue -l select=x:ncpus=y,walltime=[[hh:]mm:]ss[.ms] jobscript
The qsub command submits the job to the queue, i.e. the qsub command creates a request to the PBS Job manager for allocation of specified resources. The resources will be allocated when available, subject to the above described policies and constraints. After the resources are allocated, the jobscript or interactive shell is executed on the first of the allocated nodes.
!!! note PBS statement nodes (qsub -l nodes=nodespec) are not supported on the Anselm cluster.