-
Notifications
You must be signed in to change notification settings - Fork 564
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Jumper insertion: modifications in DRT and ODB #6138
base: master
Are you sure you want to change the base?
Jumper insertion: modifications in DRT and ODB #6138
Conversation
Signed-off-by: luis201420 <[email protected]>
Signed-off-by: luis201420 <[email protected]>
Signed-off-by: luis201420 <[email protected]>
Signed-off-by: luis201420 <[email protected]>
Signed-off-by: luis201420 <[email protected]>
Signed-off-by: luis201420 <[email protected]>
Signed-off-by: luis201420 <[email protected]>
Signed-off-by: luis201420 <[email protected]>
Signed-off-by: luis201420 <[email protected]>
Signed-off-by: luis201420 <[email protected]>
Signed-off-by: luis201420 <[email protected]>
Signed-off-by: luis201420 <[email protected]>
Signed-off-by: luis201420 <[email protected]>
Signed-off-by: luis201420 <[email protected]>
Signed-off-by: luis201420 <[email protected]>
Signed-off-by: luis201420 <[email protected]>
Signed-off-by: luis201420 <[email protected]>
Signed-off-by: luis201420 <[email protected]>
Signed-off-by: luis201420 <[email protected]>
Signed-off-by: luis201420 <[email protected]>
Signed-off-by: luis201420 <[email protected]>
Signed-off-by: luis201420 <[email protected]>
Signed-off-by: luis201420 <[email protected]>
Signed-off-by: luis201420 <[email protected]>
Signed-off-by: luis201420 <[email protected]>
Signed-off-by: luis201420 <[email protected]>
Signed-off-by: luis201420 <[email protected]>
Signed-off-by: luis201420 <[email protected]>
clang-tidy review says "All clean, LGTM! 👍" |
1 similar comment
clang-tidy review says "All clean, LGTM! 👍" |
Signed-off-by: luis201420 <[email protected]>
clang-tidy review says "All clean, LGTM! 👍" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@luis201420 Please look at the regression errors too.
src/drt/src/db/obj/frNet.h
Outdated
@@ -272,6 +274,7 @@ class frNet : public frBlockObject | |||
bool hasInitialRouting_{false}; | |||
bool isFixed_{false}; | |||
|
|||
bool hasJumpers_{false}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add a comment explaining what is the jumper in this context.
src/grt/src/RepairAntennas.h
Outdated
@@ -214,6 +214,7 @@ class RepairAntennas | |||
void destroyNetWires(const std::vector<odb::dbNet*>& nets_to_repair); | |||
odb::dbMTerm* findDiodeMTerm(); | |||
double diffArea(odb::dbMTerm* mterm); | |||
bool runJumperInsertion() { return run_jumper_insertion_; } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This function name can mislead to what it actually does. Maybe instead of run... you can use isJumperInsertion
.
src/grt/src/RepairAntennas.h
Outdated
@@ -295,6 +296,7 @@ class RepairAntennas | |||
AntennaViolations antenna_violations_; | |||
int unique_diode_index_; | |||
int illegal_diode_placement_count_; | |||
bool run_jumper_insertion_; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same for the class member name.
Signed-off-by: luis201420 <[email protected]>
Signed-off-by: luis201420 <[email protected]>
clang-tidy review says "All clean, LGTM! 👍" |
Signed-off-by: luis201420 <[email protected]>
Signed-off-by: luis201420 <[email protected]>
clang-tidy review says "All clean, LGTM! 👍" |
Signed-off-by: luis201420 <[email protected]>
Signed-off-by: luis201420 <[email protected]>
clang-tidy review says "All clean, LGTM! 👍" |
Signed-off-by: luis201420 <[email protected]>
Signed-off-by: luis201420 <[email protected]>
Signed-off-by: luis201420 <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@luis201420 Please start a new ecure-ci run to ensure it will not break any design.
Signed-off-by: luis201420 <[email protected]>
clang-tidy review says "All clean, LGTM! 👍" |
Ok, I ran a new secure-ci to verify the designs. |
clang-tidy review says "All clean, LGTM! 👍" |
Fixes The-OpenROAD-Project/OpenROAD-flow-scripts#2477
It contains the modifications required to use jumper insertion in the flow.
ODB:
DRT:
GRT:
Results:
I ran a test-branch with the modifications, the reduction of diodes for sky130hd are:
GRT diodes: from 190 to 138
DRT diodes: from 8 to 13
Total diodes: from 198 to 151 (23.74%)
GRT diodes: from 429 to 108
DRT diodes: from 38 to 108
Total diodes: from 467 to 216 (53.75%)
GRT diodes: from 234 to 61
DRT diodes: from 49 to 64
Total diodes: from 283 to 125 (55.83%)
GRT diodes: from 113 to 51
DRT diodes: from 35 to 47
Total diodes: from 148 to 98 (33.8%)
GRT diodes: from 7205 to 4163
DRT diodes: from 1379 to 1849
Total diodes: from 8584 to 6012 (30%)
This design is ending with 3 antenna violations after DRT.
Future works: