[Mlir-commits] [mlir] [MLIR][XeGPU][TransformOps] Add set_gpu_launch_threads op (PR #166865)
Rolf Morel
llvmlistbot at llvm.org
Fri Nov 7 07:24:48 PST 2025
================
@@ -78,4 +78,41 @@ def SetDescLayoutOp : Op<Transform_Dialect, "xegpu.set_desc_layout", [
}];
}
+def SetGPULaunchThreadsOp
+ : Op<Transform_Dialect, "xegpu.set_gpu_launch_threads", [
+ DeclareOpInterfaceMethods<MemoryEffectsOpInterface>,
+ TransformOpInterface
+ ]> {
+
+ let summary = "Set number of threads for a given gpu.launch operation";
+ let description = "Set number of threads for a given `gpu.launch` operation.";
+
+ let arguments = (ins TransformHandleTypeInterface : $target,
----------------
rolfmorel wrote:
nit: colon style
https://github.com/llvm/llvm-project/pull/166865
More information about the Mlir-commits
mailing list