Disable magic filter in sky130

This commit is contained in:
mrg 2020-06-22 16:58:01 -07:00
parent 92fc30005c
commit 7ea3366ef1
1 changed files with 1 additions and 1 deletions

View File

@ -189,7 +189,7 @@ def run_drc(cell_name, gds_name, extract=False, final_verification=False):
num_drc_runs += 1
# Filter the layouts through magic as a GDS filter for nsdm/psdm/nwell merging
if OPTS.tech_name == "sky130":
if OPTS.tech_name == "sky130" and False:
shutil.copy(gds_name, OPTS.openram_temp + "temp.gds")
from magic import filter_gds
filter_gds(cell_name, OPTS.openram_temp + "temp.gds", OPTS.openram_temp + cell_name + ".gds")