Skip to content

Commit 50e1ba3

Browse files
committed
WIP WIP important fix
1 parent 16fe768 commit 50e1ba3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

devito/types/array.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,7 @@ def symbolic_shape(self):
488488
from devito.symbolics import FieldFromPointer, IndexedPointer # noqa
489489
ffp = FieldFromPointer(self._C_field_shape, self._C_symbol)
490490
ret = [s if is_integer(s) else IndexedPointer(ffp, i)
491-
for i, s in enumerate(self.shape)]
491+
for i, s in enumerate(super().symbolic_shape)]
492492
return tuple(ret)
493493

494494
@property

0 commit comments

Comments
 (0)