From 9d9f0fddf0bd279cf49a35005f8092c9115e240e Mon Sep 17 00:00:00 2001 From: mrg Date: Tue, 15 Dec 2020 13:00:20 -0800 Subject: [PATCH 1/2] Only do total DRC count. --- compiler/verify/magic.py | 1 - 1 file changed, 1 deletion(-) diff --git a/compiler/verify/magic.py b/compiler/verify/magic.py index aaae6bc5..9d2ace8c 100644 --- a/compiler/verify/magic.py +++ b/compiler/verify/magic.py @@ -173,7 +173,6 @@ def write_drc_script(cell_name, gds_name, extract, final_verification, output_pa f.write("drc catchup\n") f.write('puts "Finished drc catchup"\n') f.write("drc count total\n") - f.write("drc count\n") f.write("quit -noprompt\n") f.write("EOF\n") f.write("magic_retcode=$?\n") From fd118c62e5c17f59ef00abd9b831d2f8800c3c85 Mon Sep 17 00:00:00 2001 From: mrg Date: Tue, 15 Dec 2020 13:27:36 -0800 Subject: [PATCH 2/2] Default zom is None not negative. --- compiler/base/hierarchy_layout.py | 2 +- compiler/tests/skip_tests_sky130.txt | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/compiler/base/hierarchy_layout.py b/compiler/base/hierarchy_layout.py index 98b1fbac..532b0f7d 100644 --- a/compiler/base/hierarchy_layout.py +++ b/compiler/base/hierarchy_layout.py @@ -498,7 +498,7 @@ class layout(): offset=offset + vector(0.5 * width, 0.5 * height)) - def add_label(self, text, layer, offset=[0, 0], zoom=-1): + def add_label(self, text, layer, offset=[0, 0], zoom=None): """Adds a text label on the given layer,offset, and zoom level""" debug.info(5, "add label " + str(text) + " " + layer + " " + str(offset)) lpp = techlayer[layer] diff --git a/compiler/tests/skip_tests_sky130.txt b/compiler/tests/skip_tests_sky130.txt index 827c2cc7..b0cba8aa 100644 --- a/compiler/tests/skip_tests_sky130.txt +++ b/compiler/tests/skip_tests_sky130.txt @@ -3,7 +3,6 @@ 04_precharge_pbitcell_test.py 04_replica_pbitcell_test.py 04_column_mux_pbitcell_test.py -05_bitcell_1rw_1r_array_test.py 05_bitcell_array_test.py 05_dummy_array_test.py 05_pbitcell_array_test.py