[Mlir-commits] [mlir] [mlir] Convert TensorType and BaseMemRefType to interfaces (PR #133053)

Andrei Golubev llvmlistbot at llvm.org
Wed Mar 26 04:39:20 PDT 2025


================
@@ -77,9 +77,9 @@ struct CastOpInterface
     // Case 3: Ranked tensor -> ranked tensor. The offsets and strides do not
     // change.
     auto rankedResultType = cast<RankedTensorType>(castOp.getType());
-    return MemRefType::get(
+    return llvm::cast<BaseMemRefType>(MemRefType::get(
----------------
andrey-golubev wrote:

so: for now, i just switched from `mlir::cast<X>(...)` to `X(...)` + extended the tests to verify that `X x = y;` works.

https://github.com/llvm/llvm-project/pull/133053


More information about the Mlir-commits mailing list