Skip to content

Commit

Permalink
Merge branch 'fix-275' into update-sky130-mr
Browse files Browse the repository at this point in the history
  • Loading branch information
kareefardi committed Sep 1, 2024
2 parents 75f9de2 + 6645d1f commit de2ca09
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion checks/drc_checks/klayout/klayout_gds_drc_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,13 @@ def klayout_gds_drc_check(check_name, drc_script_path, gds_input_file_path, outp
parser.add_argument('--feol', '-f', action='store_true', required=False, default=False, help='run FEOL rules')
parser.add_argument('--beol', '-b', action='store_true', required=False, default=False, help='run BEOL rules')
parser.add_argument('--off_grid', '-og', action='store_true', required=False, default=False, help='run OFFGRID rules')
parser.add_argument('--pdk', required=False, default="sky130A", help='PDK')
args = parser.parse_args()

gds_input_file_path = Path(args.gds_input_file_path)
output_directory = Path(args.output_directory)

klayout_sky130A_mr_drc_script_path = Path(__file__).parent.parent.parent / "tech-files/gf180mcuD_mr.drc"
klayout_sky130A_mr_drc_script_path = Path(__file__).parent.parent.parent / f"tech-files/{args.pdk}_mr.drc"

extra_args = []
if args.feol:
Expand Down

0 comments on commit de2ca09

Please sign in to comment.