From 3587f90e945c5e966ae25d863fd6c78c6162d224 Mon Sep 17 00:00:00 2001 From: Matt Guthaus Date: Tue, 11 Sep 2018 14:47:55 -0700 Subject: [PATCH] Fix copy pasta error in create vertical channel route --- compiler/base/hierarchy_layout.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/base/hierarchy_layout.py b/compiler/base/hierarchy_layout.py index 191fa492..5cd67eea 100644 --- a/compiler/base/hierarchy_layout.py +++ b/compiler/base/hierarchy_layout.py @@ -835,13 +835,13 @@ class layout(lef.lef): 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"), pitch=None): """ 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) def create_horizontal_channel_route(self, route_map, top_pins, bottom_pins, offset,