You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the wire delay is taken to be R*C where R and C refer to the wire itself, there's no taking account of the capacitance downstream of the wire segment. This has an effect when different buffering options are evaluated later on within the same file.
Expected Behavior
The delay is modeled with R*C/2 + R*C_downstream or similar
Environment
N/A
To Reproduce
N/A
Relevant log output
No response
Screenshots
No response
Additional Context
No response
The text was updated successfully, but these errors were encountered:
I think you mean function RepairSetup::addWireAndBuffer(). Yes, if we had a distributed RC or a pie RC, we can compute Elmore delay using downstream cap. The code seems to be focusing on a pre-route case without extracted RC. If we have the full distributed RC available, we can cut the RC network at the desired buffer location to do more accurate estimation and para update. This will require significant code change though.
I think you mean function RepairSetup::addWireAndBuffer().
Yes, that's what I meant, thanks.
Yes, if we had a distributed RC or a pie RC, we can compute Elmore delay using downstream cap. The code seems to be focusing on a pre-route case without extracted RC.
At that place within the rebuffering code, we can use the same RC estimates which estimate_parasitics -placement is using. E.g. to implement the R*C/2 + R*C_downstream model:
Describe the bug
Take a look at
Rebuffer.cc
atrebufferBottomUp
:the wire delay is taken to be
R*C
whereR
andC
refer to the wire itself, there's no taking account of the capacitance downstream of the wire segment. This has an effect when different buffering options are evaluated later on within the same file.Expected Behavior
The delay is modeled with
R*C/2 + R*C_downstream
or similarEnvironment
To Reproduce
N/A
Relevant log output
No response
Screenshots
No response
Additional Context
No response
The text was updated successfully, but these errors were encountered: