Skip to content

Commit

Permalink
Fix typo in fusion_loop
Browse files Browse the repository at this point in the history
  • Loading branch information
dop-amin committed Dec 4, 2024
1 parent 9ab558d commit 515da02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion slothy/core/slothy.py
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ def fusion_loop(self, loop_lbl, **kwargs):
indentation = AsmHelper.find_indentation(body)

body_ssa = SourceLine.read_multiline(loop.start(loop_cnt)) + \
SourceLine.apply_indentation(self._fusion_core(pre, body, late, logger, **kwargs), indentation) + \
SourceLine.apply_indentation(self._fusion_core(pre, body, post, logger, **kwargs), indentation) + \
SourceLine.read_multiline(loop.end(other_data))

self.source = pre + body_ssa + post
Expand Down

0 comments on commit 515da02

Please sign in to comment.