forked from limbo018/OpenMPL
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request limbo018#8 from limbo018/cell_library
update readme and script: add big benchmark ISPD19
- Loading branch information
Showing
2 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
#! | ||
|
||
# ======================================================================== | ||
# SimpleMPL Usage | ||
# -help (false) toggle printing help message | ||
# -in input gds file name | ||
# -out () output gds file name | ||
# -coloring_distance (0) a floating point number indicating number of coloring distance in nanometer | ||
# -color_num an integer indicating number of masks (colors) < 3|4 > | ||
# -simplify_level (3) an integer indicating graph simplification level < 0|1|2|3 > | ||
# -thread_num (1) an integer indicating maximum thread number | ||
# -path_layer an integer indicating layer for conflict edges | ||
# -precolor_layer an integer indicating layer for pre-colored patterns | ||
# -uncolor_layer an integer indicating layer for coloring | ||
# -algo (BACKTRACK) algorithm type < ILP|BACKTRACK|LP|SDP|DL > | ||
# -shape (RECTANGLE) shape mode < RECTANGLE|POLYGON > | ||
# -verbose (false) toggle controlling screen messages | ||
# -use_stitch use stitch to avoid conflict | ||
# -gen_stitch generate stitch candidate | ||
# -dbg_comp_id debug component id | ||
# -weight_stitch a floating point number indicating the weight of stitch | ||
# ======================================================================== | ||
|
||
# if the benchmark contains polygon shapes, -shape must be set to POLYGON; | ||
# otherwise, set -shape to RECTANGLE is more memory efficient | ||
# -remove_stitch_redundancy \ | ||
mkdir -p benchout | ||
./OpenMPL -shape POLYGON -in big/ispd19_test4_flatten.gds -out benchout/ispd19_test4_flatten.gds -remove_stitch_redundancy -coloring_distance 500 -uncolor_layer 101 -color_num 3 -algo DL_OPT -thread_num 8 -use_stitch -gen_stitch -record 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters