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
[OpenACC] Switch Clang to use the Flang 'appertainment' rules for clauses
The Flang implemenation of OpenACC uses a .td file in the llvm/Frontend
directory to determine appertainment in 4 categories:
-Required: If this list has items in it, the directive requires at least
1 of these be present.
-AllowedExclusive: Items on this list are all allowed, but only 1 from
the list may be here (That is, they are exclusive of eachother).
-AllowedOnce: Items on this list are all allowed, but may not be
duplicated.
Allowed: Items on this list are allowed. Note th at the actual list of
'allowed' is all 4 of these lists together.
This is a draft patch to swtich Clang over to use those tables. Surgery
to get this to happen in Clang Sema was somewhat reasonable. However,
some gaps in the implementations are obvious, the existing clang
implementation disagrees with the Flang interpretation of it. SO, we're
keeping a task list here based on what gets discovered.
Changes to Clang:
- [ ] Switch 'directive-kind' enum conversions to use tablegen
- [ ] Switch 'clause-kind' enum conversions to use tablegen
- [x] Investigate 'parse' test differences to see if any new
disagreements arise.
- [x] Clang/Flang disagree as to whether 'collapse' can be multiple
times on a loop. Further research showed no prose to limit this, and
the comment on the clang implementation said "no good reason to allow",
so no standards justification.
- [x] Clang/Flang disagree whether 'num_gangs' can appear >1 on a
compute/combined construct. This ended up being an unjustified
restriction.
- [x] Clang/Flang disagree as to the list of required clauses on a 'set'
construct. My research shows that Clang mistakenly included 'if' in the
list, and that it should be just 'default_async', 'device_num', and
'device_type'.
- [x] Order of 'at least one of' diagnostic has changed. Tests were
updated.
Changes to Flang:
- [ ] Clang/Flang disgree on whether 'atomic' can take an 'if' clause.
This was added in OpenACC3.3_Next
Changes that need discussion/research:
- [ ] Clang/Flang disagree on whether 'init'/'shutdown' can have
multiple 'device_type' clauses. I believe there is no supporting prose
for this limitation.
- [ ] Clang/Flang disagree on whether 'init'/'shutdown' can have
multiple 'device_num' clauses. I believe there is no supporting prose
for this limitation.,
- [ ] Clang/Flang disagree on whether 'init'/'shutdown' can have
multiple 'if' clauses. I believe there is no supporting prose for this
limitation.
- [ ] Clang/Flang disagree on whether 'bind' can appear >1 on a
'routine'. I believe line 3096 (A bind clause may not bind to a routine
name that has a visible bind clause) makes this limitation.
- [ ] Clang/Flang disagree on whether 'gang', 'worker', 'vector', 'seq'
may appear multiple times on a 'routine'. Line 3080(Exactly one of the
gang, worker, vector, or seq clauses must appear). It is the flang
opinion that it means once-per-'device_type' (and once before each
device_type).
- [ ] Clang/Flang disagree as to whether 'tile' is permitted more than
once on a 'loop' or combined constructs (Flang prohibits >1). I see no
justification for this in the standard.
- [ ] Clang/Flang disagree whether 'loop' or combined constructs can
have 'seq', 'independent', or 'auto' with a 'device_type' clause. I see
no prose to suggest this limitation.
- [ ] Clang/Flang disagree whether 'gang', 'worker', or 'vector' may
appear on the same construct as a 'seq' on a 'loop' or 'combined'. There
is prose for this in 2022: (a gang, worker, or vector clause may not
appear if a 'seq' clause appears).
- [ ] Clang/Flang disagree on clause list that may appear with a
'auto'/'independent', or 'seq' clause. for a 'loop' or 'combined'.
Flang seems to be rejecting everything, which doesn't seem correct to
me, as I can find no supporting prose. This MIGHT be a bug/difference in
implementation?
- [ ] Clang/Flang disagree whether 'num_gangs' can appear >1 on a
'kernels' construct. Line 1173 (On a kernels construct, the num_gangs
clause must have a single argument) justifies limiting on a per-clause
basis, but doesn't do so for multiple num_gangs. ALSO: IF we decide such
a restriction means this, it needs to be applied to `kernels loop` as
well.
- [ ] Clang/Flang disagree whether 'finalize' and 'if_present' should be
allowed >1 times on a 'exit_data' construct. I see no prose to support
this?
- [ ] Clang/Flang disagree whether 'seq' and 'self' can appear on the
same serial-loop construct. I see no prose to support this?
0 commit comments