Skip to content

Commit 219c243

Browse files
committed
Add CFD tests
1 parent 0fcba0a commit 219c243

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

tests/test_sycl_queue.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -741,6 +741,11 @@ def test_reduce_hypot(device):
741741
[0, 1, 2, 3, 4, 5],
742742
[20, 20, 20, 20, 20, 20],
743743
),
744+
pytest.param(
745+
"ldexp",
746+
[5, 5, 5, 5, 5],
747+
[0, 1, 2, 3, 4],
748+
),
744749
pytest.param("logaddexp", [[-1, 2, 5, 9]], [[4, -3, 2, -8]]),
745750
pytest.param("logaddexp2", [[-1, 2, 5, 9]], [[4, -3, 2, -8]]),
746751
pytest.param(

tests/test_usm_type.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -704,6 +704,11 @@ def test_1in_1out(func, data, usm_type):
704704
[0, 1, 2, 3, 4, 5],
705705
[20, 20, 20, 20, 20, 20],
706706
),
707+
pytest.param(
708+
"ldexp",
709+
[5, 5, 5, 5, 5],
710+
[0, 1, 2, 3, 4],
711+
),
707712
pytest.param("logaddexp", [[-1, 2, 5, 9]], [[4, -3, 2, -8]]),
708713
pytest.param("logaddexp2", [[-1, 2, 5, 9]], [[4, -3, 2, -8]]),
709714
pytest.param("maximum", [0.0, 1.0, 2.0], [3.0, 4.0, 5.0]),

0 commit comments

Comments
 (0)