From 72508bd6d6272c5a80aab19167e85f688e81c1f0 Mon Sep 17 00:00:00 2001 From: Philipp Schaad Date: Mon, 9 Dec 2024 14:56:40 +0100 Subject: [PATCH] Update dace/transformation/interstate/block_fusion.py Co-authored-by: Tal Ben-Nun --- dace/transformation/interstate/block_fusion.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dace/transformation/interstate/block_fusion.py b/dace/transformation/interstate/block_fusion.py index 37da066be2..813d7ad043 100644 --- a/dace/transformation/interstate/block_fusion.py +++ b/dace/transformation/interstate/block_fusion.py @@ -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