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 3078d3f commit 57d6172Copy full SHA for 57d6172
compiler/src/iree/compiler/Codegen/Dialect/GPU/Transforms/ExpandUndistributedInnerTiles.cpp
@@ -125,7 +125,7 @@ struct ExpandInnerTileShapes final : OpRewritePattern<Codegen::InnerTiledOp> {
125
SmallVector<tensor::ExpandShapeOp> maybeExpands(numOperands, nullptr);
126
SmallVector<Value> newOperands(tiledOp.getOperands());
127
SmallVector<Attribute> newPermutations;
128
- if (*permutationsAttr) {
+ if (permutationsAttr) {
129
newPermutations = llvm::to_vector(*permutationsAttr);
130
}
131
0 commit comments