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 c538d8a commit b45b2edCopy full SHA for b45b2ed
tilelang/language/builtin.py
@@ -352,6 +352,12 @@ def sync_grid():
352
return tir.call_intrin("handle", tir.op.Op.get("tl.sync_grid"))
353
354
355
+def loop_break():
356
+ """Break out of the innermost loop.
357
+ """
358
+ return tir.call_intrin("handle", tir.op.Op.get("tl.loop_break"))
359
+
360
361
def cp_async_barrier_noinc(barrier_id: Union[int, PrimExpr, tir.Call]):
362
"""Perform a ptx async copy barrier using cp.async.mbarrier.arrive.noinc.
363
"""
0 commit comments