Details
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
mlir/lib/Dialect/Linalg/IR/LinalgOps.cpp | ||
---|---|---|
422 | THere are functions in here that do the same. Might as well use those. | |
496 | Seems like the tensor.pad operation does not support the ReifyRankedShapedTypeOpInterface. Before move to tensor dialect, it did support the interface (when it was linalg.pad). Do you mind just adding the interface to the tensor.pad op back? |
Address comments
mlir/lib/Dialect/Linalg/IR/LinalgOps.cpp | ||
---|---|---|
422 | Removed, N/A anymore. | |
496 | Good point. I didn't know that we have such logic in the reify* interface already! It's still there but moved to an external model: https://github.com/llvm/llvm-project/blob/main/mlir/lib/Dialect/Tensor/IR/TensorInferTypeOpInterfaceImpl.cpp#L214. I changed the implementation to use that. |
THere are functions in here that do the same. Might as well use those.