You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
Code got formatted by CI. Please request CI again if you still want to have this PR merged. If the PR is from a forked repo, please download the patch files from the GitHub Actions web page and apply them locally.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
iree中通过 transform.iree.apply_patterns 这个op灵活的将预定义的一些pattern在transform dialect的变换环节作用于指定的op。如,在transform.sequeue中做完tiling之后,做一些规范化的操作:
该pr中在oneflow::transform_dialect命名空间引入类似的op,并完成一个canonicalization的支持。具体实例见:https://github.com/Oneflow-Inc/oneflow/pull/10255/files#diff-a36168c1a81d37cf7f56ff09c02af22e9e3bcc39902ccdb8c7f21805d309e72fR1
除此之外,该pr中对transform dialect interpret等从llvm主仓库迁移过来的设施进行剪裁和重构。