-
Notifications
You must be signed in to change notification settings - Fork 14.3k
[Clang][OpenMP] Add permutation clause #92030
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
Merged
Meinersbur
merged 27 commits into
llvm:main
from
Meinersbur:clang_openmp_reverse+interchange
Oct 9, 2024
Merged
Changes from all commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
d6057c4
[Clang][OpenMP] Fix tile/unroll on iterator- and foreach-loops
Meinersbur b15caff
[Clang][OpenMP] Add reverse directive
Meinersbur c2bd6a5
Extract out appendFlattendedStmtList
Meinersbur 0a38da3
Address review
Meinersbur 4bc8e76
Merge branch 'main' into users/meinersbur/clang_openmp_unroll-tile_fo…
Meinersbur 8eb4b90
Address review comments
Meinersbur a2cd085
Merge branch 'users/meinersbur/clang_openmp_unroll-tile_foreach' into…
Meinersbur 76634ad
[Clang][OpenMP] Add interchange directive
Meinersbur fa15956
[Clang][OpenMP] Add permutation clause
Meinersbur 7e2e69c
ge branch 'main' into users/meinersbur/clang_openmp_reverse
Meinersbur 6c88e43
Address review comment
Meinersbur 3b8f0be
Merge branch 'users/meinersbur/clang_openmp_reverse' into users/meine…
Meinersbur 7ef1d9e
Address review comment
Meinersbur e15dfd5
Merge branch 'users/meinersbur/clang_openmp_interchange' into clang_o…
Meinersbur 0039dc4
Address reviewer comments
Meinersbur 68e113b
Uppercase variable name
Meinersbur d68804f
Merge branch 'main' (early part) into users/meinersbur/clang_openmp_i…
Meinersbur d84db47
Compile fix
Meinersbur af01517
[Clang] Handle OMPInterchangeDirectiveClass in switch
Meinersbur 9011adf
Merge branch 'main' into users/meinersbur/clang_openmp_interchange
Meinersbur f730b3d
Compile fix
Meinersbur 8922a0f
Use SmallString
Meinersbur 327432a
Merge remote-tracking branch 'official/users/meinersbur/clang_openmp_…
Meinersbur 00363f8
Merge branch 'main' (early part) into clang_openmp_reverse+interchange
Meinersbur 7b97f44
Merge branch 'main' into clang_openmp_reverse+interchange
Meinersbur 8e3fa6d
Fix OMP.td
Meinersbur 6ea3bf5
Build fix
Meinersbur File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
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.
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.
?
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.
In partial template instantiations the expression may not evaluate to a constant yet because it depends on another template parameter. We cannot set
PermExpr
to nullptr because we need to preserve the expression to be evaluated at another call toActOnOpenMPPermutationClause
when the template is fully instantiated.