From 5d0af418d9ca5e79b9b83b014ea397bbdf6e6689 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner <inform@tiker.net> Date: Fri, 19 Jan 2018 16:23:18 -0600 Subject: [PATCH] Clarify scope of get_visual_iname_order_embedding warning --- loopy/kernel/__init__.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/loopy/kernel/__init__.py b/loopy/kernel/__init__.py index 88a571764..038ef23ac 100644 --- a/loopy/kernel/__init__.py +++ b/loopy/kernel/__init__.py @@ -1081,7 +1081,9 @@ class LoopKernel(ImmutableRecordWithoutPickling): warn_with_kernel(self, "iname-order", "get_visual_iname_order_embedding() could not determine a " - "consistent iname nesting order") + "consistent iname nesting order. This is a possible indication " + "that the kernel may not schedule successfully, but for now " + "it only impacts printing of the kernel.") embedding = dict((iname, iname) for iname in self.all_inames()) return embedding -- GitLab