-
Notifications
You must be signed in to change notification settings - Fork 5.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[CINN] Add new group scheduler #56444
Conversation
你的PR提交成功,感谢你对开源项目的贡献! |
Sorry to inform you that 1532568's CIs have passed for more than 7 days. To prevent PR conflicts, you need to re-run all CIs manually. |
Sorry to inform you that 0763775's CIs have passed for more than 7 days. To prevent PR conflicts, you need to re-run all CIs manually. |
Sorry to inform you that 07f5674's CIs have passed for more than 7 days. To prevent PR conflicts, you need to re-run all CIs manually. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
paddle/cinn/auto_schedule/search_space/auto_gen_rule/reduction_factoring.cc
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
* [CINN] Add new group scheduler * [Fix] Fix priority of bind loops and output node * [Fix] Set is_reduce_axis for Argmin and Argmax * [Fix] Add producer consumer relation to Argmax * [Fix] Add NodePriority and skip ExternCall block * [Fix] Add prohibit schedule block * [Fix] schedule block graph test * [Fix] Skip external calls while auto inline * [Fix] Fix relationship of block with Call nodes * [CINN] Use common reduce while loop fusion * [Fix] ScheduleBlockGraph unittest * [Fix] reduction unittests * [Fix] Skip group schedule of NonFusible nodes * [Fix] Incomplete AutoSimplify * [Fix] Adapt to new GraphCompilers * [Fix] schedule block graph unittest * [Fix] loop reorder to match master * [Fix] elementwise loop alignment * [Fix] cuda axis coeff and range * [Fix] Add conditions to schedules related to cuda * [Fix] fix conflict * fix conflict * [Fix] fix conflict * Integrate ReductionFactoring * [CINN] Upgrade ReductionReduction rule * resolve conflict * fix tensor in wb-block * add reduce type in FactorizeReduction * [CINN] Add cross thread reduction replacer * Integrate cross thread reduction * add anonymous namespace * fix reduction factoring unittest * Prohibit group schedule on single op * Revert "Prohibit group schedule on single op" This reverts commit 13ddff9. * fix reduction factoring unittest * fix reduction factoring unittest * open group scheduler flag * fix node priority * fix cross thread reduction on cpu * fix reduction_factoring with pre Fuse * Revert "open group scheduler flag" This reverts commit 192ccc1. * Revert "fix reduction_factoring with pre Fuse" This reverts commit 31889eb. * simplify log of range * add a TODO * fix x86 reduction bug
* [CINN] Add new group scheduler * [Fix] Fix priority of bind loops and output node * [Fix] Set is_reduce_axis for Argmin and Argmax * [Fix] Add producer consumer relation to Argmax * [Fix] Add NodePriority and skip ExternCall block * [Fix] Add prohibit schedule block * [Fix] schedule block graph test * [Fix] Skip external calls while auto inline * [Fix] Fix relationship of block with Call nodes * [CINN] Use common reduce while loop fusion * [Fix] ScheduleBlockGraph unittest * [Fix] reduction unittests * [Fix] Skip group schedule of NonFusible nodes * [Fix] Incomplete AutoSimplify * [Fix] Adapt to new GraphCompilers * [Fix] schedule block graph unittest * [Fix] loop reorder to match master * [Fix] elementwise loop alignment * [Fix] cuda axis coeff and range * [Fix] Add conditions to schedules related to cuda * [Fix] fix conflict * fix conflict * [Fix] fix conflict * Integrate ReductionFactoring * [CINN] Upgrade ReductionReduction rule * resolve conflict * fix tensor in wb-block * add reduce type in FactorizeReduction * [CINN] Add cross thread reduction replacer * Integrate cross thread reduction * add anonymous namespace * fix reduction factoring unittest * Prohibit group schedule on single op * Revert "Prohibit group schedule on single op" This reverts commit 13ddff9. * fix reduction factoring unittest * fix reduction factoring unittest * open group scheduler flag * fix node priority * fix cross thread reduction on cpu * fix reduction_factoring with pre Fuse * Revert "open group scheduler flag" This reverts commit 192ccc1. * Revert "fix reduction_factoring with pre Fuse" This reverts commit 31889eb. * simplify log of range * add a TODO * fix x86 reduction bug
PR types
New features
PR changes
Others
Description
card-74457
Add GroupScheduler to schedule fusion groups.
Its responsibility is to perform loop alignment, automatic inline, automatic loop fusion, and optimize the storage location of intermediate variables.