Skip to content

Commit

Permalink
Update lit.cfg.py (#710)
Browse files Browse the repository at this point in the history
fix cut and paste error
  • Loading branch information
fifield authored Aug 14, 2024
1 parent 96a2969 commit 0426adb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/lit.cfg.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@
result = result.stdout.decode("utf-8").split("\n")
# Starting with Linux 6.8 the format is like "[0000:66:00.1] : RyzenAI-npu1"
# Starting with Linux 6.10 the format is like "|[0000:41:00.1] ||RyzenAI-npu1 |"
p = re.compile("[|]\[.+:.+:.+\].+(Phoenix|RyzenAI-(npu\d))")
p = re.compile("[\|]?\[.+:.+:.+\].+(Phoenix|RyzenAI-(npu\d))")
for l in result:
m = p.match(l)
if m:
Expand Down

0 comments on commit 0426adb

Please sign in to comment.