Clean up output file names for lvs. Update lvs script in magic.

This commit is contained in:
Matt Guthaus
2019-02-22 14:38:00 -08:00
parent f30743aa7e
commit 9459839c06
5 changed files with 40 additions and 16 deletions
+2 -2
View File
@@ -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 = OPTS.openram_temp + "/{}.sp".format(self.name)
tempgds = OPTS.openram_temp + "/{}.gds".format(self.name)
self.sp_write(tempspice)
self.gds_write(tempgds)