apPDKSetupGetFillParams
apPDKSetupGetFillParams(t_pdkName) =>l_paramList/ nil
Description
(Virtuoso Layout Suite EXL) Retrieves a list of instance fill parameters that are registered to the specified PDK for the automated placement and routing flow.
Arguments
|
Name of the PDK for which fill parameters must be retrieved. |
|
Value Returned
|
There are no registered fill parameters for the specified PDK. |
Examples
Applies custom PDK settings and retrieves a list of fill parameters for the specified PDK.
apCustomPDKSettings("CustomPDK" ?FillParams list(list("cell_name1") list(list("param1” "OFF")))))
=> t
apPDKSetupGetFillParams("CustomPDK")
=> (("cell_name1"
(("param1") (“OFF”))
)
)
Return to top