From e59333a23296697c3a70bb6ce360833d4bb86a1d Mon Sep 17 00:00:00 2001 From: mrg Date: Wed, 23 Dec 2020 07:25:07 -0800 Subject: [PATCH] Change options to use route perimeter pins and supply as tree by default. --- compiler/options.py | 4 ++-- compiler/tests/configs/config.py | 3 --- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/compiler/options.py b/compiler/options.py index e4a61052..2a5c6a6f 100644 --- a/compiler/options.py +++ b/compiler/options.py @@ -92,7 +92,7 @@ class options(optparse.Values): # When enabled, layout is not generated (and no DRC or LVS are performed) netlist_only = False # Whether we should do the final power routing - route_supplies = False + route_supplies = "tree" # This determines whether LVS and DRC is checked at all. check_lvsdrc = False # This determines whether LVS and DRC is checked for every submodule. @@ -141,7 +141,7 @@ class options(optparse.Values): # run (doesn't purge on errors, anyhow) # Route the input/output pins to the perimeter - perimeter_pins = False + perimeter_pins = True keep_temp = False diff --git a/compiler/tests/configs/config.py b/compiler/tests/configs/config.py index d6080041..9b88c986 100644 --- a/compiler/tests/configs/config.py +++ b/compiler/tests/configs/config.py @@ -11,9 +11,6 @@ num_words = 16 tech_name = OPTS.tech_name -perimeter_pins = True - nominal_corner_only = True -route_supplies = "tree" check_lvsdrc = True