Changes between Version 3 and Version 4 of TorqueUsage/Scripts/Submit


Ignore:
Timestamp:
06/07/10 18:03:47 (14 years ago)
Author:
bas
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TorqueUsage/Scripts/Submit

    v3 v4  
    1111
    1212
    13 attropl = pbs.new_attropl(2)
     13attropl = pbs.new_attropl(4)
    1414
    1515# Set the name of the job
     
    2222attropl[1].name  = pbs.ATTR_r
    2323attropl[1].value = 'y'
     24
     25# Walltime
     26#
     27attropl[2].name  = pbs.ATTR_l
     28attropl[2].resource = 'walltime'
     29attropl[2].value = '400'
     30
     31# Nodes
     32#
     33attropl[3].name  = pbs.ATTR_l
     34attropl[3].resource = 'nodes'
     35attropl[3].value = '1:ppn=4'
    2436
    2537