-
Notifications
You must be signed in to change notification settings - Fork 15.6k
[MLIR][OpenMP] Improve omp.section block arguments handling #110266
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
Conversation
|
@llvm/pr-subscribers-mlir-openmp @llvm/pr-subscribers-mlir Author: Sergio Afonso (skatrak) ChangesThe This patch updates the definition of this operation introducing the Full diff: https://github.com/llvm/llvm-project/pull/110266.diff 4 Files Affected:
|
tblah
left a comment
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.
Thanks!
5849d25 to
a821f44
Compare
783a6f9 to
d6920f4
Compare
mjklemm
left a comment
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
3cb071d to
32735e3
Compare
d6920f4 to
4bc376d
Compare
32735e3 to
ce1c270
Compare
The `omp.section` operation is an outlier in that the block arguments it has are defined by clauses on the required parent `omp.sections` operation. This patch updates the definition of this operation introducing the `BlockArgOpenMPOpInterface` to simplify the handling and verification of these block arguments, implemented based on the parent `omp.sections`.
4bc376d to
2ebd822
Compare
) The `omp.section` operation is an outlier in that the block arguments it has are defined by clauses on the required parent `omp.sections` operation. This patch updates the definition of this operation introducing the `BlockArgOpenMPOpInterface` to simplify the handling and verification of these block arguments, implemented based on the parent `omp.sections`.
The
omp.sectionoperation is an outlier in that the block arguments it has are defined by clauses on the required parentomp.sectionsoperation.This patch updates the definition of this operation introducing the
BlockArgOpenMPOpInterfaceto simplify the handling and verification of these block arguments, implemented based on the parentomp.sections.