Product Documentation
Virtuoso ADE SKILL Reference
Product Version IC23.1, November 2023

maeSetJobPolicy

maeSetJobPolicy (
g_jobPolicyDPL
[ ?testName t_testName ]
[ ?jobType t_jobType ]
[ ?session t_sessionName ] 
)
=> t / nil

Description

Sets the given job policy to the specified setup for the given test.

Arguments

g_jobPolicyDPL

A distributed property list that can provide values for multiple properties of a job policy.

?testName t_testName

Name of the test for which this policy needs to be set.

The default value is "Global".

?jobType t_jobType

Type of job for which the policy is to be set.

  • "simulation": (Default) Sets the job policy for the simulation jobs
  • "netlisting": Sets the job policy for the netlisting jobs

?session t_sessionName

Name of the session.

If not specified, the current session is used.

Value Returned

t

The given job policy is set for the specified setup for the given test.

nil

The given job policy is not set for the specified setup.

Examples

Updates the default global job policy in the current maestro session to change the value of the pointlifetime property:

jp = maeGetJobPolicy()
jp->pointlifetime=1
maeSetJobPolicy(jp)

Updates the netlisting job policy for test test1:

jp = maeGetJobPolicy(?jobType "netlisting" ?testName "test1")
jp->pointlifetime=1
maeSetJobPolicy(jp)


  





Return to top
 ⠀
X