Skip to content

Commit ff167b3

Browse files
alexfiklinducer
authored andcommitted
feat: update deprecated dataclass_array_container arguments
1 parent 3779490 commit ff167b3

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

examples/wave/wave-op-mpi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151

5252
# {{{ wave equation bits
5353

54-
@with_container_arithmetic(bcast_obj_array=True,
54+
@with_container_arithmetic(bcasts_across_obj_array=True,
5555
rel_comparison=True,
5656
_cls_has_array_context_attr=True,
5757
)

grudge/models/euler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767

6868
# {{{ Array containers for the Euler model
6969

70-
@with_container_arithmetic(bcast_obj_array=False,
70+
@with_container_arithmetic(bcasts_across_obj_array=False,
7171
container_types_bcast_across=(DOFArray, np.ndarray),
7272
matmul=True,
7373
rel_comparison=True,

grudge/trace_pair.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@
109109

110110
# {{{ trace pair container class
111111

112-
@with_container_arithmetic(bcast_obj_array=False,
112+
@with_container_arithmetic(bcasts_across_obj_array=False,
113113
eq_comparison=False,
114114
rel_comparison=False,
115115
)

test/test_reductions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ def f(x):
164164

165165
# {{{ Array container tests
166166

167-
@with_container_arithmetic(bcast_obj_array=False,
167+
@with_container_arithmetic(bcasts_across_obj_array=False,
168168
eq_comparison=False,
169169
rel_comparison=False,
170170
_cls_has_array_context_attr=True,

0 commit comments

Comments
 (0)