Skip to content

Commit a4d9137

Browse files
committed
noodling
1 parent dacf283 commit a4d9137

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

devito/data/data.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -539,7 +539,9 @@ def _set_global_idx(self, val, idx, val_idx):
539539
data_glb_idx.insert(index, value)
540540
# Based on `data_glb_idx` the indices to which the locally stored data
541541
# block correspond can now be computed:
542-
for i, j, k in zip(data_glb_idx, as_tuple(idx), self._decomposition, strict=True):
542+
for i, j, k in zip(
543+
data_glb_idx, as_tuple(idx), self._decomposition, strict=False
544+
):
543545
if is_integer(j):
544546
mapped_idx.append(j)
545547
continue

0 commit comments

Comments
 (0)