Replies: 3 comments 2 replies
-
@openroadie @maliberty any ideas here? @cshi15 maybe take a quick look at #3045 to see if there was anything useful there. |
Beta Was this translation helpful? Give feedback.
1 reply
-
I'm guessing you need to call Resizer::resizePreamble() first. |
Beta Was this translation helpful? Give feedback.
1 reply
-
Can you put the code on a branch somewhere? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello, I'm an undergrad who has been trying to add some new functionality and thus trying to learn how the codebase works.
Right now, I am working in Resizer and trying to write a function that will print out the top failing (negative slack) paths. I was studying the code for worst slacks by studying the
worstSlack
functions inSearch.cc
andWorstSlack.cc
, and also thefindResizeSlacks()
function inResizer.cc
. Looking at thefindResizeSlacks1()
function inResizer.cc
, it appears to populate theworst_slack_nets_
field. However, when I try to accessworst_slack_nets_
in my function, it appears to be empty.Is there something that I need to call before this to populate the field? Should I even be trying to access
worst_slack_nets_
at all?Beta Was this translation helpful? Give feedback.
All reactions