Skip to content

Commit

Permalink
Update dace/transformation/interstate/block_fusion.py
Browse files Browse the repository at this point in the history
Co-authored-by: Tal Ben-Nun <tbennun@users.noreply.github.com>
  • Loading branch information
phschaad and tbennun authored Dec 9, 2024
1 parent d27ec31 commit 72508bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dace/transformation/interstate/block_fusion.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def can_be_applied(self, graph, expr_index, sdfg, permissive=False):
if out_edges[0].data.assignments:
if not in_edges:
return False
# If the first block is a control flow region, no absorbtion is possible.
# If the first block is a control flow region, no absorption is possible.
if isinstance(self.first_block, AbstractControlFlowRegion):
return False
# Fail if symbol is set before the block to fuse
Expand Down

0 comments on commit 72508bd

Please sign in to comment.