Skip to content

Commit

Permalink
[TileSwizzle] Make the dump and variable name match. (NFC) (iree-org#…
Browse files Browse the repository at this point in the history
…18821)

The output field is permutation, but not swizzle. The revision replaces
the string with field's name.
  • Loading branch information
hanhanW authored Oct 17, 2024
1 parent 0c6a151 commit 4b32a1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/src/iree/compiler/Codegen/Common/TileSwizzle.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ llvm::raw_ostream &operator<<(llvm::raw_ostream &os,
const TileSwizzle &swizzle) {
os << "{expandShape = [";
llvm::interleaveComma(swizzle.expandShape, os);
os << "], swizzle = [";
os << "], permutation = [";
llvm::interleaveComma(swizzle.permutation, os);
os << "]}";
return os;
Expand Down

0 comments on commit 4b32a1d

Please sign in to comment.