We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26dc765 commit 0d77978Copy full SHA for 0d77978
flang/docs/OpenACC.md
@@ -25,3 +25,10 @@ local:
25
logical expression.
26
* `!$acc routine` directive can be placed at the top level.
27
* `!$acc cache` directive accepts scalar variable.
28
+
29
+## Remarks about incompatibilities with other implementations
30
+* Array element references in the data clauses are equivalent to array sections
31
+ consisting of this single element, i.e. `copyin(a(n))` is equivalent to
32
+ `copyin(a(n:n))`. Some other implementations have treated it as
33
+ `copyin(a(:n))`, which does not correspond to OpenACC spec – Flang does not
34
+ support this interpretation of an array element reference.
0 commit comments