mirror of https://github.com/VLSIDA/OpenRAM.git
Make graph router the default supply router
This commit is contained in:
parent
947e94323d
commit
5de7b9cda7
|
|
@ -257,10 +257,10 @@ class sram_1bank(design, verilog, lef):
|
||||||
return
|
return
|
||||||
elif OPTS.route_supplies == "grid":
|
elif OPTS.route_supplies == "grid":
|
||||||
from openram.router import supply_grid_router as router
|
from openram.router import supply_grid_router as router
|
||||||
elif OPTS.route_supplies == "graph":
|
elif OPTS.route_supplies == "tree":
|
||||||
from openram.router import graph_router as router
|
|
||||||
else:
|
|
||||||
from openram.router import supply_tree_router as router
|
from openram.router import supply_tree_router as router
|
||||||
|
else:
|
||||||
|
from openram.router import graph_router as router
|
||||||
rtr=router(layers=self.supply_stack,
|
rtr=router(layers=self.supply_stack,
|
||||||
design=self,
|
design=self,
|
||||||
bbox=bbox,
|
bbox=bbox,
|
||||||
|
|
|
||||||
|
|
@ -113,7 +113,7 @@ class options(optparse.Values):
|
||||||
# When enabled, layout is not generated (and no DRC or LVS are performed)
|
# When enabled, layout is not generated (and no DRC or LVS are performed)
|
||||||
netlist_only = False
|
netlist_only = False
|
||||||
# Whether we should do the final power routing
|
# Whether we should do the final power routing
|
||||||
route_supplies = "tree"
|
route_supplies = "graph"
|
||||||
supply_pin_type = "ring"
|
supply_pin_type = "ring"
|
||||||
# This determines whether LVS and DRC is checked at all.
|
# This determines whether LVS and DRC is checked at all.
|
||||||
check_lvsdrc = False
|
check_lvsdrc = False
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue