We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5305bd commit 183b795Copy full SHA for 183b795
mlir/lib/Dialect/Linalg/Transforms/TilingInterfaceImpl.cpp
@@ -927,9 +927,9 @@ struct PackOpTiling
927
// iterations that only write padding values to the whole tile. The
928
// consumer fusion is driven by the source, so it is not possible to map
929
// an empty slice to the tile.
930
- bool needExtraPadding = ShapedType::isDynamic(destDimSize) ||
931
- !cstInnerSize ||
932
- destDimSize * cstInnerSize.value() != srcDimSize;
+ bool needExtraPadding =
+ ShapedType::isDynamic(destDimSize) || !cstInnerSize ||
+ destDimSize * cstInnerSize.value() != srcDimSize;
933
// Prioritize the case that the op already says that it does not need
934
// padding.
935
if (!packOp.getPaddingValue())
0 commit comments