[Mlir-commits] [mlir] 60d2060 - [mlir][xegpu] DCE decl in TD (#121249)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Mon Dec 30 03:21:10 PST 2024
Author: Maksim Levental
Date: 2024-12-30T06:21:07-05:00
New Revision: 60d20603e43a53b1d495d199ea020c3a56a6866f
URL: https://github.com/llvm/llvm-project/commit/60d20603e43a53b1d495d199ea020c3a56a6866f
DIFF: https://github.com/llvm/llvm-project/commit/60d20603e43a53b1d495d199ea020c3a56a6866f.diff
LOG: [mlir][xegpu] DCE decl in TD (#121249)
Added:
Modified:
mlir/include/mlir/Dialect/XeGPU/IR/XeGPUAttrs.td
Removed:
################################################################################
diff --git a/mlir/include/mlir/Dialect/XeGPU/IR/XeGPUAttrs.td b/mlir/include/mlir/Dialect/XeGPU/IR/XeGPUAttrs.td
index 2aaa7fd4221ab1..4841f94de75f4a 100644
--- a/mlir/include/mlir/Dialect/XeGPU/IR/XeGPUAttrs.td
+++ b/mlir/include/mlir/Dialect/XeGPU/IR/XeGPUAttrs.td
@@ -164,11 +164,9 @@ def XeGPU_SGMapAttr : XeGPUAttr<"SGMap", "sg_map"> {
}];
let parameters = (ins
ArrayRefParameter<"uint32_t">:$wi_layout,
- ArrayRefParameter<"uint32_t">:$wi_data);
+ ArrayRefParameter<"uint32_t">:$wi_data
+ );
- let builders = [
- AttrBuilder<(ins)>
- ];
let hasCustomAssemblyFormat = 1;
let genVerifyDecl = 1;
More information about the Mlir-commits
mailing list