forked from iree-org/iree
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Codegen][GPU] Add producer fusion pattern to loop fusion and hoistin…
…g pass (iree-org#18118) This adds an additional step to the FuseAndHoistParallelLoops pass to allow further fusion of producers after doing consumer fusion. For example, ``` scf.forall | transpose | | v v linalg.add ``` Where consumer fusion will fuse the add, but we need another step of producer fusion to fuse in the transpose. Also removes hal.binding.subspan ops from the tests.
- Loading branch information
Showing
2 changed files
with
98 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters