absExportLEF
absExportLEF(
)
=> 0 / 1
Description
Generates LEF files for cells in one or more bins. All exported LEF data is contained in the LEF filename.
Arguments
None
Value Returned
|
0
|
An error is encountered.
|
|
1
|
The function executes successfully.
|
Options
|
ExportLEFFile filename
|
|
|
Specifies the path to and name of the LEF file to export.
|
|
ExportGeometryLefData { true | false }
|
|
|
Controls whether geometry LEF is exported. The default setting is true.
|
|
ExportTechLefData { true | false }
|
|
|
Specifies whether technology LEF is exported. The default setting is true.
|
|
ExportLEFVersion { 5.3 | 5.4 | 5.5 | 5.6 | 5.7}
|
|
|
Specifies the version of LEF to export. The default setting value is 5.4, if the sedsm is in your path.
|
|
ExportLEFBin { All | Core | IO | Corner | Block | Ignore }
|
|
|
Specifies the bins that contains the cells for which you want LEF generated. The default setting is All.
|
Examples
Exports a LEF 5.5 compatible file called file1.lef containing LEF geometry and technology information for all the cells contained in all the bins.
absSetOption( "ExportLEFFile" "file1.lef" )
=> 1
absSetOption( "ExportLEFVersion" "5.5" )
=> 1
absSetOption( "ExportGeometryLefData" "true" )
=> 1
absSetOption( "ExportTechLefData" "true" )
=> 1
absSetOption( "ExportLEFBin" "All" )
=> 1
absExportLEF
=> 1
Related Topics
Exporting LEF in Abstract Generator
Return to top