From 26068fd2e119706daacc56b7fe79cb3965cdbce7 Mon Sep 17 00:00:00 2001 From: SWalker Date: Mon, 30 Oct 2023 20:31:29 -0700 Subject: [PATCH] more ptx fixes --- compiler/modules/ptx.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/modules/ptx.py b/compiler/modules/ptx.py index bab90514..df8f6d45 100644 --- a/compiler/modules/ptx.py +++ b/compiler/modules/ptx.py @@ -223,7 +223,7 @@ class ptx(design): + 2 * self.active_contact_to_gate + self.poly_width + (self.mults - 1) * self.poly_pitch # Active height is either the transistor width or the wide enough to enclose the active contact - self.active_height = max(self.tx_width, drc["minwidth_contact"] + 2 * self.active_enclose_contact) + self.active_height = self.tx_width # Poly height must include poly extension over active self.poly_height = self.active_height + 2 * self.poly_extend_active