[Openmp-commits] [openmp] [OpenMP] Introduce support for OMPX extensions and taskgraph frontend (PR #66919)
Alexey Bataev via Openmp-commits
openmp-commits at lists.llvm.org
Wed Sep 20 09:58:18 PDT 2023
================
@@ -2729,6 +2729,55 @@ class OMPTaskwaitDirective : public OMPExecutableDirective {
}
};
+/// This represents '#pragma ompx taskgraph' directive.
+/// Available with OMPX extensions.
+///
+/// \code
+/// #pragma ompx taskgraph
+/// \endcode
+///
+class OMPTaskgraphDirective : public OMPExecutableDirective {
----------------
alexey-bataev wrote:
```
class OMPTaskgraphDirective final : public OMPExecutableDirective {
```
https://github.com/llvm/llvm-project/pull/66919
More information about the Openmp-commits
mailing list