Skip to content

Commit 8064863

Browse files
committed
td desc fix
1 parent 7d82d43 commit 8064863

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,11 @@ def Linalg_PackOp : Linalg_RelayoutOp<"pack", [
204204
// Method to get the Shape of the result based on the input shape, inner
205205
// tiles, position of the inner tiles (innerDimsPos) and interchange vector
206206
// of outer loops (outerDimsPerm).
207+
208+
/// Helper for PackOp::{getResultShape, inferPackedTensorType, inferPackedMemRefType}.
209+
/// Returns the shape of the packed type. Having a shared helper helps
210+
/// implement these three methods in a way that ensures
211+
/// that they agree on which dimensions are dynamic.
207212
static SmallVector<int64_t> inferPackedShape(ArrayRef<int64_t> inputShape,
208213
ArrayRef<int64_t> innerTileSizes, ArrayRef<int64_t> innerDimsPos,
209214
ArrayRef<int64_t> outerDimsPerm = {});

0 commit comments

Comments
 (0)