Skip to content

Commit

Permalink
update file_paths to follow convention
Browse files Browse the repository at this point in the history
  • Loading branch information
chetanyagoyal authored Nov 11, 2023
1 parent a5a9963 commit 889a4aa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions openfasoc/generators/temp-sense-gen/tools/parse_rpt.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
sys.path.append(os.path.join(os.path.dirname(__file__), '..', '..'))
from common.check_gen_files import check_gen_files

drc_filename = "flow/reports/sky130hd/tempsense/6_final_drc.rpt"
drc_filename = "work/6_final_drc.rpt"
num_lines = sum(1 for line in open(drc_filename))

if num_lines > 3:
Expand All @@ -12,7 +12,7 @@
print("DRC is clean!")


lvs_filename = "flow/reports/sky130hd/tempsense/6_final_lvs.rpt"
lvs_filename = "work/6_final_lvs.rpt"

with open(lvs_filename) as f:
f1 = f.read()
Expand All @@ -27,4 +27,4 @@
if check_gen_files(json_filename, (len(sys.argv) == 1)):
print("Flow check is clean!")
else:
print("Flow check failed!")
print("Flow check failed!")

0 comments on commit 889a4aa

Please sign in to comment.