Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion devito/passes/iet/mpi.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def _hoist_redundant_from_conditionals(iet):
scope = Scope(e.expr for e in FindNodes(Expression).visit(it))

for hs0 in halo_spots:
conditions = cond_mapper[hs0]
conditions = cond_mapper.get(hs0)
if not conditions:
continue
condition = conditions[-1] # Take the innermost Conditional
Expand Down
Loading