From da900b89ba6759778942114c81068cb23d0b1c41 Mon Sep 17 00:00:00 2001 From: mrg Date: Wed, 24 Jun 2020 13:48:30 -0700 Subject: [PATCH] Only expand implants in sky130 --- compiler/pgates/pgate.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/compiler/pgates/pgate.py b/compiler/pgates/pgate.py index 02a04b97..809ffbd9 100644 --- a/compiler/pgates/pgate.py +++ b/compiler/pgates/pgate.py @@ -191,8 +191,9 @@ class pgate(design.design): offset=pwell_position, width=self.width + 2 * self.well_extend_active, height=pwell_height) - - self.extend_implants() + + if OPTS.tech_name == "sky130": + self.extend_implants() def add_nwell_contact(self, pmos, pmos_pos): """ Add an nwell contact next to the given pmos device. """