Skip to content

Commit 110d80b

Browse files
committed
Add device ID of Wildcat Lake to is_ptl() check
1 parent 061bc33 commit 110d80b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

dpnp/tests/helper.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -473,10 +473,10 @@ def is_lts_driver(device=None):
473473

474474
def is_ptl(device=None):
475475
"""
476-
Return True if a test is running on Panther Lake with Iris Xe3 GPU device,
477-
False otherwise.
476+
Return True if a test is running on Panther Lake with Iris Xe3 GPU device
477+
(which includes PTL-U, PTL-H and WCL), False otherwise.
478478
"""
479-
return _get_dev_mask(device) == 0xB000
479+
return _get_dev_mask(device) in (0xB000, 0xFD00)
480480

481481

482482
def is_win_platform():

0 commit comments

Comments
 (0)