From 24cc712e41de5222cdad29d0b2bb5909efb0252f Mon Sep 17 00:00:00 2001 From: Matt Wala <wala1@illinois.edu> Date: Wed, 24 Jan 2018 19:20:13 -0600 Subject: [PATCH] Remove an extraneous dtype --- test/test_loopy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_loopy.py b/test/test_loopy.py index 497d1e2f4..db18b2a21 100644 --- a/test/test_loopy.py +++ b/test/test_loopy.py @@ -2757,7 +2757,7 @@ def test_relaxed_stride_checks(ctx_factory): with cl.CommandQueue(ctx) as queue: mat = np.zeros((1, 10), order="F") - b = np.zeros(10, dtype=np.float64) + b = np.zeros(10) evt, (a,) = knl(queue, A=mat, b=b) -- GitLab