Skip to content

Commit 5c013a1

Browse files
authored
[DLE2025.2] Add workaround for test_subprocess.py/test_print (#4999)
Relates to #4998 Tested in https://github.com/intel/intel-xpu-backend-for-triton/actions/runs/17329962452/job/49203454420?pr=4963 Signed-off-by: Anatoly Myachev <[email protected]>
1 parent a75fafc commit 5c013a1

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

python/test/unit/language/test_subprocess.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,9 @@ def test_print(func_type: str, data_type: str, device: str):
5353
return
5454

5555
outs = [line for line in proc.stdout.decode("UTF-8").splitlines() if line]
56+
# FIXME: workaround for DLE 2025.2, namely PTI 0.13.1
57+
# https://github.com/intel/intel-xpu-backend-for-triton/issues/4998
58+
outs = filter(lambda elem: "Another subscriber already subscribed to Sycl runtime events" not in elem, outs)
5659
# The total number of elements in the 1-D tensor to print.
5760
N = 128
5861

0 commit comments

Comments
 (0)