[Mlir-commits] [mlir] [mlir][Interfaces] Add interface methods to allow reifying single result/single dim of result. (PR #162924)
Matthias Springer
llvmlistbot at llvm.org
Thu Oct 23 05:52:32 PDT 2025
================
@@ -344,6 +344,103 @@ LogicalResult OpWithResultShapePerDimInterfaceOp::reifyResultShapes(
return success();
}
+//===----------------------------------------------------------------------===//
+// ReifyShapedTypeUsingReifyShapeOfResultOp
+//===----------------------------------------------------------------------===//
+
+LogicalResult ReifyShapedTypeUsingReifyShapeOfResultOp::reifyResultShapes(
+ OpBuilder &builder, ReifiedRankedShapedTypeDims &shapes) {
+ return failure();
----------------
matthias-springer wrote:
Will this implementation eventually be dropped? (Same for the other `return failure()` overrides.)
https://github.com/llvm/llvm-project/pull/162924
More information about the Mlir-commits
mailing list