File tree Expand file tree Collapse file tree 1 file changed +9
-10
lines changed
mlir/include/mlir/Dialect/OpenMP Expand file tree Collapse file tree 1 file changed +9
-10
lines changed Original file line number Diff line number Diff line change @@ -234,16 +234,15 @@ def TargetRegionFlagsNoLoop : I32BitEnumAttrCaseBit<"no_loop", 3>;
234234
235235def TargetRegionFlags : OpenMP_BitEnumAttr<
236236 "TargetRegionFlags",
237- [{ These flags describe properties of the target kernel.
238-
239- TargetRegionFlagsGeneric - denotes generic kernel.
240- TargetRegionFlagsSpmd - denotes SPMD kernel.
241- TargetRegionFlagsNoLoop - denotes kernel where
242- num_teams * num_threads >= loop_trip_count. It allows the conversion
243- of loops into sequential code by ensuring that each team/thread
244- executes at most one iteration.
245- TargetRegionFlagsTripCount - checks if the loop trip count should be
246- calculated.}], [
237+ "These flags describe properties of the target kernel. "
238+ "TargetRegionFlagsGeneric - denotes generic kernel. "
239+ "TargetRegionFlagsSpmd - denotes SPMD kernel. "
240+ "TargetRegionFlagsNoLoop - denotes kernel where "
241+ "num_teams * num_threads >= loop_trip_count. It allows the conversion "
242+ "of loops into sequential code by ensuring that each team/thread "
243+ "executes at most one iteration. "
244+ "TargetRegionFlagsTripCount - checks if the loop trip count should be "
245+ "calculated.", [
247246 TargetRegionFlagsNone,
248247 TargetRegionFlagsGeneric,
249248 TargetRegionFlagsSpmd,
You can’t perform that action at this time.
0 commit comments