Skip to content

Commit 4145b8f

Browse files
committed
row_stack is an alias on vstack, so no need to run CFD tests for both functions
1 parent 514bf62 commit 4145b8f

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

dpnp/tests/test_sycl_queue.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2060,7 +2060,6 @@ def test_broadcast_to(device):
20602060
pytest.param("concatenate", [[1, 2], [3, 4]], [[5, 6]]),
20612061
pytest.param("dstack", [[1], [2], [3]], [[2], [3], [4]]),
20622062
pytest.param("hstack", (1, 2, 3), (4, 5, 6)),
2063-
pytest.param("row_stack", [[7], [1], [2], [3]], [[2], [3], [9], [4]]),
20642063
pytest.param("stack", [1, 2, 3], [4, 5, 6]),
20652064
pytest.param("vstack", [0, 1, 2, 3], [4, 5, 6, 7]),
20662065
],

dpnp/tests/test_usm_type.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -808,7 +808,6 @@ def test_broadcast_to(usm_type):
808808
pytest.param("concatenate", [[1, 2], [3, 4]], [[5, 6]]),
809809
pytest.param("dstack", [[1], [2], [3]], [[2], [3], [4]]),
810810
pytest.param("hstack", (1, 2, 3), (4, 5, 6)),
811-
pytest.param("row_stack", [[7], [1], [2], [3]], [[2], [3], [9], [4]]),
812811
pytest.param("stack", [1, 2, 3], [4, 5, 6]),
813812
pytest.param("vstack", [0, 1, 2, 3], [4, 5, 6, 7]),
814813
],

0 commit comments

Comments
 (0)