Skip to content

Commit 7ac804c

Browse files
committed
save work
1 parent 2f3be2f commit 7ac804c

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

mlir/lib/Dialect/XeGPU/Transforms/XeGPUSubgroupDistribute.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ using namespace mlir;
3131
using namespace mlir::dataflow;
3232

3333
/// HW dependent constants.
34-
/// TODO: These constants should be queried from the uArch interface.
34+
/// TODO: These constants should be queried from the target information.
3535
constexpr unsigned subgroupSize = 16; // How many work items in a subgroup.
3636
/// If DPAS A or B operands have low precision element types they must be packed
3737
/// according to the following sizes.
@@ -342,8 +342,6 @@ SGMapPropagation::visitOperation(Operation *op,
342342
}
343343
});
344344
/// Add a dependency from each reult to program point after the operation.
345-
/// NOTE: not sure if this is required, but all other similar analysis do
346-
/// this.
347345
for (const SGMapLattice *r : results) {
348346
addDependency(const_cast<SGMapLattice *>(r), getProgramPointAfter(op));
349347
}

0 commit comments

Comments
 (0)