diff --git a/compiler/modules/replica_row.py b/compiler/modules/dummy_row.py similarity index 99% rename from compiler/modules/replica_row.py rename to compiler/modules/dummy_row.py index 25268993..147bf740 100644 --- a/compiler/modules/replica_row.py +++ b/compiler/modules/dummy_row.py @@ -11,7 +11,7 @@ from sram_factory import factory from vector import vector from globals import OPTS -class replica_row(design.design): +class dummy_row(design.design): """ Generate a replica wordline row for the replica array. """ diff --git a/compiler/tests/05_replica_row_test.py b/compiler/tests/05_dummy_row_test.py similarity index 81% rename from compiler/tests/05_replica_row_test.py rename to compiler/tests/05_dummy_row_test.py index 9d8e7ce2..92e7c176 100755 --- a/compiler/tests/05_replica_row_test.py +++ b/compiler/tests/05_dummy_row_test.py @@ -13,13 +13,13 @@ from globals import OPTS from sram_factory import factory import debug -class replica_row_test(openram_test): +class dummy_row_test(openram_test): def runTest(self): globals.init_openram("config_{0}".format(OPTS.tech_name)) - debug.info(2, "Testing replica row for 6t_cell") - a = factory.create(module_type="replica_row", cols=4) + debug.info(2, "Testing dummy row for 6t_cell") + a = factory.create(module_type="dummy_row", cols=4) self.local_check(a) globals.end_openram()