File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
mlir/include/mlir/Dialect/OpenMP Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -573,7 +573,7 @@ def LoopTransformationInterface : OpInterface<"LoopTransformationInterface"> {
573573 InterfaceMethod<
574574 /*description=*/[{
575575 Get the indices for the arguments that represent CanonicalLoopInfo
576- generatees, i.e. loops that created by this operation.
576+ generatees, i.e. loops that are emitted by this operation.
577577 }],
578578 /*returnType=*/ "std::pair<unsigned, unsigned>",
579579 /*methodName=*/ "getGenerateesODSOperandIndexAndLength",
@@ -589,7 +589,7 @@ def LoopTransformationInterface : OpInterface<"LoopTransformationInterface"> {
589589 /*args=*/ (ins),
590590 /*methodBody=*/ "",
591591 /*defaultImpl=*/[{
592- return $_op.getApplyeesODSOperandIndexAndLength().second;
592+ return $_op.getApplyeesODSOperandIndexAndLength().second;
593593 }]
594594 >,
595595
@@ -602,13 +602,13 @@ def LoopTransformationInterface : OpInterface<"LoopTransformationInterface"> {
602602 /*args=*/ (ins),
603603 /*methodBody=*/ "",
604604 /*defaultImpl=*/[{
605- return $_op.getGenerateesODSOperandIndexAndLength().second;
605+ return $_op.getGenerateesODSOperandIndexAndLength().second;
606606 }]
607607 >,
608608
609609 InterfaceMethod<
610610 /*description=*/[{
611- Return whether the provided operand is a generatee of this operation.
611+ Return whether the provided operand is an applyee of this operation.
612612 }],
613613 /*returnType=*/ "unsigned",
614614 /*methodName=*/ "isApplyee",
You can’t perform that action at this time.
0 commit comments