Skip to content

Commit 42fa1e9

Browse files
authored
Replace deprecated applyPatternsAndFoldGreedily with applyPatternsGreedily (nod-ai#1030)
-- Replaces deprecated `applyPatternsAndFoldGreedily` with `applyPatternsGreedily`
1 parent c310936 commit 42fa1e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/plugins/target/AMD-AIE/iree-amd-aie/Transforms/AMDAIEFuseConsumerIntoLoop.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ void AMDAIEFuseConsumerIntoLoopPass::runOnOperation() {
9292
changed = false;
9393
// Canonicalize before every iteration to enable more back-to-back fusion
9494
// opportunities.
95-
(void)applyPatternsAndFoldGreedily(funcOp, canonicalizationPatterns);
95+
(void)applyPatternsGreedily(funcOp, canonicalizationPatterns);
9696
Operation *producerOp = computeOp;
9797
// TODO(jornt): Refactor fuseDepth to avoid hardcoding and fuse greedily
9898
// with any depth instead.

0 commit comments

Comments
 (0)