From 842f346f62561b698b9a0786414d73673decde82 Mon Sep 17 00:00:00 2001
From: Andreas Kloeckner <inform@tiker.net>
Date: Sat, 30 Jan 2016 15:14:29 -0600
Subject: [PATCH] Adjust hello-world example to make sense on ISPC

---
 examples/python/hello-loopy-lp.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/examples/python/hello-loopy-lp.py b/examples/python/hello-loopy-lp.py
index 382aadc09..0ba44d6ec 100644
--- a/examples/python/hello-loopy-lp.py
+++ b/examples/python/hello-loopy-lp.py
@@ -8,4 +8,4 @@ knl = lp.make_kernel(
         "out[i] = 2*a[i]")
 
 knl = lp.add_and_infer_dtypes(knl, dict(a=np.float32))
-lp_knl = lp.split_iname(knl, "i", 128, outer_tag="g.0", inner_tag="l.0")
+lp_knl = lp.split_iname(knl, "i", 8, outer_tag="g.0", inner_tag="l.0")
-- 
GitLab