Skip to content

Commit

Permalink
Don't set_dont_use for PNR_EXCLUDED_CELLS
Browse files Browse the repository at this point in the history
  • Loading branch information
kareefardi committed Jan 10, 2024
1 parent 49fb64b commit e6a7655
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 9 deletions.
1 change: 0 additions & 1 deletion openlane/scripts/openroad/common/io.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,6 @@ proc read_lefs {{tlef_key "TECH_LEF"}} {
}

proc set_dont_use_cells {} {
set_dont_use $::env(PNR_EXCLUDED_CELLS)
if { [info exists ::env(RSZ_DONT_USE_CELLS)] } {
set_dont_use $::env(RSZ_DONT_USE_CELLS)
}
Expand Down
8 changes: 0 additions & 8 deletions openlane/steps/openroad.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@
from ..logging import debug, err, info, warn, verbose, console, options
from ..common import (
Path,
TclUtils,
get_script_dir,
get_tpe,
mkdirp,
Expand Down Expand Up @@ -242,13 +241,6 @@ def prepare_env(self, env: dict, state: State) -> dict:
for lib in self.toolbox.get_macro_views(self.config, DesignFormat.LIB)
]
)
env["PNR_EXCLUDED_CELLS"] = TclUtils.join(
[
cell.strip()
for cell in open(self.config["PNR_EXCLUSION_CELL_LIST"]).read().split()
if cell.strip() != ""
]
)

python_path_elements = site.getsitepackages()
if current_pythonpath := env.get("PYTHONPATH"):
Expand Down

0 comments on commit e6a7655

Please sign in to comment.