[Mlir-commits] [mlir] [mlir][xegpu] Add SIMT distribution support for GEMM transpose B case. (PR #155517)
Charitha Saumya
llvmlistbot at llvm.org
Fri Sep 12 15:15:23 PDT 2025
================
@@ -146,6 +149,15 @@ static bool hasPackedLayout(xegpu::LayoutAttr layout) {
return laneData.asArrayRef()[0] != 1;
}
+static bool hasTransposedLayout(xegpu::LayoutAttr layout) {
+ if (layout == xegpu::LayoutAttr())
+ return false;
+ DenseI32ArrayAttr laneLayout = layout.getLaneLayout();
+ if (!laneLayout || laneLayout.size() != 2)
----------------
charithaintc wrote:
fixed.
https://github.com/llvm/llvm-project/pull/155517
More information about the Mlir-commits
mailing list