From f3286fb0c260af48138b305d44fe1528c59c5fc4 Mon Sep 17 00:00:00 2001 From: Matthew Guthaus Date: Fri, 6 Dec 2019 02:37:12 +0000 Subject: [PATCH] Don't add boundary to ptx --- compiler/pgates/ptx.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/compiler/pgates/ptx.py b/compiler/pgates/ptx.py index 3a7311ae..a1606ac3 100644 --- a/compiler/pgates/ptx.py +++ b/compiler/pgates/ptx.py @@ -59,9 +59,9 @@ class ptx(design.design): # some transistor sizes in other netlist depend on pbitcell self.create_layout() - ll = self.find_lowest_coords() - ur = self.find_highest_coords() - self.add_boundary(ll, ur) + #ll = self.find_lowest_coords() + #ur = self.find_highest_coords() + #self.add_boundary(ll, ur) # (0,0) will be the corner ofthe active area (not the larger well) self.translate_all(self.active_offset)