From d9d0d2d9a0b8fc751213ee746312d5e5bba52ddb Mon Sep 17 00:00:00 2001 From: arghdos <arghdos@gmail.com> Date: Fri, 5 May 2017 10:59:00 -0400 Subject: [PATCH] add kwargs to catch any differing args between executors (e.g. out_host) --- loopy/execution.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/loopy/execution.py b/loopy/execution.py index 653568133..382255ace 100644 --- a/loopy/execution.py +++ b/loopy/execution.py @@ -602,7 +602,7 @@ class ExecutionWrapperGeneratorBase(object): "%s=None" % idi.name for idi in implemented_data_info if issubclass(idi.arg_class, KernelArgument) - ]) + ] + ['**kw_args']) gen.add_to_preamble("from __future__ import division") gen.add_to_preamble("") -- GitLab