From 7ff89f208539e81ce42e7984e867f2b5bef7644d Mon Sep 17 00:00:00 2001 From: Class Account Date: Sun, 12 May 2024 23:35:37 -0700 Subject: [PATCH] removed qrc bug fix --- hammer/synthesis/genus/__init__.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/hammer/synthesis/genus/__init__.py b/hammer/synthesis/genus/__init__.py index b0a489d13..0133db8b6 100644 --- a/hammer/synthesis/genus/__init__.py +++ b/hammer/synthesis/genus/__init__.py @@ -389,15 +389,6 @@ def predict_floorplan(self) -> bool: return True def add_tieoffs(self) -> bool: - - qrc_files = self.technology.read_libs([ - hammer_tech.filters.qrc_tech_filter - ], hammer_tech.HammerTechnologyUtils.to_plain_item) - - # using asap7 don't add tieoffs - if(qrc_files): - return True - tie_hi_cells = self.technology.get_special_cell_by_type(CellType.TieHiCell) tie_lo_cells = self.technology.get_special_cell_by_type(CellType.TieLoCell) tie_hilo_cells = self.technology.get_special_cell_by_type(CellType.TieHiLoCell)