From b200e32bdf57c178a79aef1d5b113084bd60dd92 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Andreas=20Kl=C3=B6ckner?= <inform@tiker.net>
Date: Thu, 25 Jun 2020 15:37:51 +0200
Subject: [PATCH] Fix default kernel name in array_context.make_loopy_program

---
 meshmode/array_context.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/meshmode/array_context.py b/meshmode/array_context.py
index 26da731e..4375eed4 100644
--- a/meshmode/array_context.py
+++ b/meshmode/array_context.py
@@ -35,7 +35,8 @@ __doc__ = """
 """
 
 
-def make_loopy_program(domains, statements, kernel_data=["..."], name=None):
+def make_loopy_program(domains, statements, kernel_data=["..."],
+        name="mm_actx_kernel"):
     """Return a :class:`loopy.Program` suitable for use with
     :meth:`ArrayContext.call_loopy`.
     """
-- 
GitLab