Skip to content

Commit 0fdd023

Browse files
committed
format
Signed-off-by: hanhanW <[email protected]>
1 parent 6c7fd89 commit 0fdd023

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -203,8 +203,8 @@ getPackedOuterShapeWithoutTransposition(OpTy packOrUnPack) {
203203
static_assert(llvm::is_one_of<OpTy, PackOp, UnPackOp>::value,
204204
"applies to only pack or unpack operations");
205205
RankedTensorType packedType = (std::is_same<OpTy, PackOp>::value)
206-
? packOrUnPack.getDestType()
207-
: packOrUnPack.getSourceType();
206+
? packOrUnPack.getDestType()
207+
: packOrUnPack.getSourceType();
208208
RankedTensorType unpackedType = (std::is_same<OpTy, PackOp>::value)
209209
? packOrUnPack.getSourceType()
210210
: packOrUnPack.getDestType();

0 commit comments

Comments
 (0)