Skip to content
This repository was archived by the owner on May 9, 2024. It is now read-only.

Commit 748900a

Browse files
committed
Add gpu hang bucket
1 parent 960b367 commit 748900a

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

scripts/bucketing.py

+2
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,8 @@ def advanced_bucketize(p: subprocess.CompletedProcess):
123123
add_to_bucket(report[top_level_bucket], "HASH_TABLE_CACHE", test)
124124
elif "SQLiteComparator" in p.stdout:
125125
add_to_bucket(report[top_level_bucket], "INCORRECT_RESULT", test)
126+
elif "device hung" in p.stderr:
127+
add_to_bucket(report[top_level_bucket], "DEVICE_HUNG", test)
126128
else:
127129
add_to_bucket(report[top_level_bucket], "OTHER", test, p.stderr)
128130

0 commit comments

Comments
 (0)