Skip to content

Commit f1a039c

Browse files
committed
Remove stride checks where not supported still
1 parent 6f15dff commit f1a039c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

dpnp/tests/third_party/cupy/creation_tests/test_from_data.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ def test_array_copy_with_dtype_being_none(self, xp, order):
242242
@testing.for_orders("CFAK", name="dst_order")
243243
@testing.for_all_dtypes(name="dtype1", no_complex=True)
244244
@testing.for_all_dtypes(name="dtype2")
245-
@testing.numpy_cupy_array_equal(strides_check=True)
245+
@testing.numpy_cupy_array_equal()
246246
def test_array_copy_list_of_numpy_with_dtype(
247247
self, xp, dtype1, dtype2, src_order, dst_order
248248
):
@@ -258,7 +258,7 @@ def test_array_copy_list_of_numpy_with_dtype(
258258
@testing.for_orders("CFAK", name="dst_order")
259259
@testing.for_all_dtypes(name="dtype1", no_complex=True)
260260
@testing.for_all_dtypes(name="dtype2")
261-
@testing.numpy_cupy_array_equal(strides_check=True)
261+
@testing.numpy_cupy_array_equal()
262262
def test_array_copy_list_of_numpy_with_dtype_char(
263263
self, xp, dtype1, dtype2, src_order, dst_order
264264
):
@@ -274,7 +274,7 @@ def test_array_copy_list_of_numpy_with_dtype_char(
274274
@testing.for_orders("CFAK", name="dst_order")
275275
@testing.for_all_dtypes(name="dtype1", no_complex=True)
276276
@testing.for_all_dtypes(name="dtype2")
277-
@testing.numpy_cupy_array_equal(strides_check=True)
277+
@testing.numpy_cupy_array_equal()
278278
def test_array_copy_list_of_cupy_with_dtype(
279279
self, xp, dtype1, dtype2, src_order, dst_order
280280
):
@@ -290,7 +290,7 @@ def test_array_copy_list_of_cupy_with_dtype(
290290
@testing.for_orders("CFAK", name="dst_order")
291291
@testing.for_all_dtypes(name="dtype1", no_complex=True)
292292
@testing.for_all_dtypes(name="dtype2")
293-
@testing.numpy_cupy_array_equal(strides_check=True)
293+
@testing.numpy_cupy_array_equal()
294294
def test_array_copy_list_of_cupy_with_dtype_char(
295295
self, xp, dtype1, dtype2, src_order, dst_order
296296
):

0 commit comments

Comments
 (0)