- 
                Notifications
    
You must be signed in to change notification settings  - Fork 727
 
gpl: include endcaps as fixed objects in placement #8549
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
base: master
Are you sure you want to change the base?
gpl: include endcaps as fixed objects in placement #8549
Conversation
Signed-off-by: Matt Liberty <[email protected]>
| 
           clang-tidy review says "All clean, LGTM! 👍"  | 
    
Signed-off-by: Matt Liberty <[email protected]>
| 
           clang-tidy review says "All clean, LGTM! 👍"  | 
    
| for (dbInst* db_inst : db_insts) { | ||
| auto type = db_inst->getMaster()->getType(); | ||
| if (!type.isCore() && !type.isBlock()) { | ||
| if (!type.isCore() && !type.isBlock() && !type.isEndCap()) { | 
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 includes PAD corner cells, will that cause an issue?
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.
We exclude anything outside the core area.
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.
The reason I ask is that the corner outlines can extend into the core in some processes.
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.
Do they then block those sites?
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.
no they don't, but they appear to because their bounding box can be fairly large.
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.
They have a bounding box that exceeds their true size? Do you have an image you could share?
No description provided.