Skip to content

Commit

Permalink
bugfix: changed TIMING_VIOLATION_CORNERS to a PDK variable (#609)
Browse files Browse the repository at this point in the history
## Steps

* `Checker.*Violations`
  * Changed `TIMING_VIOLATION_CORNERS` to a PDK variable
  • Loading branch information
kareefardi authored Dec 3, 2024
1 parent 5ba0bd2 commit 20bf88a
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 2 deletions.
8 changes: 8 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,14 @@
## API Breaks
## Documentation
-->
# 2.2.8

## Steps

* `Checker.*Violations`

* Changed `TIMING_VIOLATION_CORNERS` to a PDK variable

# 2.2.7

## Steps
Expand Down
1 change: 1 addition & 0 deletions openlane/config/pdk_compat.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,7 @@ def process_sta(key: str):
]

new["DEFAULT_CORNER"] = f"nom_{default_pvt}"
new["TIMING_VIOLATION_CORNERS"] = ["*tt*"]
new["LIB"] = lib_sta

# x4. Constraints (sky130/gf180mcu)
Expand Down
2 changes: 1 addition & 1 deletion openlane/steps/checker.py
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,7 @@ def __init_subclass__(cls, **kwargs):
cls.base_corner_var_name,
List[str],
"A list of wildcards matching IPVT corners to use during checking for timing violations.",
default=["*tt*"],
pdk=True,
deprecated_names=["TIMING_VIOLATIONS_CORNERS"],
),
cls.get_corner_variable(),
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "openlane"
version = "2.2.7"
version = "2.2.8"
description = "An infrastructure for implementing chip design flows"
authors = ["Efabless Corporation and Contributors <[email protected]>"]
readme = "Readme.md"
Expand Down
2 changes: 2 additions & 0 deletions test/steps/excluded_step_tests
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
checker.holdviolations/004-success-hold-overwrite
checker.holdviolations/005-fail-different-corner

0 comments on commit 20bf88a

Please sign in to comment.