Unverified Commit 117f2b81 authored by Lei Wang's avatar Lei Wang Committed by GitHub
Browse files

[Typo] Remove debug print (#980)

parent ddfaac36
......@@ -156,11 +156,7 @@ def OptimizeForTarget(mod: IRModule, target: Target) -> IRModule:
if allow_fence_proxy(target=target):
# in hopper device, wgmma is an async proxy
# so we need to inject a fence proxy before it
print("Before injectFenceProxy")
print(mod)
mod = tilelang.transform.InjectFenceProxy()(mod)
print("After InjectFenceProxy")
print(mod)
mod = tilelang.transform.LowerOpaqueBlock()(mod)
mod = tir.transform.NarrowDataType(32)(mod)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment