Skip to content

Commit

Permalink
feat: run DRC & LVS as part of --harden --orfs
Browse files Browse the repository at this point in the history
  • Loading branch information
htfab committed Oct 14, 2024
1 parent 8484ddc commit a4237f2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 19 deletions.
5 changes: 5 additions & 0 deletions project.py
Original file line number Diff line number Diff line change
Expand Up @@ -606,6 +606,11 @@ def harden(self):
logging.error("harden failed")
exit(1)

# DRC & LVS aren't included in the default ORFS flow
if self.args.orfs:
self.run_drc()
self.run_lvs()

# Write commit information
if self.args.orfs:
commit_id_json_path = (
Expand Down
19 changes: 0 additions & 19 deletions tt_tool.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,19 +110,6 @@
action="store_const",
const=True,
)
parser.add_argument(
"--run-drc",
help="run DRC on hardened project (ORFS only)",
action="store_const",
const=True,
)

parser.add_argument(
"--run-lvs",
help="run LVS on hardened project (ORFS only)",
action="store_const",
const=True,
)

# FPGA
parser.add_argument(
Expand Down Expand Up @@ -177,12 +164,6 @@
if args.harden:
project.harden()

if args.run_drc:
project.run_drc()

if args.run_lvs:
project.run_lvs()

if args.create_pdf:
project.create_pdf()

Expand Down

0 comments on commit a4237f2

Please sign in to comment.