[Mlir-commits] [mlir] [MLIR][XeGPU][TransformOps] Add convert_layout op (PR #167342)

Rolf Morel llvmlistbot at llvm.org
Tue Nov 11 03:02:22 PST 2025


================
@@ -41,6 +41,15 @@ def __init__(
         )
 
 
+def get_desc_op(
+    target: Value,
+    *,
+    loc=None,
+    ip=None,
+) -> GetDescOp:
+    return GetDescOp(target, loc=loc, ip=ip)
----------------
rolfmorel wrote:

I _think_ the other wrappers are okay, as I _think_ they don't return results. Haven't checked that though, e.g. against the .td file.

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


More information about the Mlir-commits mailing list