An error occurred while fetching the assigned milestone of the selected merge_request.
Enable overriding of kwargs in SerialDataHandling.run_kernel
Apparently
kernel_function(**{**arrays, **kwargs})
does the same as
call_dict = {}
call_dict.update(arrays)
call_dict.update(kwargs)
kernel_function(**call_dict)
But
kernel_function(**arrays, **kwargs)
causes an error if a key is in arrays and kwargs.
Edited by Stephan Seitz
Merge request reports
Activity
Filter activity
added 5 commits
-
72a77349...0bb88bca - 4 commits from branch
pycodegen:master
- 64454993 - Enable overriding of kwargs in SerialDataHandling.run_kernel
-
72a77349...0bb88bca - 4 commits from branch
mentioned in commit ff47d356
Please register or sign in to reply