[Mlir-commits] [mlir] [mlir][xegpu] SIMT distribution patterns for XeGPU CreateNdTdesc, LoadNd, StoreNd and Dpas Ops. (PR #135271)
Frank Schlimbach
llvmlistbot at llvm.org
Tue Apr 29 01:41:54 PDT 2025
================
@@ -329,95 +368,97 @@ SGMapPropagation::visitOperation(Operation *op,
})
/// All other ops.
.Default([&](Operation *op) {
- for (const SGMapLattice *r : results) {
- for (SGMapLattice *operand : operands) {
+ for (const LayoutInfoLattice *r : results) {
+ for (LayoutInfoLattice *operand : operands) {
/// Propagate the layout of the result to the operand.
if (r->getValue().isAssigned())
meet(operand, *r);
}
}
});
/// Add a dependency from each result to program point after the operation.
----------------
fschlimb wrote:
Similarly, code comments should not be //, but //
https://github.com/llvm/llvm-project/pull/135271
More information about the Mlir-commits
mailing list