[Mlir-commits] [mlir] [mlir][linalg] Introduce transpose semantic to 'linalg.matmul' ops. (PR #104783)

Renato Golin llvmlistbot at llvm.org
Wed Oct 9 06:14:24 PDT 2024


================
@@ -1161,9 +1202,11 @@ LogicalResult mlir::linalg::detail::verifyStructuredOpInterface(Operation *op) {
            << ") to be equal to the number of input/output operands ("
            << linalgOp->getNumOperands() << ")";
 
+  bool hasBroadcast = false;
+  MatmulOp matmulOp = dyn_cast<MatmulOp>(op);
----------------
rengolin wrote:

The call is now on `linalgOp` not `matmulOp` any more.

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


More information about the Mlir-commits mailing list