From 7dd9023ce4f482f65000b882d74bbcf6bb2d9d3e Mon Sep 17 00:00:00 2001 From: Hunter Nichols Date: Wed, 21 Jul 2021 15:02:39 -0700 Subject: [PATCH] Uncommented horowitz delay function. --- compiler/base/hierarchy_spice.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/compiler/base/hierarchy_spice.py b/compiler/base/hierarchy_spice.py index 2bea7e46..b594d004 100644 --- a/compiler/base/hierarchy_spice.py +++ b/compiler/base/hierarchy_spice.py @@ -428,10 +428,7 @@ class spice(): c_intrinsic = self.get_intrinsic_capacitance() # Calculate tau with provided output load then calc delay tf = rd*(c_intrinsic+c_load) - # FIXME: horowitz disabled until other parameters have been - # fixed due to divide by zero issues - #this_delay = self.horowitz(inrisetime, tf, 0.5, 0.5, True) - this_delay = 0 + this_delay = self.horowitz(inrisetime, tf, 0.5, 0.5, True) inrisetime = this_delay / (1.0 - 0.5) return delay_data(this_delay, inrisetime)