From 3bbbc62fa8bd418f88e3e23ffe141a3a1480e15c Mon Sep 17 00:00:00 2001 From: Nicholas Christensen Date: Tue, 11 Aug 2020 19:15:15 +0200 Subject: [PATCH] Enable kwargs in transform_loopy_program. --- meshmode/array_context.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meshmode/array_context.py b/meshmode/array_context.py index cff1690c..01069907 100644 --- a/meshmode/array_context.py +++ b/meshmode/array_context.py @@ -297,7 +297,7 @@ class PyOpenCLArrayContext(ArrayContext): # }}} @memoize_method - def transform_loopy_program(self, program): + def transform_loopy_program(self, program, **kwargs): # FIXME: This could be much smarter. import loopy as lp all_inames = program.all_inames() -- GitLab