We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7df28fd commit 095070fCopy full SHA for 095070f
mlir/include/mlir/Dialect/Linalg/IR/LinalgInterfaces.td
@@ -54,6 +54,14 @@ def LinalgContractionOpInterface : OpInterface<"ContractionOpInterface"> {
54
return $_op.getOperation()->getOperand(1);
55
}]>,
56
InterfaceMethod<
57
+ /*desc=*/"Returns the result value.",
58
+ /*retTy=*/"OpResult",
59
+ /*methodName=*/"res",
60
+ /*args=*/(ins),
61
+ /*methodBody=*/[{
62
+ return $_op.getOperation()->getResult(1);
63
+ }]>,
64
+ InterfaceMethod<
65
/*desc=*/[{
66
Returns whether the given op has indexing maps that correspond to a
67
row-major matmul operation.
0 commit comments