From b1079346726ae5f4028bba0f0d5272488d972f82 Mon Sep 17 00:00:00 2001 From: Jesse Cirimelli-Low Date: Thu, 6 Feb 2020 12:15:52 +0000 Subject: [PATCH] fix styling --- compiler/example_configs/example_config_scn4m_subm.py | 1 + compiler/sram/sram_config.py | 1 + 2 files changed, 2 insertions(+) diff --git a/compiler/example_configs/example_config_scn4m_subm.py b/compiler/example_configs/example_config_scn4m_subm.py index 71ef328b..a55122a2 100644 --- a/compiler/example_configs/example_config_scn4m_subm.py +++ b/compiler/example_configs/example_config_scn4m_subm.py @@ -9,6 +9,7 @@ temperatures = [25] route_supplies = True check_lvsdrc = True +netlist_only = True output_path = "temp" output_name = "sram_{0}_{1}_{2}".format(word_size, diff --git a/compiler/sram/sram_config.py b/compiler/sram/sram_config.py index c086a57a..20c8299e 100644 --- a/compiler/sram/sram_config.py +++ b/compiler/sram/sram_config.py @@ -38,6 +38,7 @@ class sram_config: # Copy all the variables to the local module for member in members: setattr(module,member,getattr(self,member)) + def compute_simple_sram_sizes(self): self.row_addr_size = int(log(OPTS.num_words, 2)) self.col_addr_size = int(log(OPTS.word_size, 2))