Skip to content

Commit

Permalink
check-inductor-report.py
Browse files Browse the repository at this point in the history
  • Loading branch information
kwasd committed Oct 21, 2024
1 parent fe5f9f1 commit 0d19d9d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/check_inductor_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def check_report(suite, dtype, mode, test_mode, device, models_file, inductor_lo
exitcode = 0

with open(models_file, encoding="utf-8") as f:
subset = f.readlines()
subset = f.read().splitlines()

with open(inductor_report_path, encoding="utf-8") as f:
reader = csv.reader(f)
Expand Down Expand Up @@ -46,6 +46,7 @@ def check_report(suite, dtype, mode, test_mode, device, models_file, inductor_lo
if test_statuses[idx] != "pass":
exitcode = 1
print(f"Test is NOT PASSED: {m}")
import pdb;pdb.set_trace()
return exitcode


Expand Down

0 comments on commit 0d19d9d

Please sign in to comment.