From feeed15974471f8d40e528a5e09b74eb9f07787e Mon Sep 17 00:00:00 2001
From: Matt Wala <wala1@illinois.edu>
Date: Sun, 23 Apr 2017 21:25:01 -0500
Subject: [PATCH] Fix reductions of size 1 to be consistent with fix in master.

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

diff --git a/loopy/preprocess.py b/loopy/preprocess.py
index 229c6b7ca..68ef6062e 100644
--- a/loopy/preprocess.py
+++ b/loopy/preprocess.py
@@ -1289,7 +1289,7 @@ def realize_reduction(kernel, insn_id_filter=None, unknown_types_ok=True,
 
         new_insn_add_depends_on.add(prev_id)
         new_insn_add_no_sync_with.add((prev_id, "any"))
-        new_insn_add_within_inames.add(stage_exec_iname or base_exec_iname)
+        new_insn_add_within_inames.add(base_exec_iname or stage_exec_iname)
 
         if nresults == 1:
             assert len(acc_vars) == 1
-- 
GitLab