diff --git a/test/test_reduction.py b/test/test_reduction.py index 83aac9d376c8dcab2a7414c3514bfbf436ab3110..290f3d4838eaaa3ed4ae7b5889eba8a1ce48861a 100644 --- a/test/test_reduction.py +++ b/test/test_reduction.py @@ -186,7 +186,7 @@ def test_local_parallel_reduction(ctx_factory, size): ctx = ctx_factory() knl = lp.make_kernel( - "{[i, j]: 1 <= i < n and 0 <= j < 5}", + "{[i, j]: 0 <= i < n and 0 <= j < 5}", """ z[j] = sum(i, i+j) """)