From fb17a726455b19f97a13f11343dcfc681dcdb914 Mon Sep 17 00:00:00 2001
From: Andreas Kloeckner <inform@tiker.net>
Date: Mon, 6 Jun 2016 12:36:35 -0500
Subject: [PATCH] auto_test: deal with array scalars

---
 loopy/auto_test.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/loopy/auto_test.py b/loopy/auto_test.py
index bada80328..b475a40f3 100644
--- a/loopy/auto_test.py
+++ b/loopy/auto_test.py
@@ -265,7 +265,7 @@ def make_args(kernel, impl_arg_info, queue, ref_arg_data, parameters):
             host_storage_array = np.empty(alloc_size, dtype)
             host_array = as_strided(
                     host_storage_array, shape, numpy_strides)
-            host_array[:] = host_contig_array
+            host_array[...] = host_contig_array
 
             host_contig_array = arg_desc.ref_storage_array.get()
             storage_array = cl_array.to_device(queue, host_storage_array)
-- 
GitLab