[Mlir-commits] [mlir] [MLIR][Linalg] Remove matmul_transpose variants (PR #147961)
Jakub Kuderski
llvmlistbot at llvm.org
Mon Jul 14 08:14:44 PDT 2025
================
@@ -144,4 +144,126 @@ std::pair<int64_t, int64_t> getFmrFromWinogradConv2DFmr(WinogradConv2DFmr fmr);
#define GET_OP_CLASSES
#include "mlir/Dialect/Linalg/IR/LinalgRelayoutOps.h.inc"
+namespace mlir::linalg {
+
+/// Specialization of `linalg.matmul` op that has a transpose map on A
+class MatmulTransposeAOp : public MatmulOp {
----------------
kuhar wrote:
Should we immediately mark this as deprecated with `LLVM_DEPRECATED`? Same for the other transition classes below. IIUC, the intention is for this to be short-lived.
https://github.com/llvm/llvm-project/pull/147961
More information about the Mlir-commits
mailing list