Skip to content

Commit fdee755

Browse files
committed
fixed missing merge conflicts
1 parent f591903 commit fdee755

File tree

2 files changed

+3
-12
lines changed

2 files changed

+3
-12
lines changed

tests/test_sycl_queue.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -152,13 +152,10 @@ def test_empty_like(device_x, device_y):
152152
pytest.param("ones_like", ["x0"], {}),
153153
pytest.param("tril", ["x0.reshape((2,2))"], {}),
154154
pytest.param("triu", ["x0.reshape((2,2))"], {}),
155-
<<<<<<< HEAD
156-
pytest.param("zeros_like", ["x0"], {}),
157-
=======
158155
pytest.param("linspace", ["x0", "4", "4"], {}),
159156
pytest.param("linspace", ["1", "x0", "4"], {}),
160157
pytest.param("vander", ["x0"], {}),
161-
>>>>>>> rework implementation of diag, diagflat, vander, and ptp
158+
pytest.param("zeros_like", ["x0"], {}),
162159
],
163160
)
164161
@pytest.mark.parametrize(

tests/test_usm_type.py

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -140,25 +140,19 @@ def test_coerced_usm_types_power(usm_type_x, usm_type_y):
140140
@pytest.mark.parametrize(
141141
"func, args",
142142
[
143-
<<<<<<< HEAD
144-
pytest.param("empty_like", ["x0"]),
145-
=======
146143
pytest.param("diag", ["x0"]),
147-
>>>>>>> rework implementation of diag, diagflat, vander, and ptp
144+
pytest.param("empty_like", ["x0"]),
148145
pytest.param("full", ["10", "x0[3]"]),
149146
pytest.param("full_like", ["x0", "4"]),
150147
pytest.param("geomspace", ["x0[0:3]", "8", "4"]),
151148
pytest.param("geomspace", ["1", "x0[3:5]", "4"]),
152149
pytest.param("linspace", ["x0[0:2]", "8", "4"]),
153150
pytest.param("linspace", ["0", "x0[3:5]", "4"]),
154-
<<<<<<< HEAD
155151
pytest.param("logspace", ["x0[0:2]", "8", "4"]),
156152
pytest.param("logspace", ["0", "x0[3:5]", "4"]),
157153
pytest.param("ones_like", ["x0"]),
158-
pytest.param("zeros_like", ["x0"]),
159-
=======
160154
pytest.param("vander", ["x0"]),
161-
>>>>>>> rework implementation of diag, diagflat, vander, and ptp
155+
pytest.param("zeros_like", ["x0"]),
162156
],
163157
)
164158
@pytest.mark.parametrize("usm_type_x", list_of_usm_types, ids=list_of_usm_types)

0 commit comments

Comments
 (0)