[Mlir-commits] [mlir] fb33b40 - [MLIR][Linalg] Remove `TiledLoops` from tiling options
lorenzo chelini
llvmlistbot at llvm.org
Mon Aug 8 09:25:03 PDT 2022
Author: lorenzo chelini
Date: 2022-08-08T18:24:58+02:00
New Revision: fb33b406df909c90891bf2c50da3d38f82d7d2cd
URL: https://github.com/llvm/llvm-project/commit/fb33b406df909c90891bf2c50da3d38f82d7d2cd
DIFF: https://github.com/llvm/llvm-project/commit/fb33b406df909c90891bf2c50da3d38f82d7d2cd.diff
LOG: [MLIR][Linalg] Remove `TiledLoops` from tiling options
TiledLoopOp has been removed in: https://github.com/llvm/llvm-project/commit/1a829d2d06958abf09bb6aff81120959206887f6
Reviewed By: ftynse
Differential Revision: https://reviews.llvm.org/D131383
Added:
Modified:
mlir/include/mlir/Dialect/Linalg/Utils/Utils.h
Removed:
################################################################################
diff --git a/mlir/include/mlir/Dialect/Linalg/Utils/Utils.h b/mlir/include/mlir/Dialect/Linalg/Utils/Utils.h
index 4b81ffecb43e6..b6ae6e169666b 100644
--- a/mlir/include/mlir/Dialect/Linalg/Utils/Utils.h
+++ b/mlir/include/mlir/Dialect/Linalg/Utils/Utils.h
@@ -162,8 +162,7 @@ getReassociationMapForFoldingUnitDims(ArrayRef<OpFoldResult> mixedSizes);
enum class LinalgTilingLoopType {
Loops = 0,
AffineLoops = 1,
- ParallelLoops = 2,
- TiledLoops = 3,
+ ParallelLoops = 2
};
/// Checks whether the specific `producer` is the last write to exactly the
More information about the Mlir-commits
mailing list