From 4bc46b9b87cd25a6cceb235fff1d0b4928af4a1b Mon Sep 17 00:00:00 2001 From: Matt Wala <wala1@illinois.edu> Date: Wed, 24 Jan 2018 18:45:54 -0600 Subject: [PATCH] Remove a no-op statement --- test/test_loopy.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/test_loopy.py b/test/test_loopy.py index 375b59dcb..0e55cdba6 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) -- GitLab