mirror of https://github.com/VLSIDA/OpenRAM.git
Disable magic filter in sky130
This commit is contained in:
parent
92fc30005c
commit
7ea3366ef1
|
|
@ -189,7 +189,7 @@ def run_drc(cell_name, gds_name, extract=False, final_verification=False):
|
||||||
num_drc_runs += 1
|
num_drc_runs += 1
|
||||||
|
|
||||||
# Filter the layouts through magic as a GDS filter for nsdm/psdm/nwell merging
|
# 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")
|
shutil.copy(gds_name, OPTS.openram_temp + "temp.gds")
|
||||||
from magic import filter_gds
|
from magic import filter_gds
|
||||||
filter_gds(cell_name, OPTS.openram_temp + "temp.gds", OPTS.openram_temp + cell_name + ".gds")
|
filter_gds(cell_name, OPTS.openram_temp + "temp.gds", OPTS.openram_temp + cell_name + ".gds")
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue