From 094e71764ae5364833f05e247ac09e8da1885b68 Mon Sep 17 00:00:00 2001 From: Eren Dogan Date: Thu, 13 Jul 2023 12:16:58 -0700 Subject: [PATCH] Change option name for the gridless router --- compiler/modules/sram_1bank.py | 4 ++-- compiler/router/__init__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/compiler/modules/sram_1bank.py b/compiler/modules/sram_1bank.py index c40b0d3e..4c71d244 100644 --- a/compiler/modules/sram_1bank.py +++ b/compiler/modules/sram_1bank.py @@ -255,8 +255,8 @@ class sram_1bank(design, verilog, lef): return elif OPTS.route_supplies == "grid": from openram.router import supply_grid_router as router - elif OPTS.route_supplies == "navigation": - from openram.router import hanan_router as router + elif OPTS.route_supplies == "graph": + from openram.router import graph_router as router else: from openram.router import supply_tree_router as router rtr=router(layers=self.supply_stack, diff --git a/compiler/router/__init__.py b/compiler/router/__init__.py index 2bd70c4b..af90ccba 100644 --- a/compiler/router/__init__.py +++ b/compiler/router/__init__.py @@ -8,4 +8,4 @@ from .signal_escape_router import * from .signal_router import * from .supply_grid_router import * from .supply_tree_router import * -from .hanan_router import * +from .graph_router import *