Skip to content

Commit 98ebc03

Browse files
committed
compiler: Pass operator call arguments to ArgumentsMap
1 parent c7d15b6 commit 98ebc03

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

devito/operator/operator.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,7 @@ def _build(cls, expressions, **kwargs):
194194

195195
# Required for the jit-compilation
196196
op._compiler = kwargs['compiler']
197+
op._language = kwargs['language']
197198
op._lib = None
198199
op._cfunction = None
199200

@@ -1035,6 +1036,8 @@ def __init__(self, args, grid, op):
10351036

10361037
self.allocator = op._allocator
10371038
self.platform = op._platform
1039+
self.language = op._language
1040+
self.compiler = op._compiler
10381041
self.options = op._options
10391042

10401043
@property

0 commit comments

Comments
 (0)