mirror of https://github.com/VLSIDA/OpenRAM.git
Fix copy pasta error in create vertical channel route
This commit is contained in:
parent
5e34233479
commit
3587f90e94
|
|
@ -835,13 +835,13 @@ class layout(lef.lef):
|
||||||
offset -= vector(0,pitch)
|
offset -= vector(0,pitch)
|
||||||
|
|
||||||
|
|
||||||
def create_vertical_channel_route(self, route_map, left_inst, right_inst, offset,
|
def create_vertical_channel_route(self, route_map, left_pins, right_pins, offset,
|
||||||
layer_stack=("metal1", "via1", "metal2"),
|
layer_stack=("metal1", "via1", "metal2"),
|
||||||
pitch=None):
|
pitch=None):
|
||||||
"""
|
"""
|
||||||
Wrapper to create a vertical channel route
|
Wrapper to create a vertical channel route
|
||||||
"""
|
"""
|
||||||
self.create_channel_route(route_map, left_inst, right_inst, offset,
|
self.create_channel_route(route_map, left_pins, right_pins, offset,
|
||||||
layer_stack, pitch, vertical=True)
|
layer_stack, pitch, vertical=True)
|
||||||
|
|
||||||
def create_horizontal_channel_route(self, route_map, top_pins, bottom_pins, offset,
|
def create_horizontal_channel_route(self, route_map, top_pins, bottom_pins, offset,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue