From 3364f47e565b25a33ec360377f9bbb82fbf01da4 Mon Sep 17 00:00:00 2001 From: Matt Guthaus Date: Wed, 20 Nov 2019 09:50:27 -0800 Subject: [PATCH] Fix wrong supply voltage in config files. --- compiler/tests/configs/config.py | 2 ++ compiler/tests/configs/config_back_end.py | 1 + compiler/tests/configs/config_front_end.py | 1 + 3 files changed, 4 insertions(+) diff --git a/compiler/tests/configs/config.py b/compiler/tests/configs/config.py index c420da33..4711214b 100644 --- a/compiler/tests/configs/config.py +++ b/compiler/tests/configs/config.py @@ -10,6 +10,7 @@ word_size = 1 num_words = 16 tech_name = OPTS.tech_name + process_corners = ["TT"] supply_voltages = [5.0] temperatures = [25] @@ -18,6 +19,7 @@ route_supplies = True check_lvsdrc = True if tech_name == "freepdk45": + supply_voltages = [1.0] drc_name = "calibre" lvs_name = "calibre" pex_name = "calibre" diff --git a/compiler/tests/configs/config_back_end.py b/compiler/tests/configs/config_back_end.py index cc0a3e1e..57288031 100644 --- a/compiler/tests/configs/config_back_end.py +++ b/compiler/tests/configs/config_back_end.py @@ -20,6 +20,7 @@ inline_lvsdrc = True analytical_delay = False if tech_name == "freepdk45": + supply_voltages = [1.0] drc_name = "calibre" lvs_name = "calibre" pex_name = "calibre" diff --git a/compiler/tests/configs/config_front_end.py b/compiler/tests/configs/config_front_end.py index 2b0f7e08..4a4faf37 100644 --- a/compiler/tests/configs/config_front_end.py +++ b/compiler/tests/configs/config_front_end.py @@ -15,6 +15,7 @@ supply_voltages = [5.0] temperatures = [25] if tech_name == "freepdk45": + supply_voltages = [1.0] drc_name = "calibre" lvs_name = "calibre" pex_name = "calibre"