From 84b9b7be7b4343c26bce340f9ee18303362bf35c Mon Sep 17 00:00:00 2001 From: zachjweiner Date: Sun, 1 Nov 2020 15:34:24 -0600 Subject: [PATCH] fix quotes --- test/test_array.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_array.py b/test/test_array.py index 65b98038..381105bf 100644 --- a/test/test_array.py +++ b/test/test_array.py @@ -212,7 +212,7 @@ def test_zeros_large_array(ctx_factory): if queue.device.address_bits == 64: # this shouldn't hang/cause errors # see https://github.com/inducer/pyopencl/issues/395 - a_gpu = cl_array.zeros(queue, (2**28 + 1,), dtype='float64') + a_gpu = cl_array.zeros(queue, (2**28 + 1,), dtype="float64") # run a couple kernels to ensure no propagated runtime errors a_gpu[...] = 1. a_gpu = 2 * a_gpu - 3 -- GitLab