We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee34b37 commit 04a4821Copy full SHA for 04a4821
python/examples/xegpu_matmul/schedule.py
@@ -370,6 +370,11 @@ def bundle_xegpu_to_binary(mod, dump_kernel: str = ""):
370
# This schedule corresponds to upstream MLIR XeVM lowering pipeline
371
# and is payload independent.
372
373
+ # TODO applying gpu-lower-to-xevm-pipeline pass affects performance
374
+ # mod = apply_registered_pass(
375
+ # mod, "gpu-lower-to-xevm-pipeline", options={"xegpu-op-level": "workgroup"}
376
+ # )
377
+
378
gpu_mod = match(mod, ops={"gpu.module"})
379
# xegpu distribution
380
gpu_func = match(gpu_mod, ops={"gpu.func"})
0 commit comments