diff --git a/mlir/include/mlir/Dialect/OpenMP/OpenMPOps.td b/mlir/include/mlir/Dialect/OpenMP/OpenMPOps.td --- a/mlir/include/mlir/Dialect/OpenMP/OpenMPOps.td +++ b/mlir/include/mlir/Dialect/OpenMP/OpenMPOps.td @@ -236,8 +236,10 @@ AllTypesMatch<["lowerBound", "upperBound", "step"]>]> { let summary = "distribute loop construct"; let description = [{ - The distribute construct specifies that the iterations of one or more loop will be executed by the initial teams in the context of their implicit tasks. - The iterations are distributed across the initial threads of all initial teams that execute the teams region to which the distribute region binds. + The distribute construct specifies that the iterations of one or more loop + will be executed by the initial teams in the context of their implicit tasks. + The iterations are distributed across the initial threads of all initial teams + that execute the teams region to which the distribute region binds. The distribute loop construct specifies that the iterations of the loop(s) will be executed in parallel by threads in the current context. These @@ -247,8 +249,8 @@ `inclusive` attribute is specified then the upper bound is also included. - `private_var`, `firstprivate_var`, and `lastprivate_var` arguments are variadic list of operands that specify the data sharing - attributes of the list of values + `private_var`, `firstprivate_var`, and `lastprivate_var` arguments are variadic + list of operands that specify the data sharing attributes of the list of values The optional `dist_schedule_var` attribute specifies the schedule for this loop, determining how the loop is distributed across the parallel threads. @@ -262,11 +264,11 @@ let arguments = (ins Variadic:$lowerBound, Variadic:$upperBound, Variadic:$step, - Variadic:$private_var, + Variadic:$private_var, Variadic:$firstprivate_var, Variadic:$lastprivate_var, OptionalAttr:$dist_schedule_var, - Optional:$schedule_chunk, + Optional:$schedule_chunk, Confined, [IntMinValue<0>]>:$collapse, Variadic:$allocate, Variadic:$allocators,