From 537e0689fb18be96105024b44bb714480ce58f47 Mon Sep 17 00:00:00 2001 From: Matt Guthaus Date: Thu, 6 Dec 2018 14:29:06 -0800 Subject: [PATCH] Add combine adjacent pins back --- compiler/router/router.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/compiler/router/router.py b/compiler/router/router.py index f6f9df2c..e57a6c30 100644 --- a/compiler/router/router.py +++ b/compiler/router/router.py @@ -164,9 +164,10 @@ class router(router_tech): # It must be done after blockages to ensure no DRCs between expanded pins and blocked grids for pin in pin_list: self.convert_pins(pin) - - #for pin in pin_list: - # self.combine_adjacent_pins(pin) + + # Combine adjacent pins into pin groups to reduce run-time + for pin in pin_list: + self.combine_adjacent_pins(pin) # Separate any adjacent grids of differing net names that overlap # Must be done before enclosing pins