From 3323cff38ec0c21ac20615606c79d1c9692b9fa1 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Sat, 10 Sep 2011 15:25:01 -0500 Subject: [PATCH] Fix schedule hinting. --- loopy/schedule.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/loopy/schedule.py b/loopy/schedule.py index a400f077f..ee5cab82a 100644 --- a/loopy/schedule.py +++ b/loopy/schedule.py @@ -112,7 +112,7 @@ def generate_loop_schedules(kernel, hints=[]): hints = hints[1:] if hints and hints[0] in schedulable: - schedulable = set(hints[0]) + schedulable = set([hints[0]]) if schedulable: # have a schedulable variable? schedule a loop for it, recurse -- GitLab