From 94bfad4113ac16807efa68a1b9edaeabc5fad286 Mon Sep 17 00:00:00 2001 From: mrg Date: Mon, 17 Aug 2020 13:24:34 -0700 Subject: [PATCH] Horizontal gnd vias for unused array inputs --- compiler/modules/bank.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/modules/bank.py b/compiler/modules/bank.py index 59b8faa7..ea39fac4 100644 --- a/compiler/modules/bank.py +++ b/compiler/modules/bank.py @@ -984,8 +984,8 @@ class bank(design.design): # Place the pins a track outside of the array left_loc = left_pin_loc - vector(layer_pitch, 0) right_loc = right_pin_loc + vector(layer_pitch, 0) - self.add_power_pin("gnd", left_loc) - self.add_power_pin("gnd", right_loc) + self.add_power_pin("gnd", left_loc, directions=("H", "H")) + self.add_power_pin("gnd", right_loc, directions=("H", "H")) # Add a path to connect to the array self.add_path(pin_layer, [left_loc, left_pin_loc])