From 889a4aa1e70353886e34d0ab43e2d20e47ee3cf9 Mon Sep 17 00:00:00 2001 From: Chetanya <95761876+chetanyagoyal@users.noreply.github.com> Date: Sat, 11 Nov 2023 15:17:30 +0530 Subject: [PATCH] update file_paths to follow convention --- openfasoc/generators/temp-sense-gen/tools/parse_rpt.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/openfasoc/generators/temp-sense-gen/tools/parse_rpt.py b/openfasoc/generators/temp-sense-gen/tools/parse_rpt.py index dbe536754..d0c40630c 100644 --- a/openfasoc/generators/temp-sense-gen/tools/parse_rpt.py +++ b/openfasoc/generators/temp-sense-gen/tools/parse_rpt.py @@ -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: @@ -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() @@ -27,4 +27,4 @@ if check_gen_files(json_filename, (len(sys.argv) == 1)): print("Flow check is clean!") else: - print("Flow check failed!") \ No newline at end of file + print("Flow check failed!")