[Mlir-commits] [mlir] [MLIR][XeGPU] add xegpu.set_desc_layout transform op (PR #165615)

Tuomas Kärnä llvmlistbot at llvm.org
Tue Nov 4 09:52:41 PST 2025


================
@@ -0,0 +1,86 @@
+//===- XeGPUTransformOps.td - XeGPU transformation ops -----*- tablegen -*-===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef XEGPU_TRANSFORM_OPS
+#define XEGPU_TRANSFORM_OPS
+
+include "mlir/Dialect/Transform/IR/TransformAttrs.td"
+include "mlir/Dialect/Transform/IR/TransformDialect.td"
+include "mlir/Dialect/Transform/Interfaces/TransformInterfaces.td"
+include "mlir/Dialect/Transform/IR/TransformTypes.td"
+include "mlir/Interfaces/SideEffectInterfaces.td"
+include "mlir/IR/OpBase.td"
+
+def TransformAnyParamTypeOrAnyHandle : Type<
----------------
tkarna wrote:

Currently this is defined in [LinalgTransformOps.td](https://github.com/llvm/llvm-project/blob/032df4b/mlir/include/mlir/Dialect/Linalg/TransformOps/LinalgTransformOps.td#L24-L29). Maybe it should be moved to `include/mlir/Dialect/Transform/IR/TransformTypes.td`?

https://github.com/llvm/llvm-project/pull/165615


More information about the Mlir-commits mailing list