Depends On D93086
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
mlir/lib/Dialect/Linalg/Analysis/DependenceAnalysis.cpp | ||
---|---|---|
164 ↗ | (On Diff #316154) | auto |
165 ↗ | (On Diff #316154) | I think src won't be nullptr, so if (definingOp == src) is enough? |
176–177 ↗ | (On Diff #316154) | s/mixe/mixed btw, is the assertion correct? After reading the message, I would expect either src.hasTensorSemantics() && dst.hasBufferSemantics() or a vice versa check. |
mlir/test/Dialect/Linalg/fusion-tensor-pattern.mlir | ||
97 | Do you intend to test matmul + add + matmul? I only see matmul + add in the function. |
mlir/test/Dialect/Linalg/fusion-tensor-pattern.mlir | ||
---|---|---|
97 | Oh I see, thanks! |
Comment Actions
Rebase on top of enhancements to LinalgDependenceGraph allowing
dependence tracking through results.
Do you intend to test matmul + add + matmul? I only see matmul + add in the function.