From 7ea3366ef1b554b326202460a05001882b4d1389 Mon Sep 17 00:00:00 2001 From: mrg Date: Mon, 22 Jun 2020 16:58:01 -0700 Subject: [PATCH] Disable magic filter in sky130 --- compiler/verify/calibre.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/verify/calibre.py b/compiler/verify/calibre.py index d4f31960..0a975599 100644 --- a/compiler/verify/calibre.py +++ b/compiler/verify/calibre.py @@ -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")