Skip to content

Commit 183b795

Browse files
committed
format
Signed-off-by: hanhanW <[email protected]>
1 parent a5305bd commit 183b795

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

mlir/lib/Dialect/Linalg/Transforms/TilingInterfaceImpl.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -927,9 +927,9 @@ struct PackOpTiling
927927
// iterations that only write padding values to the whole tile. The
928928
// consumer fusion is driven by the source, so it is not possible to map
929929
// an empty slice to the tile.
930-
bool needExtraPadding = ShapedType::isDynamic(destDimSize) ||
931-
!cstInnerSize ||
932-
destDimSize * cstInnerSize.value() != srcDimSize;
930+
bool needExtraPadding =
931+
ShapedType::isDynamic(destDimSize) || !cstInnerSize ||
932+
destDimSize * cstInnerSize.value() != srcDimSize;
933933
// Prioritize the case that the op already says that it does not need
934934
// padding.
935935
if (!packOp.getPaddingValue())

0 commit comments

Comments
 (0)