From 8fff4e2635e6fd187b61aab9e423232d0b982c6a Mon Sep 17 00:00:00 2001 From: Eren Dogan Date: Wed, 2 Aug 2023 21:35:13 -0700 Subject: [PATCH] Organize imports of the new router --- compiler/router/graph_node.py | 1 - compiler/router/router.py | 2 +- compiler/router/signal_escape_router.py | 2 +- compiler/router/supply_router.py | 2 +- 4 files changed, 3 insertions(+), 4 deletions(-) diff --git a/compiler/router/graph_node.py b/compiler/router/graph_node.py index acb40d6f..c0aa2ed2 100644 --- a/compiler/router/graph_node.py +++ b/compiler/router/graph_node.py @@ -3,7 +3,6 @@ # Copyright (c) 2016-2023 Regents of the University of California, Santa Cruz # All rights reserved. # -from openram.base.vector import vector from openram.base.vector3d import vector3d from openram.tech import drc diff --git a/compiler/router/router.py b/compiler/router/router.py index 1fc83bef..fe445ae1 100644 --- a/compiler/router/router.py +++ b/compiler/router/router.py @@ -10,9 +10,9 @@ from openram.tech import GDS from openram.tech import drc from openram.tech import layer as tech_layer from openram import OPTS -from .router_tech import router_tech from .graph_shape import graph_shape from .graph_utils import snap +from .router_tech import router_tech class router(router_tech): diff --git a/compiler/router/signal_escape_router.py b/compiler/router/signal_escape_router.py index 08b76be2..5e4ae66e 100644 --- a/compiler/router/signal_escape_router.py +++ b/compiler/router/signal_escape_router.py @@ -7,8 +7,8 @@ from openram import debug from openram.base.vector import vector from openram import OPTS from .graph import graph -from .router import router from .graph_shape import graph_shape +from .router import router class signal_escape_router(router): diff --git a/compiler/router/supply_router.py b/compiler/router/supply_router.py index 5aabf7fb..f6acd24c 100644 --- a/compiler/router/supply_router.py +++ b/compiler/router/supply_router.py @@ -7,8 +7,8 @@ from openram import debug from openram.base.vector import vector from openram import OPTS from .graph import graph -from .router import router from .graph_shape import graph_shape +from .router import router class supply_router(router):