From 35a3f1e4e3f148b30678f9455e64d220c6758462 Mon Sep 17 00:00:00 2001 From: James Cherry Date: Tue, 18 May 2021 18:27:02 -0700 Subject: [PATCH] internal power for port->port default duty cycle --- search/Power.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/search/Power.cc b/search/Power.cc index 61b4b906..11efa166 100644 --- a/search/Power.cc +++ b/search/Power.cc @@ -660,7 +660,7 @@ Power::findInputInternalPower(const Pin *pin, } if (tr_count) energy /= tr_count; // average non-inf energies - float duty = .5; // fallback default + float duty = 1.0; // fallback default FuncExpr *when = pwr->when(); if (when) { LibertyPort *out_corner_port = findExprOutPort(when);