From 1eda3aa131192297e964f663a717c2f15e4b1ee5 Mon Sep 17 00:00:00 2001 From: Matt Guthaus Date: Mon, 5 Mar 2018 14:22:24 -0800 Subject: [PATCH] Add back offset all coordinates in sram.py. --- compiler/sram.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/sram.py b/compiler/sram.py index 41d8fd2d..25ef8332 100644 --- a/compiler/sram.py +++ b/compiler/sram.py @@ -68,7 +68,7 @@ class sram(design.design): # Can remove the following, but it helps for debug! self.add_lvs_correspondence_points() - #self.offset_all_coordinates() + self.offset_all_coordinates() sizes = self.find_highest_coords() self.width = sizes[0] self.height = sizes[1]