From d043c7227736109792ef3a4b378fe758dd196849 Mon Sep 17 00:00:00 2001 From: Matt Guthaus Date: Thu, 21 Feb 2019 11:16:21 -0800 Subject: [PATCH] Fix temp name error in openram.py --- compiler/base/hierarchy_design.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/base/hierarchy_design.py b/compiler/base/hierarchy_design.py index 7f30fb1c..75f50f9f 100644 --- a/compiler/base/hierarchy_design.py +++ b/compiler/base/hierarchy_design.py @@ -73,8 +73,8 @@ class hierarchy_design(hierarchy_spice.spice, hierarchy_layout.layout): global total_drc_errors global total_lvs_errors - tempspice = OPTS.openram_temp + "/temp.sp" - tempgds = OPTS.openram_temp + "/temp.gds" + tempspice = "{0}/{1}.sp".format(OPTS.openram_temp,self.name) + tempgds = "{0}/{1}.gds".format(OPTS.openram_temp,self.name) self.sp_write(tempspice) self.gds_write(tempgds)