feat(izh): introduce Antenna Checker module to iZH - #145
Open
trabdelbasset wants to merge 12 commits into
Open
Conversation
- Implemented an Antenna Checker for the iZH module. - Updated the database to parse LEF antenna properties (gate/diff areas). - Registered the antenna extraction step into the feature telemetry pipeline.
- Implemented FileZHManager (izh_fm) to serialize detailed antenna violations to disk, matching the idrc JSON format. - Decoupled AntennaChecker internals by caching violation structs directly at the ZHInterface boundary, resolving circular dependency issues. - Updated pybind11 signatures to accept a feature_file path for explicit telemetry routing.
Rework AntennaChecker to match Cadence LEF/DEF 5.8 antenna rules so large nets scale without losing accuracy. - Sum worst-case CAR ratios rather than raw area, so merged gates keep per-gate damage accounting. - Union rectilinear geometry with an exact sweep line for precise metal area and side perimeter. - Time-stamp logical gates and conductor nodes per layer, so merging respects layer timing instead of firing at time 0. - Chain alternating metal and cut layers per ANTENNACUMROUTINGPLUSCUT. - Order edge-sort comparator fields consistently with std::tie. - Bucket edges by layer and time instead of one global sort. - Group components in flat root-indexed vectors instead of std::map. - Fast-path unions of one rect or disjoint rects.
…c_solver in AntennaChecker
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Antenna Checker (iZH): Introduces antenna checker with Tcl/Python bindings and structured JSON telemetry export.