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 0c59f51 commit 0f9f0a4Copy full SHA for 0f9f0a4
mlir/lib/Dialect/Linalg/Transforms/Fusion.cpp
@@ -782,12 +782,6 @@ FusableOpDependencesTy mlir::linalg::findAllFusableDependences(
782
return fusableDependences;
783
}
784
785
-static bool isZero(Value v) {
786
- if (auto cst = v.getDefiningOp<ConstantIndexOp>())
787
- return cst.getValue() == 0;
788
- return false;
789
-}
790
-
791
/// Tile the fused loops in the root operation, by setting the tile sizes for
792
/// all other loops to zero (those will be tiled later).
793
static Optional<TiledLinalgOp> tileRootOperation(
0 commit comments