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))