From a339d923abc8a772145f40ae56eb8cddd8cb6d97 Mon Sep 17 00:00:00 2001 From: jdsteve2 Date: Sun, 22 Mar 2020 15:25:39 -0500 Subject: [PATCH] remove unused iname i from test_scalars_with_base_storage --- test/test_loopy.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/test_loopy.py b/test/test_loopy.py index 6b78ac26b..27c5b19b4 100644 --- a/test/test_loopy.py +++ b/test/test_loopy.py @@ -1926,8 +1926,9 @@ def test_scalars_with_base_storage(ctx_factory): ctx = ctx_factory() queue = cl.CommandQueue(ctx) + import islpy as isl knl = lp.make_kernel( - "{ [i]: 0<=i<1}", + [isl.BasicSet("[] -> {[]: }")], # empty (domain w/unused inames errors) "a = 1", [lp.TemporaryVariable("a", dtype=np.float64, shape=(), base_storage="base")]) -- GitLab