Skip to content

Commit

Permalink
Merge pull request #291 from efabless/update-sky130-mr
Browse files Browse the repository at this point in the history
Update sky130 mr
  • Loading branch information
marwaneltoukhy authored Sep 3, 2024
2 parents 90c674a + 3467a4c commit af0ec1b
Show file tree
Hide file tree
Showing 2 changed files with 1,407 additions and 689 deletions.
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
Loading

0 comments on commit af0ec1b

Please sign in to comment.