From 9501672f47b284c6cfe7dec9847b32ac7cf8ba09 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 ee2666745..ea6236da8 100644 --- a/loopy/execution.py +++ b/loopy/execution.py @@ -674,7 +674,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