[Mlir-commits] [mlir] [mlir] Add ContractionOpInterface utility functions for vector matrix multiplication (PR #68945)

Jerry Wu llvmlistbot at llvm.org
Mon Oct 16 13:14:50 PDT 2023


================
@@ -86,6 +86,39 @@ def LinalgContractionOpInterface : OpInterface<"ContractionOpInterface"> {
     /*methodBody=*/[{
         return mlir::isRowMajorBatchMatmul($_op.getIndexingMaps());
     }]>,
+    InterfaceMethod<
+    /*desc=*/[{
+      Returns whether the given op has indexing maps that correspond to a
+      vector-matrix multiplication.
+    }],
+    /*retTy=*/"bool",
+    /*methodName=*/"isVecmat",
----------------
pzread wrote:

I see. If there is no confusion the current naming sounds good to me

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


More information about the Mlir-commits mailing list