Skip to content

Commit 94b8fd8

Browse files
committed
dcalc threshold adjustment
Signed-off-by: James Cherry <cherry@parallaxsw.com>
1 parent 0f8d7cf commit 94b8fd8

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

dcalc/LumpedCapDelayCalc.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,9 +170,10 @@ LumpedCapDelayCalc::makeResult(const LibertyLibrary *drvr_library,
170170

171171
for (const auto [load_pin, load_idx] : load_pin_index_map) {
172172
ArcDelay wire_delay = 0.0;
173+
Slew load_slew = drvr_slew;
173174
thresholdAdjust(load_pin, drvr_library, rf, wire_delay, drvr_slew);
174175
dcalc_result.setWireDelay(load_idx, wire_delay);
175-
dcalc_result.setLoadSlew(load_idx, drvr_slew);
176+
dcalc_result.setLoadSlew(load_idx, load_slew);
176177
}
177178
return dcalc_result;
178179
}

0 commit comments

Comments
 (0)