Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
mlir/lib/Dialect/Linalg/Transforms/ConvertToDestinationStyle.cpp | ||
---|---|---|
371–375 | I suppose it's not possible to change the argument order of the linalg function? |
mlir/lib/Dialect/Linalg/Transforms/ConvertToDestinationStyle.cpp | ||
---|---|---|
371–375 | All functional-stye APIs should follow: fun(builder, optional_loc, rest) to be consistent with all the builder APIs and existing transform APIs. The matchAndRewrite APIs are a special flower follow a different convention: matchAndRewrite(rest, PatternRewriter &rewriter) This convention is only in Rewrite/Conversion matchAndRewrite |
I suppose it's not possible to change the argument order of the linalg function?