Details
- Reviewers
herhut - Commits
- rG0955d8df0635: [mlir] Add gpu.memcpy op.
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
mlir/include/mlir/Dialect/GPU/GPUOps.td | ||
---|---|---|
883 | SameOperandsAndResultShape and SameOperandsAndResultElementType should make the custom verifier redundant. | |
901 | This syntax is somewhat unprecedented, to have types intermixed with operands. I think I would prefer something like gpu.memcpy %dst %src : type, type We could be extra verbose and do gpu.memcopy %src to %dst : type, type |
mlir/include/mlir/Dialect/GPU/GPUOps.td | ||
---|---|---|
901 | Hyper nit: Remove extra space in front of comma. |
SameOperandsAndResultShape and SameOperandsAndResultElementType should make the custom verifier redundant.