diff --git a/test/test_loopy.py b/test/test_loopy.py index 375b59dcb38bb889124baadd6cc473fe029d48c6..0e55cdba672adf8e0e37f0dbb160210a4e20e630 100644 --- a/test/test_loopy.py +++ b/test/test_loopy.py @@ -2757,8 +2757,6 @@ def test_relaxed_stride_checks(ctx_factory): with cl.CommandQueue(ctx) as queue: A = np.zeros((1, 10), order="F") - # Force convert A to C order. numpy will preserve strides in this case. - A = np.array(A, copy=False, order="C") b = np.zeros(10, dtype=np.float64) evt, (a,) = knl(queue, A=A, b=b)