[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
================
@@ -60,6 +60,8 @@ class CGOpenMPRegionInfo : public CodeGenFunction::CGCapturedStmtInfo {
ParallelOutlinedRegion,
/// Region with outlined function for standalone 'task' directive.
TaskOutlinedRegion,
+ /// Region with outlined function for standalone 'taskgraph' directive.
+ TaskgraphOutlinedRegion,
----------------
alexey-bataev wrote:
Do you need to generate a function out of the structured block or just use one from the task? If it ends up with just decorating runtime calls, no need to capture anything and create captured region
https://github.com/llvm/llvm-project/pull/66919
More information about the Openmp-commits
mailing list