From 7021b8050697d7ed95471aa5a0c8ee26e932379f Mon Sep 17 00:00:00 2001 From: samuelkcrow Date: Wed, 18 Jan 2023 20:36:36 -0800 Subject: [PATCH] remove unused side argument from side routing functions --- compiler/modules/capped_replica_bitcell_array.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/compiler/modules/capped_replica_bitcell_array.py b/compiler/modules/capped_replica_bitcell_array.py index 7745e432..77f89f69 100644 --- a/compiler/modules/capped_replica_bitcell_array.py +++ b/compiler/modules/capped_replica_bitcell_array.py @@ -463,13 +463,13 @@ class capped_replica_bitcell_array(bitcell_base_array): locs provides the offsets of the pin strip end points. """ if side in ["left", "right"]: - self.connect_vertical_side_pin(pin, side, offset) + self.connect_vertical_side_pin(pin, offset) elif side in ["top", "bottom", "bot"]: - self.connect_horizontal_side_pin(pin, side, offset) + self.connect_horizontal_side_pin(pin, offset) else: debug.error("Invalid side {}".format(side), -1) - def connect_horizontal_side_pin(self, pin, side, yoffset): + def connect_horizontal_side_pin(self, pin, yoffset): """ Used to connect vertical layers of pins to the top/bottom horizontal straps """ @@ -486,7 +486,7 @@ class capped_replica_bitcell_array(bitcell_base_array): self.add_path(pin.layer, [cell_loc, pin_loc]) - def connect_vertical_side_pin(self, pin, side, xoffset): + def connect_vertical_side_pin(self, pin, xoffset): """ Used to connect vertical layers of pins to the top/bottom vertical straps """