aboutsummaryrefslogtreecommitdiff
path: root/mlir
diff options
context:
space:
mode:
authorSergio Afonso <safonsof@amd.com>2024-03-14 12:51:43 +0000
committerGitHub <noreply@github.com>2024-03-14 12:51:43 +0000
commit7252d22803c32bf6421e45dcefe6ea1fa51ac774 (patch)
treeb2203fc6c16b64f91b56e6cb7c90f0a47afef631 /mlir
parent72d300adad4022b150c24e4a44488d3b9334e999 (diff)
downloadllvm-7252d22803c32bf6421e45dcefe6ea1fa51ac774.zip
llvm-7252d22803c32bf6421e45dcefe6ea1fa51ac774.tar.gz
llvm-7252d22803c32bf6421e45dcefe6ea1fa51ac774.tar.bz2
[OpenMP][MLIR] NFC: Remove trailing whitespace (#85213)
Diffstat (limited to 'mlir')
-rw-r--r--mlir/include/mlir/Dialect/OpenMP/OpenMPOps.td14
-rw-r--r--mlir/include/mlir/Dialect/OpenMP/OpenMPOpsInterfaces.td6
2 files changed, 10 insertions, 10 deletions
diff --git a/mlir/include/mlir/Dialect/OpenMP/OpenMPOps.td b/mlir/include/mlir/Dialect/OpenMP/OpenMPOps.td
index 0bd402d..dcf04ab 100644
--- a/mlir/include/mlir/Dialect/OpenMP/OpenMPOps.td
+++ b/mlir/include/mlir/Dialect/OpenMP/OpenMPOps.td
@@ -575,7 +575,7 @@ def WsLoopOp : OpenMP_Op<"wsloop", [AttrSizedOperandSegments,
The optional `order` attribute specifies which order the iterations of the
associate loops are executed in. Currently the only option for this
attribute is "concurrent".
-
+
The optional `byref` attribute indicates that reduction arguments should be
passed by reference.
}];
@@ -1347,10 +1347,10 @@ def MapInfoOp : OpenMP_Op<"map_info", [AttrSizedOperandSegments]> {
- `var_type`: The type of the variable to copy.
- `var_ptr_ptr`: Used when the variable copied is a member of a class, structure
or derived type and refers to the originating struct.
- - `members`: Used to indicate mapped child members for the current MapInfoOp,
- represented as other MapInfoOp's, utilised in cases where a parent structure
- type and members of the structure type are being mapped at the same time.
- For example: map(to: parent, parent->member, parent->member2[:10])
+ - `members`: Used to indicate mapped child members for the current MapInfoOp,
+ represented as other MapInfoOp's, utilised in cases where a parent structure
+ type and members of the structure type are being mapped at the same time.
+ For example: map(to: parent, parent->member, parent->member2[:10])
- `bounds`: Used when copying slices of array's, pointers or pointer members of
objects (e.g. derived types or classes), indicates the bounds to be copied
of the variable. When it's an array slice it is in rank order where rank 0
@@ -1391,7 +1391,7 @@ def MapInfoOp : OpenMP_Op<"map_info", [AttrSizedOperandSegments]> {
// 2.14.2 target data Construct
//===---------------------------------------------------------------------===//
-def Target_DataOp: OpenMP_Op<"target_data", [AttrSizedOperandSegments,
+def Target_DataOp: OpenMP_Op<"target_data", [AttrSizedOperandSegments,
MapClauseOwningOpInterface]>{
let summary = "target data construct";
let description = [{
@@ -1449,7 +1449,7 @@ def Target_DataOp: OpenMP_Op<"target_data", [AttrSizedOperandSegments,
//===---------------------------------------------------------------------===//
def Target_EnterDataOp: OpenMP_Op<"target_enter_data",
- [AttrSizedOperandSegments,
+ [AttrSizedOperandSegments,
MapClauseOwningOpInterface]>{
let summary = "target enter data construct";
let description = [{
diff --git a/mlir/include/mlir/Dialect/OpenMP/OpenMPOpsInterfaces.td b/mlir/include/mlir/Dialect/OpenMP/OpenMPOpsInterfaces.td
index ed086d3..2e37384 100644
--- a/mlir/include/mlir/Dialect/OpenMP/OpenMPOpsInterfaces.td
+++ b/mlir/include/mlir/Dialect/OpenMP/OpenMPOpsInterfaces.td
@@ -34,8 +34,8 @@ def OutlineableOpenMPOpInterface : OpInterface<"OutlineableOpenMPOpInterface"> {
def MapClauseOwningOpInterface : OpInterface<"MapClauseOwningOpInterface"> {
let description = [{
OpenMP operations which own a list of omp::MapInfoOp's implement this interface
- to allow generic access to deal with map operands to more easily manipulate
- this class of operations.
+ to allow generic access to deal with map operands to more easily manipulate
+ this class of operations.
}];
let cppNamespace = "::mlir::omp";
@@ -45,7 +45,7 @@ def MapClauseOwningOpInterface : OpInterface<"MapClauseOwningOpInterface"> {
(ins), [{
return $_op.getMapOperands();
}]>,
- InterfaceMethod<"Get mutable map operands", "::mlir::MutableOperandRange",
+ InterfaceMethod<"Get mutable map operands", "::mlir::MutableOperandRange",
"getMapOperandsMutable",
(ins), [{
return $_op.getMapOperandsMutable();