Skip to content

Commit 33deb28

Browse files
committed
[MLIR][Linalg] Improve documentation in LinalgInterfaces.td (NFC)
ShapeType::kDynamic -> ShapedType::kDynamic
1 parent 5d7f84e commit 33deb28

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mlir/include/mlir/Dialect/Linalg/IR/LinalgInterfaces.td

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -713,7 +713,7 @@ def LinalgStructuredInterface : OpInterface<"LinalgOp"> {
713713
/*desc=*/[{
714714
Like `getShape`, but only returns statically-known information, without
715715
generating any new IR. For each shape dimension, returns >=0 if that
716-
dimension is statically known, or ShapeType::kDynamic otherwise.
716+
dimension is statically known, or ShapedType::kDynamic otherwise.
717717
}],
718718
/*retTy=*/"SmallVector<int64_t>",
719719
/*methodName=*/"getStaticShape",
@@ -730,7 +730,7 @@ def LinalgStructuredInterface : OpInterface<"LinalgOp"> {
730730
/*desc=*/[{
731731
Returns the statically-known loop ranges. Composes
732732
`getShapesToLoopsMap()` with the result of `getStaticShape`.
733-
Returns ShapeType::kDynamic for non-statically-known loop ranges.
733+
Returns ShapedType::kDynamic for non-statically-known loop ranges.
734734
This is expected to be called by a valid Linalg op
735735
}],
736736
/*retTy=*/"SmallVector<int64_t, 4>",

0 commit comments

Comments
 (0)