Skip to content

Commit

Permalink
"-r" to propagate exceptions in the deck
Browse files Browse the repository at this point in the history
without Optional the flow crashes
  • Loading branch information
kareefardi committed Nov 26, 2023
1 parent d33b0ea commit 250e3d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions openlane/steps/klayout.py
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ class DRC(KLayoutStep):
),
Variable(
"KLAYOUT_DRC_OPTIONS",
[Dict[str, Union[bool, int]]],
Optional[Dict[str, Union[bool, int]]],
"Options availble to KLayout DRC. They vary from one PDK to another.",
pdk=True,
),
Expand Down Expand Up @@ -378,7 +378,7 @@ def run_sky130A(self, state_in: State, **kwargs) -> MetricsUpdate:
"klayout",
"-b",
"-zz",
"-rm",
"-r",
drc_script_path,
"-rd",
f"input={str(state_in[DesignFormat.GDS])}",
Expand Down

0 comments on commit 250e3d6

Please sign in to comment.