Skip to content
Snippets Groups Projects
Select Git revision
  • 00f54eb9eff6eca18f5d73cfe194c2664d1b7676
  • master default protected
  • blender-v3.6-release
  • main
  • blender-v4.1-release
  • blender-v4.0-release
  • blender-v3.3-release
  • asset-shelf
  • blender-v3.5-release
  • brush-assets-project
  • blender-v2.93-release
  • blender-v3.4-release
  • xr-dev
  • bholodeck-v3.3
  • blender-v3.2-release
  • temp-xr-tracker
  • blender-v3.1-release
  • screenshots-manual
  • gltf_vtree
  • blender-v2.83-release
  • blender-v3.0-release
  • v3.6.18
  • v3.6.19
  • v3.6.20
  • v3.6.21
  • v3.6.22
  • v3.6.23
  • v4.1.1
  • v4.1.0
  • v3.6.10
  • v3.6.11
  • v3.6.12
  • v3.6.13
  • v3.6.14
  • v3.6.15
  • v3.6.16
  • v3.6.17
  • v3.6.9
  • v3.3.16
  • v3.6.8
  • v3.3.15
41 results

io_import_scene_lwo.py

Blame
  • job-submission-and-execution.md 16.02 KiB

    Job Submission and Execution

    Job Submission

    When allocating computational resources for the job, please specify

    1. a suitable queue for your job (the default is qprod)
    2. the number of computational nodes required
    3. the number of cores per node required
    4. the maximum wall time allocated to your calculation, note that jobs exceeding the maximum wall time will be killed
    5. your Project ID
    6. 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.

    Job Submission Examples