Skip to content

Commit 31f87cd

Browse files
Applied remarks.
1 parent 78165d7 commit 31f87cd

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

mlir/include/mlir/Dialect/OpenMP/OpenMPEnums.td

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -234,15 +234,16 @@ def TargetRegionFlagsNoLoop : I32BitEnumAttrCaseBit<"no_loop", 3>;
234234

235235
def TargetRegionFlags : OpenMP_BitEnumAttr<
236236
"TargetRegionFlags",
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.", [
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.}], [
246247
TargetRegionFlagsNone,
247248
TargetRegionFlagsGeneric,
248249
TargetRegionFlagsSpmd,

0 commit comments

Comments
 (0)