Skip to content

Commit d865b5f

Browse files
committed
Correct implementation of is_tgllp_iris_xe()
1 parent 2852c13 commit d865b5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dpnp/tests/helper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ def is_tgllp_iris_xe(device=None):
485485
Return True if a test is running on Tiger Lake-LP with Iris Xe GPU device,
486486
False otherwise.
487487
"""
488-
return _get_dev_id(device) in (0x9A49, 0x9A40)
488+
return get_dev_id(device) in (0x9A49, 0x9A40)
489489

490490

491491
def is_win_platform():

0 commit comments

Comments
 (0)