[Mlir-commits] [mlir] [MLIR][XeGPU] Enhance XeGPU lane layout to support "wrap-around" distribution (PR #186958)
Igor Zamyatin
llvmlistbot at llvm.org
Thu Mar 19 14:45:58 PDT 2026
================
@@ -160,7 +160,7 @@ bool XeGPUDialect::isEvenlyDistributable(llvm::ArrayRef<int64_t> shape,
// check LaneLayout and LaneData
auto maybeLaneShape =
tryDistribute(instShape, attr.getEffectiveLaneLayoutAsInt(),
- attr.getEffectiveLaneDataAsInt(), false);
+ attr.getEffectiveLaneDataAsInt(), true);
----------------
Garra1980 wrote:
you can omit last argument as it is done above for maybeSgShape
https://github.com/llvm/llvm-project/pull/186958
More information about the Mlir-commits
mailing list